blob: ec2fad03683a9c6d97cd6f4051dcaaaea2e33988 [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 Gottesman01338a42013-04-20 23:36:57 +0000475 DEBUG(dbgs() << "Resetting sequence progress.\n");
Michael Gottesman89279f82013-04-05 18:10:41 +0000476 SetSeq(NewSeq);
Dan Gohman62079b42012-04-25 00:50:46 +0000477 Partial = false;
John McCalld935e9c2011-06-15 23:37:01 +0000478 RRI.clear();
479 }
480
481 void Merge(const PtrState &Other, bool TopDown);
482 };
483}
484
485void
486PtrState::Merge(const PtrState &Other, bool TopDown) {
487 Seq = MergeSeqs(Seq, Other.Seq, TopDown);
Dan Gohman62079b42012-04-25 00:50:46 +0000488 KnownPositiveRefCount = KnownPositiveRefCount && Other.KnownPositiveRefCount;
Michael Gottesman60f6b282013-03-29 05:13:07 +0000489
Dan Gohman1736c142011-10-17 18:48:25 +0000490 // If we're not in a sequence (anymore), drop all associated state.
John McCalld935e9c2011-06-15 23:37:01 +0000491 if (Seq == S_None) {
Dan Gohman62079b42012-04-25 00:50:46 +0000492 Partial = false;
John McCalld935e9c2011-06-15 23:37:01 +0000493 RRI.clear();
Dan Gohman62079b42012-04-25 00:50:46 +0000494 } else if (Partial || Other.Partial) {
Dan Gohman1736c142011-10-17 18:48:25 +0000495 // If we're doing a merge on a path that's previously seen a partial
496 // merge, conservatively drop the sequence, to avoid doing partial
497 // RR elimination. If the branch predicates for the two merge differ,
498 // mixing them is unsafe.
Dan Gohman62079b42012-04-25 00:50:46 +0000499 ClearSequenceProgress();
John McCalld935e9c2011-06-15 23:37:01 +0000500 } else {
501 // Conservatively merge the ReleaseMetadata information.
502 if (RRI.ReleaseMetadata != Other.RRI.ReleaseMetadata)
503 RRI.ReleaseMetadata = 0;
504
Dan Gohmanb3894012011-08-19 00:26:36 +0000505 RRI.KnownSafe = RRI.KnownSafe && Other.RRI.KnownSafe;
Dan Gohman41375a32012-05-08 23:39:44 +0000506 RRI.IsTailCallRelease = RRI.IsTailCallRelease &&
507 Other.RRI.IsTailCallRelease;
John McCalld935e9c2011-06-15 23:37:01 +0000508 RRI.Calls.insert(Other.RRI.Calls.begin(), Other.RRI.Calls.end());
Dan Gohman1736c142011-10-17 18:48:25 +0000509
510 // Merge the insert point sets. If there are any differences,
511 // that makes this a partial merge.
Dan Gohman41375a32012-05-08 23:39:44 +0000512 Partial = RRI.ReverseInsertPts.size() != Other.RRI.ReverseInsertPts.size();
Dan Gohman1736c142011-10-17 18:48:25 +0000513 for (SmallPtrSet<Instruction *, 2>::const_iterator
514 I = Other.RRI.ReverseInsertPts.begin(),
515 E = Other.RRI.ReverseInsertPts.end(); I != E; ++I)
Dan Gohman62079b42012-04-25 00:50:46 +0000516 Partial |= RRI.ReverseInsertPts.insert(*I);
John McCalld935e9c2011-06-15 23:37:01 +0000517 }
518}
519
520namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000521 /// \brief Per-BasicBlock state.
John McCalld935e9c2011-06-15 23:37:01 +0000522 class BBState {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000523 /// The number of unique control paths from the entry which can reach this
524 /// block.
John McCalld935e9c2011-06-15 23:37:01 +0000525 unsigned TopDownPathCount;
526
Michael Gottesman97e3df02013-01-14 00:35:14 +0000527 /// The number of unique control paths to exits from this block.
John McCalld935e9c2011-06-15 23:37:01 +0000528 unsigned BottomUpPathCount;
529
Michael Gottesman97e3df02013-01-14 00:35:14 +0000530 /// A type for PerPtrTopDown and PerPtrBottomUp.
John McCalld935e9c2011-06-15 23:37:01 +0000531 typedef MapVector<const Value *, PtrState> MapTy;
532
Michael Gottesman97e3df02013-01-14 00:35:14 +0000533 /// The top-down traversal uses this to record information known about a
534 /// pointer at the bottom of each block.
John McCalld935e9c2011-06-15 23:37:01 +0000535 MapTy PerPtrTopDown;
536
Michael Gottesman97e3df02013-01-14 00:35:14 +0000537 /// The bottom-up traversal uses this to record information known about a
538 /// pointer at the top of each block.
John McCalld935e9c2011-06-15 23:37:01 +0000539 MapTy PerPtrBottomUp;
540
Michael Gottesman97e3df02013-01-14 00:35:14 +0000541 /// Effective predecessors of the current block ignoring ignorable edges and
542 /// ignored backedges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000543 SmallVector<BasicBlock *, 2> Preds;
Michael Gottesman97e3df02013-01-14 00:35:14 +0000544 /// Effective successors of the current block ignoring ignorable edges and
545 /// ignored backedges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000546 SmallVector<BasicBlock *, 2> Succs;
547
John McCalld935e9c2011-06-15 23:37:01 +0000548 public:
549 BBState() : TopDownPathCount(0), BottomUpPathCount(0) {}
550
551 typedef MapTy::iterator ptr_iterator;
552 typedef MapTy::const_iterator ptr_const_iterator;
553
554 ptr_iterator top_down_ptr_begin() { return PerPtrTopDown.begin(); }
555 ptr_iterator top_down_ptr_end() { return PerPtrTopDown.end(); }
556 ptr_const_iterator top_down_ptr_begin() const {
557 return PerPtrTopDown.begin();
558 }
559 ptr_const_iterator top_down_ptr_end() const {
560 return PerPtrTopDown.end();
561 }
562
563 ptr_iterator bottom_up_ptr_begin() { return PerPtrBottomUp.begin(); }
564 ptr_iterator bottom_up_ptr_end() { return PerPtrBottomUp.end(); }
565 ptr_const_iterator bottom_up_ptr_begin() const {
566 return PerPtrBottomUp.begin();
567 }
568 ptr_const_iterator bottom_up_ptr_end() const {
569 return PerPtrBottomUp.end();
570 }
571
Michael Gottesman97e3df02013-01-14 00:35:14 +0000572 /// Mark this block as being an entry block, which has one path from the
573 /// entry by definition.
John McCalld935e9c2011-06-15 23:37:01 +0000574 void SetAsEntry() { TopDownPathCount = 1; }
575
Michael Gottesman97e3df02013-01-14 00:35:14 +0000576 /// Mark this block as being an exit block, which has one path to an exit by
577 /// definition.
John McCalld935e9c2011-06-15 23:37:01 +0000578 void SetAsExit() { BottomUpPathCount = 1; }
579
580 PtrState &getPtrTopDownState(const Value *Arg) {
581 return PerPtrTopDown[Arg];
582 }
583
584 PtrState &getPtrBottomUpState(const Value *Arg) {
585 return PerPtrBottomUp[Arg];
586 }
587
588 void clearBottomUpPointers() {
Evan Chenge4df6a22011-08-04 18:40:26 +0000589 PerPtrBottomUp.clear();
John McCalld935e9c2011-06-15 23:37:01 +0000590 }
591
592 void clearTopDownPointers() {
593 PerPtrTopDown.clear();
594 }
595
596 void InitFromPred(const BBState &Other);
597 void InitFromSucc(const BBState &Other);
598 void MergePred(const BBState &Other);
599 void MergeSucc(const BBState &Other);
600
Michael Gottesman97e3df02013-01-14 00:35:14 +0000601 /// Return the number of possible unique paths from an entry to an exit
602 /// which pass through this block. This is only valid after both the
603 /// top-down and bottom-up traversals are complete.
John McCalld935e9c2011-06-15 23:37:01 +0000604 unsigned GetAllPathCount() const {
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000605 assert(TopDownPathCount != 0);
606 assert(BottomUpPathCount != 0);
John McCalld935e9c2011-06-15 23:37:01 +0000607 return TopDownPathCount * BottomUpPathCount;
608 }
Dan Gohman12130272011-08-12 00:26:31 +0000609
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000610 // Specialized CFG utilities.
Dan Gohmandae33492012-04-27 18:56:31 +0000611 typedef SmallVectorImpl<BasicBlock *>::const_iterator edge_iterator;
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000612 edge_iterator pred_begin() { return Preds.begin(); }
613 edge_iterator pred_end() { return Preds.end(); }
614 edge_iterator succ_begin() { return Succs.begin(); }
615 edge_iterator succ_end() { return Succs.end(); }
616
617 void addSucc(BasicBlock *Succ) { Succs.push_back(Succ); }
618 void addPred(BasicBlock *Pred) { Preds.push_back(Pred); }
619
620 bool isExit() const { return Succs.empty(); }
John McCalld935e9c2011-06-15 23:37:01 +0000621 };
622}
623
624void BBState::InitFromPred(const BBState &Other) {
625 PerPtrTopDown = Other.PerPtrTopDown;
626 TopDownPathCount = Other.TopDownPathCount;
627}
628
629void BBState::InitFromSucc(const BBState &Other) {
630 PerPtrBottomUp = Other.PerPtrBottomUp;
631 BottomUpPathCount = Other.BottomUpPathCount;
632}
633
Michael Gottesman97e3df02013-01-14 00:35:14 +0000634/// The top-down traversal uses this to merge information about predecessors to
635/// form the initial state for a new block.
John McCalld935e9c2011-06-15 23:37:01 +0000636void BBState::MergePred(const BBState &Other) {
637 // Other.TopDownPathCount can be 0, in which case it is either dead or a
638 // loop backedge. Loop backedges are special.
639 TopDownPathCount += Other.TopDownPathCount;
640
Michael Gottesman4385edf2013-01-14 01:47:53 +0000641 // Check for overflow. If we have overflow, fall back to conservative
642 // behavior.
Dan Gohman7c84dad2012-09-12 20:45:17 +0000643 if (TopDownPathCount < Other.TopDownPathCount) {
644 clearTopDownPointers();
645 return;
646 }
647
John McCalld935e9c2011-06-15 23:37:01 +0000648 // For each entry in the other set, if our set has an entry with the same key,
649 // merge the entries. Otherwise, copy the entry and merge it with an empty
650 // entry.
651 for (ptr_const_iterator MI = Other.top_down_ptr_begin(),
652 ME = Other.top_down_ptr_end(); MI != ME; ++MI) {
653 std::pair<ptr_iterator, bool> Pair = PerPtrTopDown.insert(*MI);
654 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
655 /*TopDown=*/true);
656 }
657
Dan Gohman7e315fc32011-08-11 21:06:32 +0000658 // For each entry in our set, if the other set doesn't have an entry with the
John McCalld935e9c2011-06-15 23:37:01 +0000659 // same key, force it to merge with an empty entry.
660 for (ptr_iterator MI = top_down_ptr_begin(),
661 ME = top_down_ptr_end(); MI != ME; ++MI)
662 if (Other.PerPtrTopDown.find(MI->first) == Other.PerPtrTopDown.end())
663 MI->second.Merge(PtrState(), /*TopDown=*/true);
664}
665
Michael Gottesman97e3df02013-01-14 00:35:14 +0000666/// The bottom-up traversal uses this to merge information about successors to
667/// form the initial state for a new block.
John McCalld935e9c2011-06-15 23:37:01 +0000668void BBState::MergeSucc(const BBState &Other) {
669 // Other.BottomUpPathCount can be 0, in which case it is either dead or a
670 // loop backedge. Loop backedges are special.
671 BottomUpPathCount += Other.BottomUpPathCount;
672
Michael Gottesman4385edf2013-01-14 01:47:53 +0000673 // Check for overflow. If we have overflow, fall back to conservative
674 // behavior.
Dan Gohman7c84dad2012-09-12 20:45:17 +0000675 if (BottomUpPathCount < Other.BottomUpPathCount) {
676 clearBottomUpPointers();
677 return;
678 }
679
John McCalld935e9c2011-06-15 23:37:01 +0000680 // For each entry in the other set, if our set has an entry with the
681 // same key, merge the entries. Otherwise, copy the entry and merge
682 // it with an empty entry.
683 for (ptr_const_iterator MI = Other.bottom_up_ptr_begin(),
684 ME = Other.bottom_up_ptr_end(); MI != ME; ++MI) {
685 std::pair<ptr_iterator, bool> Pair = PerPtrBottomUp.insert(*MI);
686 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
687 /*TopDown=*/false);
688 }
689
Dan Gohman7e315fc32011-08-11 21:06:32 +0000690 // For each entry in our set, if the other set doesn't have an entry
John McCalld935e9c2011-06-15 23:37:01 +0000691 // with the same key, force it to merge with an empty entry.
692 for (ptr_iterator MI = bottom_up_ptr_begin(),
693 ME = bottom_up_ptr_end(); MI != ME; ++MI)
694 if (Other.PerPtrBottomUp.find(MI->first) == Other.PerPtrBottomUp.end())
695 MI->second.Merge(PtrState(), /*TopDown=*/false);
696}
697
Michael Gottesman81b1d432013-03-26 00:42:04 +0000698// Only enable ARC Annotations if we are building a debug version of
699// libObjCARCOpts.
700#ifndef NDEBUG
701#define ARC_ANNOTATIONS
702#endif
703
704// Define some macros along the lines of DEBUG and some helper functions to make
705// it cleaner to create annotations in the source code and to no-op when not
706// building in debug mode.
707#ifdef ARC_ANNOTATIONS
708
709#include "llvm/Support/CommandLine.h"
710
711/// Enable/disable ARC sequence annotations.
712static cl::opt<bool>
Michael Gottesman6806b512013-04-17 20:48:03 +0000713EnableARCAnnotations("enable-objc-arc-annotations", cl::init(false),
714 cl::desc("Enable emission of arc data flow analysis "
715 "annotations"));
Michael Gottesmanffef24f2013-04-17 20:48:01 +0000716static cl::opt<bool>
Michael Gottesmanadb921a2013-04-17 21:03:53 +0000717DisableCheckForCFGHazards("disable-objc-arc-checkforcfghazards", cl::init(false),
718 cl::desc("Disable check for cfg hazards when "
719 "annotating"));
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000720static cl::opt<std::string>
721ARCAnnotationTargetIdentifier("objc-arc-annotation-target-identifier",
722 cl::init(""),
723 cl::desc("filter out all data flow annotations "
724 "but those that apply to the given "
725 "target llvm identifier."));
Michael Gottesman81b1d432013-03-26 00:42:04 +0000726
727/// This function appends a unique ARCAnnotationProvenanceSourceMDKind id to an
728/// instruction so that we can track backwards when post processing via the llvm
729/// arc annotation processor tool. If the function is an
730static MDString *AppendMDNodeToSourcePtr(unsigned NodeId,
731 Value *Ptr) {
732 MDString *Hash = 0;
733
734 // If pointer is a result of an instruction and it does not have a source
735 // MDNode it, attach a new MDNode onto it. If pointer is a result of
736 // an instruction and does have a source MDNode attached to it, return a
737 // reference to said Node. Otherwise just return 0.
738 if (Instruction *Inst = dyn_cast<Instruction>(Ptr)) {
739 MDNode *Node;
740 if (!(Node = Inst->getMetadata(NodeId))) {
741 // We do not have any node. Generate and attatch the hash MDString to the
742 // instruction.
743
744 // We just use an MDString to ensure that this metadata gets written out
745 // of line at the module level and to provide a very simple format
746 // encoding the information herein. Both of these makes it simpler to
747 // parse the annotations by a simple external program.
748 std::string Str;
749 raw_string_ostream os(Str);
750 os << "(" << Inst->getParent()->getParent()->getName() << ",%"
751 << Inst->getName() << ")";
752
753 Hash = MDString::get(Inst->getContext(), os.str());
754 Inst->setMetadata(NodeId, MDNode::get(Inst->getContext(),Hash));
755 } else {
756 // We have a node. Grab its hash and return it.
757 assert(Node->getNumOperands() == 1 &&
758 "An ARCAnnotationProvenanceSourceMDKind can only have 1 operand.");
759 Hash = cast<MDString>(Node->getOperand(0));
760 }
761 } else if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
762 std::string str;
763 raw_string_ostream os(str);
764 os << "(" << Arg->getParent()->getName() << ",%" << Arg->getName()
765 << ")";
766 Hash = MDString::get(Arg->getContext(), os.str());
767 }
768
769 return Hash;
770}
771
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000772static std::string SequenceToString(Sequence A) {
773 std::string str;
774 raw_string_ostream os(str);
775 os << A;
776 return os.str();
777}
778
Michael Gottesman81b1d432013-03-26 00:42:04 +0000779/// Helper function to change a Sequence into a String object using our overload
780/// for raw_ostream so we only have printing code in one location.
781static MDString *SequenceToMDString(LLVMContext &Context,
782 Sequence A) {
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000783 return MDString::get(Context, SequenceToString(A));
Michael Gottesman81b1d432013-03-26 00:42:04 +0000784}
785
786/// A simple function to generate a MDNode which describes the change in state
787/// for Value *Ptr caused by Instruction *Inst.
788static void AppendMDNodeToInstForPtr(unsigned NodeId,
789 Instruction *Inst,
790 Value *Ptr,
791 MDString *PtrSourceMDNodeID,
792 Sequence OldSeq,
793 Sequence NewSeq) {
794 MDNode *Node = 0;
795 Value *tmp[3] = {PtrSourceMDNodeID,
796 SequenceToMDString(Inst->getContext(),
797 OldSeq),
798 SequenceToMDString(Inst->getContext(),
799 NewSeq)};
800 Node = MDNode::get(Inst->getContext(),
801 ArrayRef<Value*>(tmp, 3));
802
803 Inst->setMetadata(NodeId, Node);
804}
805
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000806/// Add to the beginning of the basic block llvm.ptr.annotations which show the
807/// state of a pointer at the entrance to a basic block.
808static void GenerateARCBBEntranceAnnotation(const char *Name, BasicBlock *BB,
809 Value *Ptr, Sequence Seq) {
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000810 // If we have a target identifier, make sure that we match it before
811 // continuing.
812 if(!ARCAnnotationTargetIdentifier.empty() &&
813 !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
814 return;
Michael Gottesman9e518132013-04-18 04:34:11 +0000815
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000816 Module *M = BB->getParent()->getParent();
817 LLVMContext &C = M->getContext();
818 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
819 Type *I8XX = PointerType::getUnqual(I8X);
820 Type *Params[] = {I8XX, I8XX};
821 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
822 ArrayRef<Type*>(Params, 2),
823 /*isVarArg=*/false);
824 Constant *Callee = M->getOrInsertFunction(Name, FTy);
Michael Gottesman60f6b282013-03-29 05:13:07 +0000825
826 IRBuilder<> Builder(BB, BB->getFirstInsertionPt());
827
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000828 Value *PtrName;
829 StringRef Tmp = Ptr->getName();
830 if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
831 Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
832 Tmp + "_STR");
833 PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
Michael Gottesman60f6b282013-03-29 05:13:07 +0000834 cast<Constant>(ActualPtrName), Tmp);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000835 }
836
837 Value *S;
838 std::string SeqStr = SequenceToString(Seq);
839 if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
840 Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
841 SeqStr + "_STR");
842 S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
843 cast<Constant>(ActualPtrName), SeqStr);
844 }
845
846 Builder.CreateCall2(Callee, PtrName, S);
847}
848
849/// Add to the end of the basic block llvm.ptr.annotations which show the state
850/// of the pointer at the bottom of the basic block.
851static void GenerateARCBBTerminatorAnnotation(const char *Name, BasicBlock *BB,
852 Value *Ptr, Sequence Seq) {
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000853 // If we have a target identifier, make sure that we match it before emitting
854 // an annotation.
855 if(!ARCAnnotationTargetIdentifier.empty() &&
856 !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
857 return;
Michael Gottesman9e518132013-04-18 04:34:11 +0000858
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000859 Module *M = BB->getParent()->getParent();
860 LLVMContext &C = M->getContext();
861 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
862 Type *I8XX = PointerType::getUnqual(I8X);
863 Type *Params[] = {I8XX, I8XX};
864 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
865 ArrayRef<Type*>(Params, 2),
866 /*isVarArg=*/false);
867 Constant *Callee = M->getOrInsertFunction(Name, FTy);
Michael Gottesman60f6b282013-03-29 05:13:07 +0000868
869 IRBuilder<> Builder(BB, llvm::prior(BB->end()));
870
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000871 Value *PtrName;
872 StringRef Tmp = Ptr->getName();
873 if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
874 Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
875 Tmp + "_STR");
876 PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
Michael Gottesman60f6b282013-03-29 05:13:07 +0000877 cast<Constant>(ActualPtrName), Tmp);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000878 }
879
880 Value *S;
881 std::string SeqStr = SequenceToString(Seq);
882 if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
883 Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
884 SeqStr + "_STR");
885 S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
886 cast<Constant>(ActualPtrName), SeqStr);
887 }
Michael Gottesman60f6b282013-03-29 05:13:07 +0000888 Builder.CreateCall2(Callee, PtrName, S);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000889}
890
Michael Gottesman81b1d432013-03-26 00:42:04 +0000891/// Adds a source annotation to pointer and a state change annotation to Inst
892/// referencing the source annotation and the old/new state of pointer.
893static void GenerateARCAnnotation(unsigned InstMDId,
894 unsigned PtrMDId,
895 Instruction *Inst,
896 Value *Ptr,
897 Sequence OldSeq,
898 Sequence NewSeq) {
899 if (EnableARCAnnotations) {
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000900 // If we have a target identifier, make sure that we match it before
901 // emitting an annotation.
902 if(!ARCAnnotationTargetIdentifier.empty() &&
903 !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
904 return;
Michael Gottesman9e518132013-04-18 04:34:11 +0000905
Michael Gottesman81b1d432013-03-26 00:42:04 +0000906 // First generate the source annotation on our pointer. This will return an
907 // MDString* if Ptr actually comes from an instruction implying we can put
908 // in a source annotation. If AppendMDNodeToSourcePtr returns 0 (i.e. NULL),
909 // then we know that our pointer is from an Argument so we put a reference
910 // to the argument number.
911 //
912 // The point of this is to make it easy for the
913 // llvm-arc-annotation-processor tool to cross reference where the source
914 // pointer is in the LLVM IR since the LLVM IR parser does not submit such
915 // information via debug info for backends to use (since why would anyone
916 // need such a thing from LLVM IR besides in non standard cases
917 // [i.e. this]).
918 MDString *SourcePtrMDNode =
919 AppendMDNodeToSourcePtr(PtrMDId, Ptr);
920 AppendMDNodeToInstForPtr(InstMDId, Inst, Ptr, SourcePtrMDNode, OldSeq,
921 NewSeq);
922 }
923}
924
925// The actual interface for accessing the above functionality is defined via
926// some simple macros which are defined below. We do this so that the user does
927// not need to pass in what metadata id is needed resulting in cleaner code and
928// additionally since it provides an easy way to conditionally no-op all
929// annotation support in a non-debug build.
930
931/// Use this macro to annotate a sequence state change when processing
932/// instructions bottom up,
933#define ANNOTATE_BOTTOMUP(inst, ptr, old, new) \
934 GenerateARCAnnotation(ARCAnnotationBottomUpMDKind, \
935 ARCAnnotationProvenanceSourceMDKind, (inst), \
936 const_cast<Value*>(ptr), (old), (new))
937/// Use this macro to annotate a sequence state change when processing
938/// instructions top down.
939#define ANNOTATE_TOPDOWN(inst, ptr, old, new) \
940 GenerateARCAnnotation(ARCAnnotationTopDownMDKind, \
941 ARCAnnotationProvenanceSourceMDKind, (inst), \
942 const_cast<Value*>(ptr), (old), (new))
943
Michael Gottesman43e7e002013-04-03 22:41:59 +0000944#define ANNOTATE_BB(_states, _bb, _name, _type, _direction) \
945 do { \
Michael Gottesman89279f82013-04-05 18:10:41 +0000946 if (EnableARCAnnotations) { \
947 for(BBState::ptr_const_iterator I = (_states)._direction##_ptr_begin(), \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000948 E = (_states)._direction##_ptr_end(); I != E; ++I) { \
Michael Gottesman89279f82013-04-05 18:10:41 +0000949 Value *Ptr = const_cast<Value*>(I->first); \
950 Sequence Seq = I->second.GetSeq(); \
951 GenerateARCBB ## _type ## Annotation(_name, (_bb), Ptr, Seq); \
952 } \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000953 } \
Michael Gottesman89279f82013-04-05 18:10:41 +0000954 } while (0)
Michael Gottesman43e7e002013-04-03 22:41:59 +0000955
Michael Gottesman89279f82013-04-05 18:10:41 +0000956#define ANNOTATE_BOTTOMUP_BBSTART(_states, _basicblock) \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000957 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbstart", \
958 Entrance, bottom_up)
Michael Gottesman89279f82013-04-05 18:10:41 +0000959#define ANNOTATE_BOTTOMUP_BBEND(_states, _basicblock) \
960 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbend", \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000961 Terminator, bottom_up)
Michael Gottesman89279f82013-04-05 18:10:41 +0000962#define ANNOTATE_TOPDOWN_BBSTART(_states, _basicblock) \
963 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbstart", \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000964 Entrance, top_down)
Michael Gottesman89279f82013-04-05 18:10:41 +0000965#define ANNOTATE_TOPDOWN_BBEND(_states, _basicblock) \
966 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbend", \
Michael Gottesman43e7e002013-04-03 22:41:59 +0000967 Terminator, top_down)
968
Michael Gottesman81b1d432013-03-26 00:42:04 +0000969#else // !ARC_ANNOTATION
970// If annotations are off, noop.
971#define ANNOTATE_BOTTOMUP(inst, ptr, old, new)
972#define ANNOTATE_TOPDOWN(inst, ptr, old, new)
Michael Gottesman43e7e002013-04-03 22:41:59 +0000973#define ANNOTATE_BOTTOMUP_BBSTART(states, basicblock)
974#define ANNOTATE_BOTTOMUP_BBEND(states, basicblock)
975#define ANNOTATE_TOPDOWN_BBSTART(states, basicblock)
976#define ANNOTATE_TOPDOWN_BBEND(states, basicblock)
Michael Gottesman81b1d432013-03-26 00:42:04 +0000977#endif // !ARC_ANNOTATION
978
John McCalld935e9c2011-06-15 23:37:01 +0000979namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000980 /// \brief The main ARC optimization pass.
John McCalld935e9c2011-06-15 23:37:01 +0000981 class ObjCARCOpt : public FunctionPass {
982 bool Changed;
983 ProvenanceAnalysis PA;
984
Michael Gottesman97e3df02013-01-14 00:35:14 +0000985 /// A flag indicating whether this optimization pass should run.
Dan Gohmanceaac7c2011-06-20 23:20:43 +0000986 bool Run;
987
Michael Gottesman97e3df02013-01-14 00:35:14 +0000988 /// Declarations for ObjC runtime functions, for use in creating calls to
989 /// them. These are initialized lazily to avoid cluttering up the Module
990 /// with unused declarations.
John McCalld935e9c2011-06-15 23:37:01 +0000991
Michael Gottesman97e3df02013-01-14 00:35:14 +0000992 /// Declaration for ObjC runtime function
993 /// objc_retainAutoreleasedReturnValue.
994 Constant *RetainRVCallee;
995 /// Declaration for ObjC runtime function objc_autoreleaseReturnValue.
996 Constant *AutoreleaseRVCallee;
997 /// Declaration for ObjC runtime function objc_release.
998 Constant *ReleaseCallee;
999 /// Declaration for ObjC runtime function objc_retain.
1000 Constant *RetainCallee;
1001 /// Declaration for ObjC runtime function objc_retainBlock.
1002 Constant *RetainBlockCallee;
1003 /// Declaration for ObjC runtime function objc_autorelease.
1004 Constant *AutoreleaseCallee;
1005
1006 /// Flags which determine whether each of the interesting runtine functions
1007 /// is in fact used in the current function.
John McCalld935e9c2011-06-15 23:37:01 +00001008 unsigned UsedInThisFunction;
1009
Michael Gottesman97e3df02013-01-14 00:35:14 +00001010 /// The Metadata Kind for clang.imprecise_release metadata.
John McCalld935e9c2011-06-15 23:37:01 +00001011 unsigned ImpreciseReleaseMDKind;
1012
Michael Gottesman97e3df02013-01-14 00:35:14 +00001013 /// The Metadata Kind for clang.arc.copy_on_escape metadata.
Dan Gohmana7107f92011-10-17 22:53:25 +00001014 unsigned CopyOnEscapeMDKind;
1015
Michael Gottesman97e3df02013-01-14 00:35:14 +00001016 /// The Metadata Kind for clang.arc.no_objc_arc_exceptions metadata.
Dan Gohman0155f302012-02-17 18:59:53 +00001017 unsigned NoObjCARCExceptionsMDKind;
1018
Michael Gottesman81b1d432013-03-26 00:42:04 +00001019#ifdef ARC_ANNOTATIONS
1020 /// The Metadata Kind for llvm.arc.annotation.bottomup metadata.
1021 unsigned ARCAnnotationBottomUpMDKind;
1022 /// The Metadata Kind for llvm.arc.annotation.topdown metadata.
1023 unsigned ARCAnnotationTopDownMDKind;
1024 /// The Metadata Kind for llvm.arc.annotation.provenancesource metadata.
1025 unsigned ARCAnnotationProvenanceSourceMDKind;
1026#endif // ARC_ANNOATIONS
1027
John McCalld935e9c2011-06-15 23:37:01 +00001028 Constant *getRetainRVCallee(Module *M);
1029 Constant *getAutoreleaseRVCallee(Module *M);
1030 Constant *getReleaseCallee(Module *M);
1031 Constant *getRetainCallee(Module *M);
Dan Gohman6320f522011-07-22 22:29:21 +00001032 Constant *getRetainBlockCallee(Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001033 Constant *getAutoreleaseCallee(Module *M);
1034
Dan Gohman728db492012-01-13 00:39:07 +00001035 bool IsRetainBlockOptimizable(const Instruction *Inst);
1036
John McCalld935e9c2011-06-15 23:37:01 +00001037 void OptimizeRetainCall(Function &F, Instruction *Retain);
1038 bool OptimizeRetainRVCall(Function &F, Instruction *RetainRV);
Michael Gottesman556ff612013-01-12 01:25:19 +00001039 void OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1040 InstructionClass &Class);
Michael Gottesman158fdf62013-03-28 20:11:19 +00001041 bool OptimizeRetainBlockCall(Function &F, Instruction *RetainBlock,
1042 InstructionClass &Class);
John McCalld935e9c2011-06-15 23:37:01 +00001043 void OptimizeIndividualCalls(Function &F);
1044
1045 void CheckForCFGHazards(const BasicBlock *BB,
1046 DenseMap<const BasicBlock *, BBState> &BBStates,
1047 BBState &MyStates) const;
Dan Gohman817a7c62012-03-22 18:24:56 +00001048 bool VisitInstructionBottomUp(Instruction *Inst,
Dan Gohman5c70fad2012-03-23 17:47:54 +00001049 BasicBlock *BB,
Dan Gohman817a7c62012-03-22 18:24:56 +00001050 MapVector<Value *, RRInfo> &Retains,
1051 BBState &MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00001052 bool VisitBottomUp(BasicBlock *BB,
1053 DenseMap<const BasicBlock *, BBState> &BBStates,
1054 MapVector<Value *, RRInfo> &Retains);
Dan Gohman817a7c62012-03-22 18:24:56 +00001055 bool VisitInstructionTopDown(Instruction *Inst,
1056 DenseMap<Value *, RRInfo> &Releases,
1057 BBState &MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00001058 bool VisitTopDown(BasicBlock *BB,
1059 DenseMap<const BasicBlock *, BBState> &BBStates,
1060 DenseMap<Value *, RRInfo> &Releases);
1061 bool Visit(Function &F,
1062 DenseMap<const BasicBlock *, BBState> &BBStates,
1063 MapVector<Value *, RRInfo> &Retains,
1064 DenseMap<Value *, RRInfo> &Releases);
1065
1066 void MoveCalls(Value *Arg, RRInfo &RetainsToMove, RRInfo &ReleasesToMove,
1067 MapVector<Value *, RRInfo> &Retains,
1068 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman6320f522011-07-22 22:29:21 +00001069 SmallVectorImpl<Instruction *> &DeadInsts,
1070 Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001071
Michael Gottesman9de6f962013-01-22 21:49:00 +00001072 bool ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState> &BBStates,
1073 MapVector<Value *, RRInfo> &Retains,
1074 DenseMap<Value *, RRInfo> &Releases,
1075 Module *M,
1076 SmallVector<Instruction *, 4> &NewRetains,
1077 SmallVector<Instruction *, 4> &NewReleases,
1078 SmallVector<Instruction *, 8> &DeadInsts,
1079 RRInfo &RetainsToMove,
1080 RRInfo &ReleasesToMove,
1081 Value *Arg,
1082 bool KnownSafe,
1083 bool &AnyPairsCompletelyEliminated);
1084
John McCalld935e9c2011-06-15 23:37:01 +00001085 bool PerformCodePlacement(DenseMap<const BasicBlock *, BBState> &BBStates,
1086 MapVector<Value *, RRInfo> &Retains,
Dan Gohman6320f522011-07-22 22:29:21 +00001087 DenseMap<Value *, RRInfo> &Releases,
1088 Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001089
1090 void OptimizeWeakCalls(Function &F);
1091
1092 bool OptimizeSequences(Function &F);
1093
1094 void OptimizeReturns(Function &F);
1095
1096 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
1097 virtual bool doInitialization(Module &M);
1098 virtual bool runOnFunction(Function &F);
1099 virtual void releaseMemory();
1100
1101 public:
1102 static char ID;
1103 ObjCARCOpt() : FunctionPass(ID) {
1104 initializeObjCARCOptPass(*PassRegistry::getPassRegistry());
1105 }
1106 };
1107}
1108
1109char ObjCARCOpt::ID = 0;
1110INITIALIZE_PASS_BEGIN(ObjCARCOpt,
1111 "objc-arc", "ObjC ARC optimization", false, false)
1112INITIALIZE_PASS_DEPENDENCY(ObjCARCAliasAnalysis)
1113INITIALIZE_PASS_END(ObjCARCOpt,
1114 "objc-arc", "ObjC ARC optimization", false, false)
1115
1116Pass *llvm::createObjCARCOptPass() {
1117 return new ObjCARCOpt();
1118}
1119
1120void ObjCARCOpt::getAnalysisUsage(AnalysisUsage &AU) const {
1121 AU.addRequired<ObjCARCAliasAnalysis>();
1122 AU.addRequired<AliasAnalysis>();
1123 // ARC optimization doesn't currently split critical edges.
1124 AU.setPreservesCFG();
1125}
1126
Dan Gohman728db492012-01-13 00:39:07 +00001127bool ObjCARCOpt::IsRetainBlockOptimizable(const Instruction *Inst) {
1128 // Without the magic metadata tag, we have to assume this might be an
1129 // objc_retainBlock call inserted to convert a block pointer to an id,
1130 // in which case it really is needed.
1131 if (!Inst->getMetadata(CopyOnEscapeMDKind))
1132 return false;
1133
1134 // If the pointer "escapes" (not including being used in a call),
1135 // the copy may be needed.
Michael Gottesman774d2c02013-01-29 21:00:52 +00001136 if (DoesRetainableObjPtrEscape(Inst))
Dan Gohman728db492012-01-13 00:39:07 +00001137 return false;
1138
1139 // Otherwise, it's not needed.
1140 return true;
1141}
1142
John McCalld935e9c2011-06-15 23:37:01 +00001143Constant *ObjCARCOpt::getRetainRVCallee(Module *M) {
1144 if (!RetainRVCallee) {
1145 LLVMContext &C = M->getContext();
Jay Foadb804a2b2011-07-12 14:06:48 +00001146 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman41375a32012-05-08 23:39:44 +00001147 Type *Params[] = { I8X };
1148 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001149 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001150 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1151 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001152 RetainRVCallee =
1153 M->getOrInsertFunction("objc_retainAutoreleasedReturnValue", FTy,
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001154 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001155 }
1156 return RetainRVCallee;
1157}
1158
1159Constant *ObjCARCOpt::getAutoreleaseRVCallee(Module *M) {
1160 if (!AutoreleaseRVCallee) {
1161 LLVMContext &C = M->getContext();
Jay Foadb804a2b2011-07-12 14:06:48 +00001162 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman41375a32012-05-08 23:39:44 +00001163 Type *Params[] = { I8X };
1164 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001165 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001166 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1167 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001168 AutoreleaseRVCallee =
1169 M->getOrInsertFunction("objc_autoreleaseReturnValue", FTy,
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001170 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001171 }
1172 return AutoreleaseRVCallee;
1173}
1174
1175Constant *ObjCARCOpt::getReleaseCallee(Module *M) {
1176 if (!ReleaseCallee) {
1177 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001178 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001179 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001180 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1181 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001182 ReleaseCallee =
1183 M->getOrInsertFunction(
1184 "objc_release",
1185 FunctionType::get(Type::getVoidTy(C), Params, /*isVarArg=*/false),
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001186 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001187 }
1188 return ReleaseCallee;
1189}
1190
1191Constant *ObjCARCOpt::getRetainCallee(Module *M) {
1192 if (!RetainCallee) {
1193 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001194 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001195 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001196 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1197 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001198 RetainCallee =
1199 M->getOrInsertFunction(
1200 "objc_retain",
1201 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001202 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001203 }
1204 return RetainCallee;
1205}
1206
Dan Gohman6320f522011-07-22 22:29:21 +00001207Constant *ObjCARCOpt::getRetainBlockCallee(Module *M) {
1208 if (!RetainBlockCallee) {
1209 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001210 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Dan Gohmanfca43c22011-09-14 18:33:34 +00001211 // objc_retainBlock is not nounwind because it calls user copy constructors
1212 // which could theoretically throw.
Dan Gohman6320f522011-07-22 22:29:21 +00001213 RetainBlockCallee =
1214 M->getOrInsertFunction(
1215 "objc_retainBlock",
1216 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendlinge94d8432012-12-07 23:16:57 +00001217 AttributeSet());
Dan Gohman6320f522011-07-22 22:29:21 +00001218 }
1219 return RetainBlockCallee;
1220}
1221
John McCalld935e9c2011-06-15 23:37:01 +00001222Constant *ObjCARCOpt::getAutoreleaseCallee(Module *M) {
1223 if (!AutoreleaseCallee) {
1224 LLVMContext &C = M->getContext();
Dan Gohman41375a32012-05-08 23:39:44 +00001225 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001226 AttributeSet Attribute =
Bill Wendling09175b32013-01-22 21:15:51 +00001227 AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1228 Attribute::NoUnwind);
John McCalld935e9c2011-06-15 23:37:01 +00001229 AutoreleaseCallee =
1230 M->getOrInsertFunction(
1231 "objc_autorelease",
1232 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001233 Attribute);
John McCalld935e9c2011-06-15 23:37:01 +00001234 }
1235 return AutoreleaseCallee;
1236}
1237
Michael Gottesman97e3df02013-01-14 00:35:14 +00001238/// Turn objc_retain into objc_retainAutoreleasedReturnValue if the operand is a
1239/// return value.
John McCalld935e9c2011-06-15 23:37:01 +00001240void
1241ObjCARCOpt::OptimizeRetainCall(Function &F, Instruction *Retain) {
Dan Gohmandae33492012-04-27 18:56:31 +00001242 ImmutableCallSite CS(GetObjCArg(Retain));
1243 const Instruction *Call = CS.getInstruction();
John McCalld935e9c2011-06-15 23:37:01 +00001244 if (!Call) return;
1245 if (Call->getParent() != Retain->getParent()) return;
1246
1247 // Check that the call is next to the retain.
Dan Gohmandae33492012-04-27 18:56:31 +00001248 BasicBlock::const_iterator I = Call;
John McCalld935e9c2011-06-15 23:37:01 +00001249 ++I;
Michael Gottesman65c24812013-03-25 09:27:43 +00001250 while (IsNoopInstruction(I)) ++I;
John McCalld935e9c2011-06-15 23:37:01 +00001251 if (&*I != Retain)
1252 return;
1253
1254 // Turn it to an objc_retainAutoreleasedReturnValue..
1255 Changed = true;
1256 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001257
Michael Gottesman89279f82013-04-05 18:10:41 +00001258 DEBUG(dbgs() << "Transforming objc_retain => "
1259 "objc_retainAutoreleasedReturnValue since the operand is a "
1260 "return value.\nOld: "<< *Retain << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001261
John McCalld935e9c2011-06-15 23:37:01 +00001262 cast<CallInst>(Retain)->setCalledFunction(getRetainRVCallee(F.getParent()));
Michael Gottesman1e00ac62013-01-04 21:30:38 +00001263
Michael Gottesman89279f82013-04-05 18:10:41 +00001264 DEBUG(dbgs() << "New: " << *Retain << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001265}
1266
Michael Gottesman97e3df02013-01-14 00:35:14 +00001267/// Turn objc_retainAutoreleasedReturnValue into objc_retain if the operand is
1268/// not a return value. Or, if it can be paired with an
1269/// objc_autoreleaseReturnValue, delete the pair and return true.
John McCalld935e9c2011-06-15 23:37:01 +00001270bool
1271ObjCARCOpt::OptimizeRetainRVCall(Function &F, Instruction *RetainRV) {
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001272 // Check for the argument being from an immediately preceding call or invoke.
Dan Gohmandae33492012-04-27 18:56:31 +00001273 const Value *Arg = GetObjCArg(RetainRV);
1274 ImmutableCallSite CS(Arg);
1275 if (const Instruction *Call = CS.getInstruction()) {
John McCalld935e9c2011-06-15 23:37:01 +00001276 if (Call->getParent() == RetainRV->getParent()) {
Dan Gohmandae33492012-04-27 18:56:31 +00001277 BasicBlock::const_iterator I = Call;
John McCalld935e9c2011-06-15 23:37:01 +00001278 ++I;
Michael Gottesman65c24812013-03-25 09:27:43 +00001279 while (IsNoopInstruction(I)) ++I;
John McCalld935e9c2011-06-15 23:37:01 +00001280 if (&*I == RetainRV)
1281 return false;
Dan Gohmandae33492012-04-27 18:56:31 +00001282 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001283 BasicBlock *RetainRVParent = RetainRV->getParent();
1284 if (II->getNormalDest() == RetainRVParent) {
Dan Gohmandae33492012-04-27 18:56:31 +00001285 BasicBlock::const_iterator I = RetainRVParent->begin();
Michael Gottesman65c24812013-03-25 09:27:43 +00001286 while (IsNoopInstruction(I)) ++I;
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001287 if (&*I == RetainRV)
1288 return false;
1289 }
John McCalld935e9c2011-06-15 23:37:01 +00001290 }
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001291 }
John McCalld935e9c2011-06-15 23:37:01 +00001292
1293 // Check for being preceded by an objc_autoreleaseReturnValue on the same
1294 // pointer. In this case, we can delete the pair.
1295 BasicBlock::iterator I = RetainRV, Begin = RetainRV->getParent()->begin();
1296 if (I != Begin) {
Michael Gottesman65c24812013-03-25 09:27:43 +00001297 do --I; while (I != Begin && IsNoopInstruction(I));
John McCalld935e9c2011-06-15 23:37:01 +00001298 if (GetBasicInstructionClass(I) == IC_AutoreleaseRV &&
1299 GetObjCArg(I) == Arg) {
1300 Changed = true;
1301 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001302
Michael Gottesman89279f82013-04-05 18:10:41 +00001303 DEBUG(dbgs() << "Erasing autoreleaseRV,retainRV pair: " << *I << "\n"
1304 << "Erasing " << *RetainRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001305
John McCalld935e9c2011-06-15 23:37:01 +00001306 EraseInstruction(I);
1307 EraseInstruction(RetainRV);
1308 return true;
1309 }
1310 }
1311
1312 // Turn it to a plain objc_retain.
1313 Changed = true;
1314 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001315
Michael Gottesman89279f82013-04-05 18:10:41 +00001316 DEBUG(dbgs() << "Transforming objc_retainAutoreleasedReturnValue => "
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001317 "objc_retain since the operand is not a return value.\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001318 "Old = " << *RetainRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001319
John McCalld935e9c2011-06-15 23:37:01 +00001320 cast<CallInst>(RetainRV)->setCalledFunction(getRetainCallee(F.getParent()));
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001321
Michael Gottesman89279f82013-04-05 18:10:41 +00001322 DEBUG(dbgs() << "New = " << *RetainRV << "\n");
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001323
John McCalld935e9c2011-06-15 23:37:01 +00001324 return false;
1325}
1326
Michael Gottesman97e3df02013-01-14 00:35:14 +00001327/// Turn objc_autoreleaseReturnValue into objc_autorelease if the result is not
1328/// used as a return value.
John McCalld935e9c2011-06-15 23:37:01 +00001329void
Michael Gottesman556ff612013-01-12 01:25:19 +00001330ObjCARCOpt::OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1331 InstructionClass &Class) {
John McCalld935e9c2011-06-15 23:37:01 +00001332 // Check for a return of the pointer value.
1333 const Value *Ptr = GetObjCArg(AutoreleaseRV);
Dan Gohman10a18d52011-08-12 00:36:31 +00001334 SmallVector<const Value *, 2> Users;
1335 Users.push_back(Ptr);
1336 do {
1337 Ptr = Users.pop_back_val();
1338 for (Value::const_use_iterator UI = Ptr->use_begin(), UE = Ptr->use_end();
1339 UI != UE; ++UI) {
1340 const User *I = *UI;
1341 if (isa<ReturnInst>(I) || GetBasicInstructionClass(I) == IC_RetainRV)
1342 return;
1343 if (isa<BitCastInst>(I))
1344 Users.push_back(I);
1345 }
1346 } while (!Users.empty());
John McCalld935e9c2011-06-15 23:37:01 +00001347
1348 Changed = true;
1349 ++NumPeeps;
Michael Gottesman1bf69082013-01-06 21:07:11 +00001350
Michael Gottesman89279f82013-04-05 18:10:41 +00001351 DEBUG(dbgs() << "Transforming objc_autoreleaseReturnValue => "
Michael Gottesman1bf69082013-01-06 21:07:11 +00001352 "objc_autorelease since its operand is not used as a return "
1353 "value.\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001354 "Old = " << *AutoreleaseRV << "\n");
Michael Gottesman1bf69082013-01-06 21:07:11 +00001355
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001356 CallInst *AutoreleaseRVCI = cast<CallInst>(AutoreleaseRV);
1357 AutoreleaseRVCI->
John McCalld935e9c2011-06-15 23:37:01 +00001358 setCalledFunction(getAutoreleaseCallee(F.getParent()));
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001359 AutoreleaseRVCI->setTailCall(false); // Never tail call objc_autorelease.
Michael Gottesman556ff612013-01-12 01:25:19 +00001360 Class = IC_Autorelease;
Michael Gottesman10426b52013-01-07 21:26:07 +00001361
Michael Gottesman89279f82013-04-05 18:10:41 +00001362 DEBUG(dbgs() << "New: " << *AutoreleaseRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001363
John McCalld935e9c2011-06-15 23:37:01 +00001364}
1365
Michael Gottesman158fdf62013-03-28 20:11:19 +00001366// \brief Attempt to strength reduce objc_retainBlock calls to objc_retain
1367// calls.
1368//
1369// Specifically: If an objc_retainBlock call has the copy_on_escape metadata and
1370// does not escape (following the rules of block escaping), strength reduce the
1371// objc_retainBlock to an objc_retain.
1372//
1373// TODO: If an objc_retainBlock call is dominated period by a previous
1374// objc_retainBlock call, strength reduce the objc_retainBlock to an
1375// objc_retain.
1376bool
1377ObjCARCOpt::OptimizeRetainBlockCall(Function &F, Instruction *Inst,
1378 InstructionClass &Class) {
1379 assert(GetBasicInstructionClass(Inst) == Class);
1380 assert(IC_RetainBlock == Class);
Michael Gottesman60f6b282013-03-29 05:13:07 +00001381
Michael Gottesman158fdf62013-03-28 20:11:19 +00001382 // If we can not optimize Inst, return false.
1383 if (!IsRetainBlockOptimizable(Inst))
1384 return false;
Michael Gottesman60f6b282013-03-29 05:13:07 +00001385
Michael Gottesman158fdf62013-03-28 20:11:19 +00001386 CallInst *RetainBlock = cast<CallInst>(Inst);
1387 RetainBlock->setCalledFunction(getRetainCallee(F.getParent()));
1388 // Remove copy_on_escape metadata.
1389 RetainBlock->setMetadata(CopyOnEscapeMDKind, 0);
1390 Class = IC_Retain;
Michael Gottesman60f6b282013-03-29 05:13:07 +00001391
Michael Gottesman158fdf62013-03-28 20:11:19 +00001392 return true;
1393}
1394
Michael Gottesman97e3df02013-01-14 00:35:14 +00001395/// Visit each call, one at a time, and make simplifications without doing any
1396/// additional analysis.
John McCalld935e9c2011-06-15 23:37:01 +00001397void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001398 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeIndividualCalls ==\n");
John McCalld935e9c2011-06-15 23:37:01 +00001399 // Reset all the flags in preparation for recomputing them.
1400 UsedInThisFunction = 0;
1401
1402 // Visit all objc_* calls in F.
1403 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
1404 Instruction *Inst = &*I++;
Michael Gottesman3f146e22013-01-01 16:05:48 +00001405
John McCalld935e9c2011-06-15 23:37:01 +00001406 InstructionClass Class = GetBasicInstructionClass(Inst);
1407
Michael Gottesman89279f82013-04-05 18:10:41 +00001408 DEBUG(dbgs() << "Visiting: Class: " << Class << "; " << *Inst << "\n");
Michael Gottesman782e3442013-01-17 18:32:34 +00001409
John McCalld935e9c2011-06-15 23:37:01 +00001410 switch (Class) {
1411 default: break;
1412
1413 // Delete no-op casts. These function calls have special semantics, but
1414 // the semantics are entirely implemented via lowering in the front-end,
1415 // so by the time they reach the optimizer, they are just no-op calls
1416 // which return their argument.
1417 //
1418 // There are gray areas here, as the ability to cast reference-counted
1419 // pointers to raw void* and back allows code to break ARC assumptions,
1420 // however these are currently considered to be unimportant.
1421 case IC_NoopCast:
1422 Changed = true;
1423 ++NumNoops;
Michael Gottesman89279f82013-04-05 18:10:41 +00001424 DEBUG(dbgs() << "Erasing no-op cast: " << *Inst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001425 EraseInstruction(Inst);
1426 continue;
1427
1428 // If the pointer-to-weak-pointer is null, it's undefined behavior.
1429 case IC_StoreWeak:
1430 case IC_LoadWeak:
1431 case IC_LoadWeakRetained:
1432 case IC_InitWeak:
1433 case IC_DestroyWeak: {
1434 CallInst *CI = cast<CallInst>(Inst);
Michael Gottesman65c24812013-03-25 09:27:43 +00001435 if (IsNullOrUndef(CI->getArgOperand(0))) {
Dan Gohman670f9372012-04-13 18:57:48 +00001436 Changed = true;
Chris Lattner229907c2011-07-18 04:54:35 +00001437 Type *Ty = CI->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001438 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1439 Constant::getNullValue(Ty),
1440 CI);
Michael Gottesman10426b52013-01-07 21:26:07 +00001441 llvm::Value *NewValue = UndefValue::get(CI->getType());
Michael Gottesman89279f82013-04-05 18:10:41 +00001442 DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1443 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001444 CI->replaceAllUsesWith(NewValue);
John McCalld935e9c2011-06-15 23:37:01 +00001445 CI->eraseFromParent();
1446 continue;
1447 }
1448 break;
1449 }
1450 case IC_CopyWeak:
1451 case IC_MoveWeak: {
1452 CallInst *CI = cast<CallInst>(Inst);
Michael Gottesman65c24812013-03-25 09:27:43 +00001453 if (IsNullOrUndef(CI->getArgOperand(0)) ||
1454 IsNullOrUndef(CI->getArgOperand(1))) {
Dan Gohman670f9372012-04-13 18:57:48 +00001455 Changed = true;
Chris Lattner229907c2011-07-18 04:54:35 +00001456 Type *Ty = CI->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001457 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1458 Constant::getNullValue(Ty),
1459 CI);
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001460
1461 llvm::Value *NewValue = UndefValue::get(CI->getType());
Michael Gottesman89279f82013-04-05 18:10:41 +00001462 DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1463 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001464
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001465 CI->replaceAllUsesWith(NewValue);
John McCalld935e9c2011-06-15 23:37:01 +00001466 CI->eraseFromParent();
1467 continue;
1468 }
1469 break;
1470 }
Michael Gottesman158fdf62013-03-28 20:11:19 +00001471 case IC_RetainBlock:
1472 // If we strength reduce an objc_retainBlock to amn objc_retain, continue
1473 // onto the objc_retain peephole optimizations. Otherwise break.
1474 if (!OptimizeRetainBlockCall(F, Inst, Class))
1475 break;
1476 // FALLTHROUGH
John McCalld935e9c2011-06-15 23:37:01 +00001477 case IC_Retain:
1478 OptimizeRetainCall(F, Inst);
1479 break;
1480 case IC_RetainRV:
1481 if (OptimizeRetainRVCall(F, Inst))
1482 continue;
1483 break;
1484 case IC_AutoreleaseRV:
Michael Gottesman556ff612013-01-12 01:25:19 +00001485 OptimizeAutoreleaseRVCall(F, Inst, Class);
John McCalld935e9c2011-06-15 23:37:01 +00001486 break;
1487 }
1488
Michael Gottesmanb8c88362013-04-03 02:57:24 +00001489 // objc_autorelease(x) -> objc_release(x) if x is otherwise unused.
John McCalld935e9c2011-06-15 23:37:01 +00001490 if (IsAutorelease(Class) && Inst->use_empty()) {
1491 CallInst *Call = cast<CallInst>(Inst);
1492 const Value *Arg = Call->getArgOperand(0);
1493 Arg = FindSingleUseIdentifiedObject(Arg);
1494 if (Arg) {
1495 Changed = true;
1496 ++NumAutoreleases;
1497
1498 // Create the declaration lazily.
1499 LLVMContext &C = Inst->getContext();
1500 CallInst *NewCall =
1501 CallInst::Create(getReleaseCallee(F.getParent()),
1502 Call->getArgOperand(0), "", Call);
1503 NewCall->setMetadata(ImpreciseReleaseMDKind,
1504 MDNode::get(C, ArrayRef<Value *>()));
Michael Gottesman10426b52013-01-07 21:26:07 +00001505
Michael Gottesman89279f82013-04-05 18:10:41 +00001506 DEBUG(dbgs() << "Replacing autorelease{,RV}(x) with objc_release(x) "
1507 "since x is otherwise unused.\nOld: " << *Call << "\nNew: "
1508 << *NewCall << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001509
John McCalld935e9c2011-06-15 23:37:01 +00001510 EraseInstruction(Call);
1511 Inst = NewCall;
1512 Class = IC_Release;
1513 }
1514 }
1515
1516 // For functions which can never be passed stack arguments, add
1517 // a tail keyword.
1518 if (IsAlwaysTail(Class)) {
1519 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001520 DEBUG(dbgs() << "Adding tail keyword to function since it can never be "
1521 "passed stack args: " << *Inst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001522 cast<CallInst>(Inst)->setTailCall();
1523 }
1524
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001525 // Ensure that functions that can never have a "tail" keyword due to the
1526 // semantics of ARC truly do not do so.
1527 if (IsNeverTail(Class)) {
1528 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001529 DEBUG(dbgs() << "Removing tail keyword from function: " << *Inst <<
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001530 "\n");
1531 cast<CallInst>(Inst)->setTailCall(false);
1532 }
1533
John McCalld935e9c2011-06-15 23:37:01 +00001534 // Set nounwind as needed.
1535 if (IsNoThrow(Class)) {
1536 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001537 DEBUG(dbgs() << "Found no throw class. Setting nounwind on: " << *Inst
1538 << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001539 cast<CallInst>(Inst)->setDoesNotThrow();
1540 }
1541
1542 if (!IsNoopOnNull(Class)) {
1543 UsedInThisFunction |= 1 << Class;
1544 continue;
1545 }
1546
1547 const Value *Arg = GetObjCArg(Inst);
1548
1549 // ARC calls with null are no-ops. Delete them.
Michael Gottesman65c24812013-03-25 09:27:43 +00001550 if (IsNullOrUndef(Arg)) {
John McCalld935e9c2011-06-15 23:37:01 +00001551 Changed = true;
1552 ++NumNoops;
Michael Gottesman89279f82013-04-05 18:10:41 +00001553 DEBUG(dbgs() << "ARC calls with null are no-ops. Erasing: " << *Inst
1554 << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001555 EraseInstruction(Inst);
1556 continue;
1557 }
1558
1559 // Keep track of which of retain, release, autorelease, and retain_block
1560 // are actually present in this function.
1561 UsedInThisFunction |= 1 << Class;
1562
1563 // If Arg is a PHI, and one or more incoming values to the
1564 // PHI are null, and the call is control-equivalent to the PHI, and there
1565 // are no relevant side effects between the PHI and the call, the call
1566 // could be pushed up to just those paths with non-null incoming values.
1567 // For now, don't bother splitting critical edges for this.
1568 SmallVector<std::pair<Instruction *, const Value *>, 4> Worklist;
1569 Worklist.push_back(std::make_pair(Inst, Arg));
1570 do {
1571 std::pair<Instruction *, const Value *> Pair = Worklist.pop_back_val();
1572 Inst = Pair.first;
1573 Arg = Pair.second;
1574
1575 const PHINode *PN = dyn_cast<PHINode>(Arg);
1576 if (!PN) continue;
1577
1578 // Determine if the PHI has any null operands, or any incoming
1579 // critical edges.
1580 bool HasNull = false;
1581 bool HasCriticalEdges = false;
1582 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1583 Value *Incoming =
1584 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
Michael Gottesman65c24812013-03-25 09:27:43 +00001585 if (IsNullOrUndef(Incoming))
John McCalld935e9c2011-06-15 23:37:01 +00001586 HasNull = true;
1587 else if (cast<TerminatorInst>(PN->getIncomingBlock(i)->back())
1588 .getNumSuccessors() != 1) {
1589 HasCriticalEdges = true;
1590 break;
1591 }
1592 }
1593 // If we have null operands and no critical edges, optimize.
1594 if (!HasCriticalEdges && HasNull) {
1595 SmallPtrSet<Instruction *, 4> DependingInstructions;
1596 SmallPtrSet<const BasicBlock *, 4> Visited;
1597
1598 // Check that there is nothing that cares about the reference
1599 // count between the call and the phi.
Dan Gohman8478d762012-04-13 00:59:57 +00001600 switch (Class) {
1601 case IC_Retain:
1602 case IC_RetainBlock:
1603 // These can always be moved up.
1604 break;
1605 case IC_Release:
Dan Gohman41375a32012-05-08 23:39:44 +00001606 // These can't be moved across things that care about the retain
1607 // count.
Dan Gohman8478d762012-04-13 00:59:57 +00001608 FindDependencies(NeedsPositiveRetainCount, Arg,
1609 Inst->getParent(), Inst,
1610 DependingInstructions, Visited, PA);
1611 break;
1612 case IC_Autorelease:
1613 // These can't be moved across autorelease pool scope boundaries.
1614 FindDependencies(AutoreleasePoolBoundary, Arg,
1615 Inst->getParent(), Inst,
1616 DependingInstructions, Visited, PA);
1617 break;
1618 case IC_RetainRV:
1619 case IC_AutoreleaseRV:
1620 // Don't move these; the RV optimization depends on the autoreleaseRV
1621 // being tail called, and the retainRV being immediately after a call
1622 // (which might still happen if we get lucky with codegen layout, but
1623 // it's not worth taking the chance).
1624 continue;
1625 default:
1626 llvm_unreachable("Invalid dependence flavor");
1627 }
1628
John McCalld935e9c2011-06-15 23:37:01 +00001629 if (DependingInstructions.size() == 1 &&
1630 *DependingInstructions.begin() == PN) {
1631 Changed = true;
1632 ++NumPartialNoops;
1633 // Clone the call into each predecessor that has a non-null value.
1634 CallInst *CInst = cast<CallInst>(Inst);
Chris Lattner229907c2011-07-18 04:54:35 +00001635 Type *ParamTy = CInst->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001636 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1637 Value *Incoming =
1638 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
Michael Gottesman65c24812013-03-25 09:27:43 +00001639 if (!IsNullOrUndef(Incoming)) {
John McCalld935e9c2011-06-15 23:37:01 +00001640 CallInst *Clone = cast<CallInst>(CInst->clone());
1641 Value *Op = PN->getIncomingValue(i);
1642 Instruction *InsertPos = &PN->getIncomingBlock(i)->back();
1643 if (Op->getType() != ParamTy)
1644 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
1645 Clone->setArgOperand(0, Op);
1646 Clone->insertBefore(InsertPos);
Michael Gottesmanc189a392013-01-09 19:23:24 +00001647
Michael Gottesman89279f82013-04-05 18:10:41 +00001648 DEBUG(dbgs() << "Cloning "
Michael Gottesmanc189a392013-01-09 19:23:24 +00001649 << *CInst << "\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001650 "And inserting clone at " << *InsertPos << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001651 Worklist.push_back(std::make_pair(Clone, Incoming));
1652 }
1653 }
1654 // Erase the original call.
Michael Gottesmanc189a392013-01-09 19:23:24 +00001655 DEBUG(dbgs() << "Erasing: " << *CInst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001656 EraseInstruction(CInst);
1657 continue;
1658 }
1659 }
1660 } while (!Worklist.empty());
1661 }
1662}
1663
Michael Gottesman323964c2013-04-18 05:39:45 +00001664/// If we have a top down pointer in the S_Use state, make sure that there are
1665/// no CFG hazards by checking the states of various bottom up pointers.
1666static void CheckForUseCFGHazard(const Sequence SuccSSeq,
1667 const bool SuccSRRIKnownSafe,
1668 PtrState &S,
1669 bool &SomeSuccHasSame,
1670 bool &AllSuccsHaveSame,
1671 bool &ShouldContinue) {
1672 switch (SuccSSeq) {
1673 case S_CanRelease: {
1674 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe) {
1675 S.ClearSequenceProgress();
1676 break;
1677 }
1678 ShouldContinue = true;
1679 break;
1680 }
1681 case S_Use:
1682 SomeSuccHasSame = true;
1683 break;
1684 case S_Stop:
1685 case S_Release:
1686 case S_MovableRelease:
1687 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
1688 AllSuccsHaveSame = false;
1689 break;
1690 case S_Retain:
1691 llvm_unreachable("bottom-up pointer in retain state!");
1692 case S_None:
1693 llvm_unreachable("This should have been handled earlier.");
1694 }
1695}
1696
1697/// If we have a Top Down pointer in the S_CanRelease state, make sure that
1698/// there are no CFG hazards by checking the states of various bottom up
1699/// pointers.
1700static void CheckForCanReleaseCFGHazard(const Sequence SuccSSeq,
1701 const bool SuccSRRIKnownSafe,
1702 PtrState &S,
1703 bool &SomeSuccHasSame,
1704 bool &AllSuccsHaveSame) {
1705 switch (SuccSSeq) {
1706 case S_CanRelease:
1707 SomeSuccHasSame = true;
1708 break;
1709 case S_Stop:
1710 case S_Release:
1711 case S_MovableRelease:
1712 case S_Use:
1713 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
1714 AllSuccsHaveSame = false;
1715 break;
1716 case S_Retain:
1717 llvm_unreachable("bottom-up pointer in retain state!");
1718 case S_None:
1719 llvm_unreachable("This should have been handled earlier.");
1720 }
1721}
1722
Michael Gottesman97e3df02013-01-14 00:35:14 +00001723/// Check for critical edges, loop boundaries, irreducible control flow, or
1724/// other CFG structures where moving code across the edge would result in it
1725/// being executed more.
John McCalld935e9c2011-06-15 23:37:01 +00001726void
1727ObjCARCOpt::CheckForCFGHazards(const BasicBlock *BB,
1728 DenseMap<const BasicBlock *, BBState> &BBStates,
1729 BBState &MyStates) const {
1730 // If any top-down local-use or possible-dec has a succ which is earlier in
1731 // the sequence, forget it.
Dan Gohman55b06742012-03-02 01:13:53 +00001732 for (BBState::ptr_iterator I = MyStates.top_down_ptr_begin(),
Michael Gottesman323964c2013-04-18 05:39:45 +00001733 E = MyStates.top_down_ptr_end(); I != E; ++I) {
1734 PtrState &S = I->second;
1735 const Sequence Seq = I->second.GetSeq();
Dan Gohman0155f302012-02-17 18:59:53 +00001736
Michael Gottesman323964c2013-04-18 05:39:45 +00001737 // We only care about S_Retain, S_CanRelease, and S_Use.
1738 if (Seq == S_None)
1739 continue;
Dan Gohman0155f302012-02-17 18:59:53 +00001740
Michael Gottesman323964c2013-04-18 05:39:45 +00001741 // Make sure that if extra top down states are added in the future that this
1742 // code is updated to handle it.
1743 assert((Seq == S_Retain || Seq == S_CanRelease || Seq == S_Use) &&
1744 "Unknown top down sequence state.");
1745
1746 const Value *Arg = I->first;
1747 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
1748 bool SomeSuccHasSame = false;
1749 bool AllSuccsHaveSame = true;
1750
1751 succ_const_iterator SI(TI), SE(TI, false);
1752
1753 for (; SI != SE; ++SI) {
1754 // If VisitBottomUp has pointer information for this successor, take
1755 // what we know about it.
1756 const DenseMap<const BasicBlock *, BBState>::iterator BBI =
1757 BBStates.find(*SI);
1758 assert(BBI != BBStates.end());
1759 const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
1760 const Sequence SuccSSeq = SuccS.GetSeq();
1761
1762 // If bottom up, the pointer is in an S_None state, clear the sequence
1763 // progress since the sequence in the bottom up state finished
1764 // suggesting a mismatch in between retains/releases. This is true for
1765 // all three cases that we are handling here: S_Retain, S_Use, and
1766 // S_CanRelease.
1767 if (SuccSSeq == S_None) {
Dan Gohman12130272011-08-12 00:26:31 +00001768 S.ClearSequenceProgress();
Michael Gottesman323964c2013-04-18 05:39:45 +00001769 continue;
1770 }
1771
1772 // If we have S_Use or S_CanRelease, perform our check for cfg hazard
1773 // checks.
1774 const bool SuccSRRIKnownSafe = SuccS.RRI.KnownSafe;
1775
1776 // *NOTE* We do not use Seq from above here since we are allowing for
1777 // S.GetSeq() to change while we are visiting basic blocks.
1778 switch(S.GetSeq()) {
1779 case S_Use: {
1780 bool ShouldContinue = false;
1781 CheckForUseCFGHazard(SuccSSeq, SuccSRRIKnownSafe, S,
1782 SomeSuccHasSame, AllSuccsHaveSame,
1783 ShouldContinue);
1784 if (ShouldContinue)
1785 continue;
1786 break;
1787 }
1788 case S_CanRelease: {
1789 CheckForCanReleaseCFGHazard(SuccSSeq, SuccSRRIKnownSafe,
1790 S, SomeSuccHasSame,
1791 AllSuccsHaveSame);
1792 break;
1793 }
1794 case S_Retain:
1795 case S_None:
1796 case S_Stop:
1797 case S_Release:
1798 case S_MovableRelease:
1799 break;
1800 }
John McCalld935e9c2011-06-15 23:37:01 +00001801 }
Michael Gottesman323964c2013-04-18 05:39:45 +00001802
1803 // If the state at the other end of any of the successor edges
1804 // matches the current state, require all edges to match. This
1805 // guards against loops in the middle of a sequence.
1806 if (SomeSuccHasSame && !AllSuccsHaveSame)
1807 S.ClearSequenceProgress();
1808 }
John McCalld935e9c2011-06-15 23:37:01 +00001809}
1810
1811bool
Dan Gohman817a7c62012-03-22 18:24:56 +00001812ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
Dan Gohman5c70fad2012-03-23 17:47:54 +00001813 BasicBlock *BB,
Dan Gohman817a7c62012-03-22 18:24:56 +00001814 MapVector<Value *, RRInfo> &Retains,
1815 BBState &MyStates) {
1816 bool NestingDetected = false;
1817 InstructionClass Class = GetInstructionClass(Inst);
1818 const Value *Arg = 0;
Michael Gottesman79249972013-04-05 23:46:45 +00001819
Michael Gottesman1d8d2572013-04-05 22:54:28 +00001820 DEBUG(dbgs() << "Class: " << Class << "\n");
Michael Gottesman79249972013-04-05 23:46:45 +00001821
Dan Gohman817a7c62012-03-22 18:24:56 +00001822 switch (Class) {
1823 case IC_Release: {
1824 Arg = GetObjCArg(Inst);
1825
1826 PtrState &S = MyStates.getPtrBottomUpState(Arg);
1827
1828 // If we see two releases in a row on the same pointer. If so, make
1829 // a note, and we'll cicle back to revisit it after we've
1830 // hopefully eliminated the second release, which may allow us to
1831 // eliminate the first release too.
1832 // Theoretically we could implement removal of nested retain+release
1833 // pairs by making PtrState hold a stack of states, but this is
1834 // simple and avoids adding overhead for the non-nested case.
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001835 if (S.GetSeq() == S_Release || S.GetSeq() == S_MovableRelease) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001836 DEBUG(dbgs() << "Found nested releases (i.e. a release pair)\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001837 NestingDetected = true;
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001838 }
Dan Gohman817a7c62012-03-22 18:24:56 +00001839
Dan Gohman817a7c62012-03-22 18:24:56 +00001840 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001841 Sequence NewSeq = ReleaseMetadata ? S_MovableRelease : S_Release;
1842 ANNOTATE_BOTTOMUP(Inst, Arg, S.GetSeq(), NewSeq);
1843 S.ResetSequenceProgress(NewSeq);
Dan Gohman817a7c62012-03-22 18:24:56 +00001844 S.RRI.ReleaseMetadata = ReleaseMetadata;
Michael Gottesman07beea42013-03-23 05:31:01 +00001845 S.RRI.KnownSafe = S.HasKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001846 S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
1847 S.RRI.Calls.insert(Inst);
Dan Gohmandf476e52012-09-04 23:16:20 +00001848 S.SetKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001849 break;
1850 }
1851 case IC_RetainBlock:
Michael Gottesman158fdf62013-03-28 20:11:19 +00001852 // In OptimizeIndividualCalls, we have strength reduced all optimizable
1853 // objc_retainBlocks to objc_retains. Thus at this point any
1854 // objc_retainBlocks that we see are not optimizable.
1855 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001856 case IC_Retain:
1857 case IC_RetainRV: {
1858 Arg = GetObjCArg(Inst);
1859
1860 PtrState &S = MyStates.getPtrBottomUpState(Arg);
Dan Gohman62079b42012-04-25 00:50:46 +00001861 S.SetKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001862
Michael Gottesman81b1d432013-03-26 00:42:04 +00001863 Sequence OldSeq = S.GetSeq();
1864 switch (OldSeq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00001865 case S_Stop:
1866 case S_Release:
1867 case S_MovableRelease:
1868 case S_Use:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00001869 // If OldSeq is not S_Use or OldSeq is S_Use and we are tracking an
1870 // imprecise release, clear our reverse insertion points.
1871 if (OldSeq != S_Use || S.RRI.IsTrackingImpreciseReleases())
1872 S.RRI.ReverseInsertPts.clear();
Dan Gohman817a7c62012-03-22 18:24:56 +00001873 // FALL THROUGH
1874 case S_CanRelease:
1875 // Don't do retain+release tracking for IC_RetainRV, because it's
1876 // better to let it remain as the first instruction after a call.
Michael Gottesmanba648592013-03-28 23:08:44 +00001877 if (Class != IC_RetainRV)
Dan Gohman817a7c62012-03-22 18:24:56 +00001878 Retains[Inst] = S.RRI;
Dan Gohman817a7c62012-03-22 18:24:56 +00001879 S.ClearSequenceProgress();
1880 break;
1881 case S_None:
1882 break;
1883 case S_Retain:
1884 llvm_unreachable("bottom-up pointer in retain state!");
1885 }
Michael Gottesman79249972013-04-05 23:46:45 +00001886 ANNOTATE_BOTTOMUP(Inst, Arg, OldSeq, S.GetSeq());
Michael Gottesman31ba23a2013-04-05 22:54:32 +00001887 // A retain moving bottom up can be a use.
1888 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001889 }
1890 case IC_AutoreleasepoolPop:
1891 // Conservatively, clear MyStates for all known pointers.
1892 MyStates.clearBottomUpPointers();
1893 return NestingDetected;
1894 case IC_AutoreleasepoolPush:
1895 case IC_None:
1896 // These are irrelevant.
1897 return NestingDetected;
1898 default:
1899 break;
1900 }
1901
1902 // Consider any other possible effects of this instruction on each
1903 // pointer being tracked.
1904 for (BBState::ptr_iterator MI = MyStates.bottom_up_ptr_begin(),
1905 ME = MyStates.bottom_up_ptr_end(); MI != ME; ++MI) {
1906 const Value *Ptr = MI->first;
1907 if (Ptr == Arg)
1908 continue; // Handled above.
1909 PtrState &S = MI->second;
1910 Sequence Seq = S.GetSeq();
1911
1912 // Check for possible releases.
1913 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001914 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
1915 << "\n");
Michael Gottesman764b1cf2013-03-23 05:46:19 +00001916 S.ClearKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001917 switch (Seq) {
1918 case S_Use:
1919 S.SetSeq(S_CanRelease);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001920 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S.GetSeq());
Dan Gohman817a7c62012-03-22 18:24:56 +00001921 continue;
1922 case S_CanRelease:
1923 case S_Release:
1924 case S_MovableRelease:
1925 case S_Stop:
1926 case S_None:
1927 break;
1928 case S_Retain:
1929 llvm_unreachable("bottom-up pointer in retain state!");
1930 }
1931 }
1932
1933 // Check for possible direct uses.
1934 switch (Seq) {
1935 case S_Release:
1936 case S_MovableRelease:
1937 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001938 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
1939 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001940 assert(S.RRI.ReverseInsertPts.empty());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001941 // If this is an invoke instruction, we're scanning it as part of
1942 // one of its successor blocks, since we can't insert code after it
1943 // in its own block, and we don't want to split critical edges.
1944 if (isa<InvokeInst>(Inst))
1945 S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
1946 else
Francois Pichet4b9ab742012-03-24 01:36:37 +00001947 S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
Dan Gohman817a7c62012-03-22 18:24:56 +00001948 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001949 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
John McCall20182ac2013-03-22 21:38:36 +00001950 } else if (Seq == S_Release && IsUser(Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001951 DEBUG(dbgs() << "PreciseReleaseUse: Seq: " << Seq << "; " << *Ptr
1952 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001953 // Non-movable releases depend on any possible objc pointer use.
1954 S.SetSeq(S_Stop);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001955 ANNOTATE_BOTTOMUP(Inst, Ptr, S_Release, S_Stop);
Dan Gohman817a7c62012-03-22 18:24:56 +00001956 assert(S.RRI.ReverseInsertPts.empty());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001957 // As above; handle invoke specially.
1958 if (isa<InvokeInst>(Inst))
1959 S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
1960 else
Francois Pichet4b9ab742012-03-24 01:36:37 +00001961 S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
Dan Gohman817a7c62012-03-22 18:24:56 +00001962 }
1963 break;
1964 case S_Stop:
Michael Gottesman81b1d432013-03-26 00:42:04 +00001965 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001966 DEBUG(dbgs() << "PreciseStopUse: Seq: " << Seq << "; " << *Ptr
1967 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001968 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001969 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
1970 }
Dan Gohman817a7c62012-03-22 18:24:56 +00001971 break;
1972 case S_CanRelease:
1973 case S_Use:
1974 case S_None:
1975 break;
1976 case S_Retain:
1977 llvm_unreachable("bottom-up pointer in retain state!");
1978 }
1979 }
1980
1981 return NestingDetected;
1982}
1983
1984bool
John McCalld935e9c2011-06-15 23:37:01 +00001985ObjCARCOpt::VisitBottomUp(BasicBlock *BB,
1986 DenseMap<const BasicBlock *, BBState> &BBStates,
1987 MapVector<Value *, RRInfo> &Retains) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001988
1989 DEBUG(dbgs() << "\n== ObjCARCOpt::VisitBottomUp ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00001990
John McCalld935e9c2011-06-15 23:37:01 +00001991 bool NestingDetected = false;
1992 BBState &MyStates = BBStates[BB];
1993
1994 // Merge the states from each successor to compute the initial state
1995 // for the current block.
Dan Gohman10c82ce2012-08-27 18:31:36 +00001996 BBState::edge_iterator SI(MyStates.succ_begin()),
1997 SE(MyStates.succ_end());
1998 if (SI != SE) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00001999 const BasicBlock *Succ = *SI;
2000 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Succ);
2001 assert(I != BBStates.end());
2002 MyStates.InitFromSucc(I->second);
2003 ++SI;
2004 for (; SI != SE; ++SI) {
2005 Succ = *SI;
2006 I = BBStates.find(Succ);
2007 assert(I != BBStates.end());
2008 MyStates.MergeSucc(I->second);
2009 }
Michael Gottesman60f6b282013-03-29 05:13:07 +00002010 }
Michael Gottesmancd4de0f2013-03-26 00:42:09 +00002011
Michael Gottesman43e7e002013-04-03 22:41:59 +00002012 // If ARC Annotations are enabled, output the current state of pointers at the
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002013 // bottom of the basic block.
Michael Gottesman43e7e002013-04-03 22:41:59 +00002014 ANNOTATE_BOTTOMUP_BBEND(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002015
John McCalld935e9c2011-06-15 23:37:01 +00002016 // Visit all the instructions, bottom-up.
2017 for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; --I) {
2018 Instruction *Inst = llvm::prior(I);
Dan Gohman5c70fad2012-03-23 17:47:54 +00002019
2020 // Invoke instructions are visited as part of their successors (below).
2021 if (isa<InvokeInst>(Inst))
2022 continue;
2023
Michael Gottesman89279f82013-04-05 18:10:41 +00002024 DEBUG(dbgs() << "Visiting " << *Inst << "\n");
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002025
Dan Gohman5c70fad2012-03-23 17:47:54 +00002026 NestingDetected |= VisitInstructionBottomUp(Inst, BB, Retains, MyStates);
2027 }
2028
Dan Gohmandae33492012-04-27 18:56:31 +00002029 // If there's a predecessor with an invoke, visit the invoke as if it were
2030 // part of this block, since we can't insert code after an invoke in its own
2031 // block, and we don't want to split critical edges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002032 for (BBState::edge_iterator PI(MyStates.pred_begin()),
2033 PE(MyStates.pred_end()); PI != PE; ++PI) {
Dan Gohman5c70fad2012-03-23 17:47:54 +00002034 BasicBlock *Pred = *PI;
Dan Gohmandae33492012-04-27 18:56:31 +00002035 if (InvokeInst *II = dyn_cast<InvokeInst>(&Pred->back()))
2036 NestingDetected |= VisitInstructionBottomUp(II, BB, Retains, MyStates);
Dan Gohman817a7c62012-03-22 18:24:56 +00002037 }
John McCalld935e9c2011-06-15 23:37:01 +00002038
Michael Gottesman43e7e002013-04-03 22:41:59 +00002039 // If ARC Annotations are enabled, output the current state of pointers at the
2040 // top of the basic block.
2041 ANNOTATE_BOTTOMUP_BBSTART(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002042
Dan Gohman817a7c62012-03-22 18:24:56 +00002043 return NestingDetected;
2044}
John McCalld935e9c2011-06-15 23:37:01 +00002045
Dan Gohman817a7c62012-03-22 18:24:56 +00002046bool
2047ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
2048 DenseMap<Value *, RRInfo> &Releases,
2049 BBState &MyStates) {
2050 bool NestingDetected = false;
2051 InstructionClass Class = GetInstructionClass(Inst);
2052 const Value *Arg = 0;
John McCalld935e9c2011-06-15 23:37:01 +00002053
Dan Gohman817a7c62012-03-22 18:24:56 +00002054 switch (Class) {
2055 case IC_RetainBlock:
Michael Gottesman158fdf62013-03-28 20:11:19 +00002056 // In OptimizeIndividualCalls, we have strength reduced all optimizable
2057 // objc_retainBlocks to objc_retains. Thus at this point any
2058 // objc_retainBlocks that we see are not optimizable.
2059 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002060 case IC_Retain:
2061 case IC_RetainRV: {
2062 Arg = GetObjCArg(Inst);
2063
2064 PtrState &S = MyStates.getPtrTopDownState(Arg);
2065
2066 // Don't do retain+release tracking for IC_RetainRV, because it's
2067 // better to let it remain as the first instruction after a call.
2068 if (Class != IC_RetainRV) {
2069 // If we see two retains in a row on the same pointer. If so, make
John McCalld935e9c2011-06-15 23:37:01 +00002070 // a note, and we'll cicle back to revisit it after we've
Dan Gohman817a7c62012-03-22 18:24:56 +00002071 // hopefully eliminated the second retain, which may allow us to
2072 // eliminate the first retain too.
John McCalld935e9c2011-06-15 23:37:01 +00002073 // Theoretically we could implement removal of nested retain+release
2074 // pairs by making PtrState hold a stack of states, but this is
2075 // simple and avoids adding overhead for the non-nested case.
Dan Gohman817a7c62012-03-22 18:24:56 +00002076 if (S.GetSeq() == S_Retain)
John McCalld935e9c2011-06-15 23:37:01 +00002077 NestingDetected = true;
2078
Michael Gottesman81b1d432013-03-26 00:42:04 +00002079 ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_Retain);
Dan Gohman62079b42012-04-25 00:50:46 +00002080 S.ResetSequenceProgress(S_Retain);
Michael Gottesman07beea42013-03-23 05:31:01 +00002081 S.RRI.KnownSafe = S.HasKnownPositiveRefCount();
John McCalld935e9c2011-06-15 23:37:01 +00002082 S.RRI.Calls.insert(Inst);
John McCalld935e9c2011-06-15 23:37:01 +00002083 }
John McCalld935e9c2011-06-15 23:37:01 +00002084
Dan Gohmandf476e52012-09-04 23:16:20 +00002085 S.SetKnownPositiveRefCount();
Dan Gohmanf64ff8e2012-07-23 19:27:31 +00002086
2087 // A retain can be a potential use; procede to the generic checking
2088 // code below.
2089 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002090 }
2091 case IC_Release: {
2092 Arg = GetObjCArg(Inst);
2093
2094 PtrState &S = MyStates.getPtrTopDownState(Arg);
Michael Gottesman764b1cf2013-03-23 05:46:19 +00002095 S.ClearKnownPositiveRefCount();
Michael Gottesman79249972013-04-05 23:46:45 +00002096
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002097 Sequence OldSeq = S.GetSeq();
Michael Gottesman79249972013-04-05 23:46:45 +00002098
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002099 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Michael Gottesman79249972013-04-05 23:46:45 +00002100
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002101 switch (OldSeq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00002102 case S_Retain:
2103 case S_CanRelease:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002104 if (OldSeq == S_Retain || ReleaseMetadata != 0)
2105 S.RRI.ReverseInsertPts.clear();
Dan Gohman817a7c62012-03-22 18:24:56 +00002106 // FALL THROUGH
2107 case S_Use:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002108 S.RRI.ReleaseMetadata = ReleaseMetadata;
Dan Gohman817a7c62012-03-22 18:24:56 +00002109 S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
2110 Releases[Inst] = S.RRI;
Michael Gottesman81b1d432013-03-26 00:42:04 +00002111 ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_None);
Dan Gohman817a7c62012-03-22 18:24:56 +00002112 S.ClearSequenceProgress();
2113 break;
2114 case S_None:
2115 break;
2116 case S_Stop:
2117 case S_Release:
2118 case S_MovableRelease:
2119 llvm_unreachable("top-down pointer in release state!");
2120 }
2121 break;
2122 }
2123 case IC_AutoreleasepoolPop:
2124 // Conservatively, clear MyStates for all known pointers.
2125 MyStates.clearTopDownPointers();
2126 return NestingDetected;
2127 case IC_AutoreleasepoolPush:
2128 case IC_None:
2129 // These are irrelevant.
2130 return NestingDetected;
2131 default:
2132 break;
2133 }
2134
2135 // Consider any other possible effects of this instruction on each
2136 // pointer being tracked.
2137 for (BBState::ptr_iterator MI = MyStates.top_down_ptr_begin(),
2138 ME = MyStates.top_down_ptr_end(); MI != ME; ++MI) {
2139 const Value *Ptr = MI->first;
2140 if (Ptr == Arg)
2141 continue; // Handled above.
2142 PtrState &S = MI->second;
2143 Sequence Seq = S.GetSeq();
2144
2145 // Check for possible releases.
2146 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Michael Gottesmanbab49e972013-04-05 18:26:08 +00002147 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
Michael Gottesman79249972013-04-05 23:46:45 +00002148 << "\n");
Michael Gottesman764b1cf2013-03-23 05:46:19 +00002149 S.ClearKnownPositiveRefCount();
John McCalld935e9c2011-06-15 23:37:01 +00002150 switch (Seq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00002151 case S_Retain:
2152 S.SetSeq(S_CanRelease);
Michael Gottesman81b1d432013-03-26 00:42:04 +00002153 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_CanRelease);
Dan Gohman817a7c62012-03-22 18:24:56 +00002154 assert(S.RRI.ReverseInsertPts.empty());
2155 S.RRI.ReverseInsertPts.insert(Inst);
2156
2157 // One call can't cause a transition from S_Retain to S_CanRelease
2158 // and S_CanRelease to S_Use. If we've made the first transition,
2159 // we're done.
2160 continue;
John McCalld935e9c2011-06-15 23:37:01 +00002161 case S_Use:
Dan Gohman817a7c62012-03-22 18:24:56 +00002162 case S_CanRelease:
John McCalld935e9c2011-06-15 23:37:01 +00002163 case S_None:
2164 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002165 case S_Stop:
2166 case S_Release:
2167 case S_MovableRelease:
2168 llvm_unreachable("top-down pointer in release state!");
John McCalld935e9c2011-06-15 23:37:01 +00002169 }
2170 }
Dan Gohman817a7c62012-03-22 18:24:56 +00002171
2172 // Check for possible direct uses.
2173 switch (Seq) {
2174 case S_CanRelease:
Michael Gottesman81b1d432013-03-26 00:42:04 +00002175 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesmanbab49e972013-04-05 18:26:08 +00002176 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
2177 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00002178 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00002179 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_Use);
2180 }
Dan Gohman817a7c62012-03-22 18:24:56 +00002181 break;
2182 case S_Retain:
2183 case S_Use:
2184 case S_None:
2185 break;
2186 case S_Stop:
2187 case S_Release:
2188 case S_MovableRelease:
2189 llvm_unreachable("top-down pointer in release state!");
2190 }
John McCalld935e9c2011-06-15 23:37:01 +00002191 }
2192
2193 return NestingDetected;
2194}
2195
2196bool
2197ObjCARCOpt::VisitTopDown(BasicBlock *BB,
2198 DenseMap<const BasicBlock *, BBState> &BBStates,
2199 DenseMap<Value *, RRInfo> &Releases) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002200 DEBUG(dbgs() << "\n== ObjCARCOpt::VisitTopDown ==\n");
John McCalld935e9c2011-06-15 23:37:01 +00002201 bool NestingDetected = false;
2202 BBState &MyStates = BBStates[BB];
2203
2204 // Merge the states from each predecessor to compute the initial state
2205 // for the current block.
Dan Gohman10c82ce2012-08-27 18:31:36 +00002206 BBState::edge_iterator PI(MyStates.pred_begin()),
2207 PE(MyStates.pred_end());
2208 if (PI != PE) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002209 const BasicBlock *Pred = *PI;
2210 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Pred);
2211 assert(I != BBStates.end());
2212 MyStates.InitFromPred(I->second);
2213 ++PI;
2214 for (; PI != PE; ++PI) {
2215 Pred = *PI;
2216 I = BBStates.find(Pred);
2217 assert(I != BBStates.end());
2218 MyStates.MergePred(I->second);
2219 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002220 }
John McCalld935e9c2011-06-15 23:37:01 +00002221
Michael Gottesman43e7e002013-04-03 22:41:59 +00002222 // If ARC Annotations are enabled, output the current state of pointers at the
2223 // top of the basic block.
2224 ANNOTATE_TOPDOWN_BBSTART(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002225
John McCalld935e9c2011-06-15 23:37:01 +00002226 // Visit all the instructions, top-down.
2227 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
2228 Instruction *Inst = I;
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002229
Michael Gottesman89279f82013-04-05 18:10:41 +00002230 DEBUG(dbgs() << "Visiting " << *Inst << "\n");
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002231
Dan Gohman817a7c62012-03-22 18:24:56 +00002232 NestingDetected |= VisitInstructionTopDown(Inst, Releases, MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00002233 }
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002234
Michael Gottesman43e7e002013-04-03 22:41:59 +00002235 // If ARC Annotations are enabled, output the current state of pointers at the
2236 // bottom of the basic block.
2237 ANNOTATE_TOPDOWN_BBEND(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002238
Michael Gottesmanffef24f2013-04-17 20:48:01 +00002239#ifdef ARC_ANNOTATIONS
Michael Gottesmanadb921a2013-04-17 21:03:53 +00002240 if (!(EnableARCAnnotations && DisableCheckForCFGHazards))
Michael Gottesmanffef24f2013-04-17 20:48:01 +00002241#endif
John McCalld935e9c2011-06-15 23:37:01 +00002242 CheckForCFGHazards(BB, BBStates, MyStates);
2243 return NestingDetected;
2244}
2245
Dan Gohmana53a12c2011-12-12 19:42:25 +00002246static void
2247ComputePostOrders(Function &F,
2248 SmallVectorImpl<BasicBlock *> &PostOrder,
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002249 SmallVectorImpl<BasicBlock *> &ReverseCFGPostOrder,
2250 unsigned NoObjCARCExceptionsMDKind,
2251 DenseMap<const BasicBlock *, BBState> &BBStates) {
Michael Gottesman97e3df02013-01-14 00:35:14 +00002252 /// The visited set, for doing DFS walks.
Dan Gohmana53a12c2011-12-12 19:42:25 +00002253 SmallPtrSet<BasicBlock *, 16> Visited;
2254
2255 // Do DFS, computing the PostOrder.
2256 SmallPtrSet<BasicBlock *, 16> OnStack;
2257 SmallVector<std::pair<BasicBlock *, succ_iterator>, 16> SuccStack;
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002258
2259 // Functions always have exactly one entry block, and we don't have
2260 // any other block that we treat like an entry block.
Dan Gohmana53a12c2011-12-12 19:42:25 +00002261 BasicBlock *EntryBB = &F.getEntryBlock();
Dan Gohman41375a32012-05-08 23:39:44 +00002262 BBState &MyStates = BBStates[EntryBB];
2263 MyStates.SetAsEntry();
2264 TerminatorInst *EntryTI = cast<TerminatorInst>(&EntryBB->back());
2265 SuccStack.push_back(std::make_pair(EntryBB, succ_iterator(EntryTI)));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002266 Visited.insert(EntryBB);
2267 OnStack.insert(EntryBB);
2268 do {
2269 dfs_next_succ:
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002270 BasicBlock *CurrBB = SuccStack.back().first;
2271 TerminatorInst *TI = cast<TerminatorInst>(&CurrBB->back());
2272 succ_iterator SE(TI, false);
Dan Gohman41375a32012-05-08 23:39:44 +00002273
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002274 while (SuccStack.back().second != SE) {
2275 BasicBlock *SuccBB = *SuccStack.back().second++;
2276 if (Visited.insert(SuccBB)) {
Dan Gohman41375a32012-05-08 23:39:44 +00002277 TerminatorInst *TI = cast<TerminatorInst>(&SuccBB->back());
2278 SuccStack.push_back(std::make_pair(SuccBB, succ_iterator(TI)));
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002279 BBStates[CurrBB].addSucc(SuccBB);
Dan Gohman41375a32012-05-08 23:39:44 +00002280 BBState &SuccStates = BBStates[SuccBB];
2281 SuccStates.addPred(CurrBB);
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002282 OnStack.insert(SuccBB);
Dan Gohmana53a12c2011-12-12 19:42:25 +00002283 goto dfs_next_succ;
2284 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002285
2286 if (!OnStack.count(SuccBB)) {
2287 BBStates[CurrBB].addSucc(SuccBB);
2288 BBStates[SuccBB].addPred(CurrBB);
2289 }
Dan Gohmana53a12c2011-12-12 19:42:25 +00002290 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002291 OnStack.erase(CurrBB);
2292 PostOrder.push_back(CurrBB);
2293 SuccStack.pop_back();
Dan Gohmana53a12c2011-12-12 19:42:25 +00002294 } while (!SuccStack.empty());
2295
2296 Visited.clear();
2297
Dan Gohmana53a12c2011-12-12 19:42:25 +00002298 // Do reverse-CFG DFS, computing the reverse-CFG PostOrder.
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002299 // Functions may have many exits, and there also blocks which we treat
2300 // as exits due to ignored edges.
2301 SmallVector<std::pair<BasicBlock *, BBState::edge_iterator>, 16> PredStack;
2302 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
2303 BasicBlock *ExitBB = I;
2304 BBState &MyStates = BBStates[ExitBB];
2305 if (!MyStates.isExit())
2306 continue;
2307
Dan Gohmandae33492012-04-27 18:56:31 +00002308 MyStates.SetAsExit();
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002309
2310 PredStack.push_back(std::make_pair(ExitBB, MyStates.pred_begin()));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002311 Visited.insert(ExitBB);
2312 while (!PredStack.empty()) {
2313 reverse_dfs_next_succ:
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002314 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end();
2315 while (PredStack.back().second != PE) {
Dan Gohmana53a12c2011-12-12 19:42:25 +00002316 BasicBlock *BB = *PredStack.back().second++;
Dan Gohmana53a12c2011-12-12 19:42:25 +00002317 if (Visited.insert(BB)) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002318 PredStack.push_back(std::make_pair(BB, BBStates[BB].pred_begin()));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002319 goto reverse_dfs_next_succ;
2320 }
2321 }
2322 ReverseCFGPostOrder.push_back(PredStack.pop_back_val().first);
2323 }
2324 }
2325}
2326
Michael Gottesman97e3df02013-01-14 00:35:14 +00002327// Visit the function both top-down and bottom-up.
John McCalld935e9c2011-06-15 23:37:01 +00002328bool
2329ObjCARCOpt::Visit(Function &F,
2330 DenseMap<const BasicBlock *, BBState> &BBStates,
2331 MapVector<Value *, RRInfo> &Retains,
2332 DenseMap<Value *, RRInfo> &Releases) {
Dan Gohmana53a12c2011-12-12 19:42:25 +00002333
2334 // Use reverse-postorder traversals, because we magically know that loops
2335 // will be well behaved, i.e. they won't repeatedly call retain on a single
2336 // pointer without doing a release. We can't use the ReversePostOrderTraversal
2337 // class here because we want the reverse-CFG postorder to consider each
2338 // function exit point, and we want to ignore selected cycle edges.
2339 SmallVector<BasicBlock *, 16> PostOrder;
2340 SmallVector<BasicBlock *, 16> ReverseCFGPostOrder;
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002341 ComputePostOrders(F, PostOrder, ReverseCFGPostOrder,
2342 NoObjCARCExceptionsMDKind,
2343 BBStates);
Dan Gohmana53a12c2011-12-12 19:42:25 +00002344
2345 // Use reverse-postorder on the reverse CFG for bottom-up.
John McCalld935e9c2011-06-15 23:37:01 +00002346 bool BottomUpNestingDetected = false;
Dan Gohmanc57b58c2011-08-18 21:27:42 +00002347 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
Dan Gohmana53a12c2011-12-12 19:42:25 +00002348 ReverseCFGPostOrder.rbegin(), E = ReverseCFGPostOrder.rend();
2349 I != E; ++I)
2350 BottomUpNestingDetected |= VisitBottomUp(*I, BBStates, Retains);
John McCalld935e9c2011-06-15 23:37:01 +00002351
Dan Gohmana53a12c2011-12-12 19:42:25 +00002352 // Use reverse-postorder for top-down.
John McCalld935e9c2011-06-15 23:37:01 +00002353 bool TopDownNestingDetected = false;
Dan Gohmana53a12c2011-12-12 19:42:25 +00002354 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
2355 PostOrder.rbegin(), E = PostOrder.rend();
2356 I != E; ++I)
2357 TopDownNestingDetected |= VisitTopDown(*I, BBStates, Releases);
John McCalld935e9c2011-06-15 23:37:01 +00002358
2359 return TopDownNestingDetected && BottomUpNestingDetected;
2360}
2361
Michael Gottesman97e3df02013-01-14 00:35:14 +00002362/// Move the calls in RetainsToMove and ReleasesToMove.
John McCalld935e9c2011-06-15 23:37:01 +00002363void ObjCARCOpt::MoveCalls(Value *Arg,
2364 RRInfo &RetainsToMove,
2365 RRInfo &ReleasesToMove,
2366 MapVector<Value *, RRInfo> &Retains,
2367 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman6320f522011-07-22 22:29:21 +00002368 SmallVectorImpl<Instruction *> &DeadInsts,
Michael Gottesman79249972013-04-05 23:46:45 +00002369 Module *M) {
Chris Lattner229907c2011-07-18 04:54:35 +00002370 Type *ArgTy = Arg->getType();
Dan Gohman6320f522011-07-22 22:29:21 +00002371 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext()));
Michael Gottesman79249972013-04-05 23:46:45 +00002372
Michael Gottesman89279f82013-04-05 18:10:41 +00002373 DEBUG(dbgs() << "== ObjCARCOpt::MoveCalls ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002374
John McCalld935e9c2011-06-15 23:37:01 +00002375 // Insert the new retain and release calls.
2376 for (SmallPtrSet<Instruction *, 2>::const_iterator
2377 PI = ReleasesToMove.ReverseInsertPts.begin(),
2378 PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2379 Instruction *InsertPt = *PI;
2380 Value *MyArg = ArgTy == ParamTy ? Arg :
2381 new BitCastInst(Arg, ParamTy, "", InsertPt);
2382 CallInst *Call =
Michael Gottesmanba648592013-03-28 23:08:44 +00002383 CallInst::Create(getRetainCallee(M), MyArg, "", InsertPt);
John McCalld935e9c2011-06-15 23:37:01 +00002384 Call->setDoesNotThrow();
Michael Gottesmanba648592013-03-28 23:08:44 +00002385 Call->setTailCall();
Michael Gottesman60f6b282013-03-29 05:13:07 +00002386
Michael Gottesmandf110ac2013-04-21 00:30:50 +00002387 DEBUG(dbgs() << "Inserting new Retain: " << *Call << "\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00002388 "At insertion point: " << *InsertPt << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002389 }
2390 for (SmallPtrSet<Instruction *, 2>::const_iterator
2391 PI = RetainsToMove.ReverseInsertPts.begin(),
2392 PE = RetainsToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
Dan Gohman5c70fad2012-03-23 17:47:54 +00002393 Instruction *InsertPt = *PI;
2394 Value *MyArg = ArgTy == ParamTy ? Arg :
2395 new BitCastInst(Arg, ParamTy, "", InsertPt);
2396 CallInst *Call = CallInst::Create(getReleaseCallee(M), MyArg,
2397 "", InsertPt);
2398 // Attach a clang.imprecise_release metadata tag, if appropriate.
2399 if (MDNode *M = ReleasesToMove.ReleaseMetadata)
2400 Call->setMetadata(ImpreciseReleaseMDKind, M);
2401 Call->setDoesNotThrow();
2402 if (ReleasesToMove.IsTailCallRelease)
2403 Call->setTailCall();
Michael Gottesmanc189a392013-01-09 19:23:24 +00002404
Michael Gottesman89279f82013-04-05 18:10:41 +00002405 DEBUG(dbgs() << "Inserting new Release: " << *Call << "\n"
2406 "At insertion point: " << *InsertPt << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002407 }
2408
2409 // Delete the original retain and release calls.
2410 for (SmallPtrSet<Instruction *, 2>::const_iterator
2411 AI = RetainsToMove.Calls.begin(),
2412 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
2413 Instruction *OrigRetain = *AI;
2414 Retains.blot(OrigRetain);
2415 DeadInsts.push_back(OrigRetain);
Michael Gottesman89279f82013-04-05 18:10:41 +00002416 DEBUG(dbgs() << "Deleting retain: " << *OrigRetain << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002417 }
2418 for (SmallPtrSet<Instruction *, 2>::const_iterator
2419 AI = ReleasesToMove.Calls.begin(),
2420 AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) {
2421 Instruction *OrigRelease = *AI;
2422 Releases.erase(OrigRelease);
2423 DeadInsts.push_back(OrigRelease);
Michael Gottesman89279f82013-04-05 18:10:41 +00002424 DEBUG(dbgs() << "Deleting release: " << *OrigRelease << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002425 }
Michael Gottesman79249972013-04-05 23:46:45 +00002426
John McCalld935e9c2011-06-15 23:37:01 +00002427}
2428
Michael Gottesman9de6f962013-01-22 21:49:00 +00002429bool
2430ObjCARCOpt::ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState>
2431 &BBStates,
2432 MapVector<Value *, RRInfo> &Retains,
2433 DenseMap<Value *, RRInfo> &Releases,
2434 Module *M,
2435 SmallVector<Instruction *, 4> &NewRetains,
2436 SmallVector<Instruction *, 4> &NewReleases,
2437 SmallVector<Instruction *, 8> &DeadInsts,
2438 RRInfo &RetainsToMove,
2439 RRInfo &ReleasesToMove,
2440 Value *Arg,
2441 bool KnownSafe,
2442 bool &AnyPairsCompletelyEliminated) {
2443 // If a pair happens in a region where it is known that the reference count
2444 // is already incremented, we can similarly ignore possible decrements.
2445 bool KnownSafeTD = true, KnownSafeBU = true;
2446
2447 // Connect the dots between the top-down-collected RetainsToMove and
2448 // bottom-up-collected ReleasesToMove to form sets of related calls.
2449 // This is an iterative process so that we connect multiple releases
2450 // to multiple retains if needed.
2451 unsigned OldDelta = 0;
2452 unsigned NewDelta = 0;
2453 unsigned OldCount = 0;
2454 unsigned NewCount = 0;
2455 bool FirstRelease = true;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002456 for (;;) {
2457 for (SmallVectorImpl<Instruction *>::const_iterator
2458 NI = NewRetains.begin(), NE = NewRetains.end(); NI != NE; ++NI) {
2459 Instruction *NewRetain = *NI;
2460 MapVector<Value *, RRInfo>::const_iterator It = Retains.find(NewRetain);
2461 assert(It != Retains.end());
2462 const RRInfo &NewRetainRRI = It->second;
2463 KnownSafeTD &= NewRetainRRI.KnownSafe;
2464 for (SmallPtrSet<Instruction *, 2>::const_iterator
2465 LI = NewRetainRRI.Calls.begin(),
2466 LE = NewRetainRRI.Calls.end(); LI != LE; ++LI) {
2467 Instruction *NewRetainRelease = *LI;
2468 DenseMap<Value *, RRInfo>::const_iterator Jt =
2469 Releases.find(NewRetainRelease);
2470 if (Jt == Releases.end())
2471 return false;
2472 const RRInfo &NewRetainReleaseRRI = Jt->second;
2473 assert(NewRetainReleaseRRI.Calls.count(NewRetain));
2474 if (ReleasesToMove.Calls.insert(NewRetainRelease)) {
2475 OldDelta -=
2476 BBStates[NewRetainRelease->getParent()].GetAllPathCount();
2477
2478 // Merge the ReleaseMetadata and IsTailCallRelease values.
2479 if (FirstRelease) {
2480 ReleasesToMove.ReleaseMetadata =
2481 NewRetainReleaseRRI.ReleaseMetadata;
2482 ReleasesToMove.IsTailCallRelease =
2483 NewRetainReleaseRRI.IsTailCallRelease;
2484 FirstRelease = false;
2485 } else {
2486 if (ReleasesToMove.ReleaseMetadata !=
2487 NewRetainReleaseRRI.ReleaseMetadata)
2488 ReleasesToMove.ReleaseMetadata = 0;
2489 if (ReleasesToMove.IsTailCallRelease !=
2490 NewRetainReleaseRRI.IsTailCallRelease)
2491 ReleasesToMove.IsTailCallRelease = false;
2492 }
2493
2494 // Collect the optimal insertion points.
2495 if (!KnownSafe)
2496 for (SmallPtrSet<Instruction *, 2>::const_iterator
2497 RI = NewRetainReleaseRRI.ReverseInsertPts.begin(),
2498 RE = NewRetainReleaseRRI.ReverseInsertPts.end();
2499 RI != RE; ++RI) {
2500 Instruction *RIP = *RI;
2501 if (ReleasesToMove.ReverseInsertPts.insert(RIP))
2502 NewDelta -= BBStates[RIP->getParent()].GetAllPathCount();
2503 }
2504 NewReleases.push_back(NewRetainRelease);
2505 }
2506 }
2507 }
2508 NewRetains.clear();
2509 if (NewReleases.empty()) break;
2510
2511 // Back the other way.
2512 for (SmallVectorImpl<Instruction *>::const_iterator
2513 NI = NewReleases.begin(), NE = NewReleases.end(); NI != NE; ++NI) {
2514 Instruction *NewRelease = *NI;
2515 DenseMap<Value *, RRInfo>::const_iterator It =
2516 Releases.find(NewRelease);
2517 assert(It != Releases.end());
2518 const RRInfo &NewReleaseRRI = It->second;
2519 KnownSafeBU &= NewReleaseRRI.KnownSafe;
2520 for (SmallPtrSet<Instruction *, 2>::const_iterator
2521 LI = NewReleaseRRI.Calls.begin(),
2522 LE = NewReleaseRRI.Calls.end(); LI != LE; ++LI) {
2523 Instruction *NewReleaseRetain = *LI;
2524 MapVector<Value *, RRInfo>::const_iterator Jt =
2525 Retains.find(NewReleaseRetain);
2526 if (Jt == Retains.end())
2527 return false;
2528 const RRInfo &NewReleaseRetainRRI = Jt->second;
2529 assert(NewReleaseRetainRRI.Calls.count(NewRelease));
2530 if (RetainsToMove.Calls.insert(NewReleaseRetain)) {
2531 unsigned PathCount =
2532 BBStates[NewReleaseRetain->getParent()].GetAllPathCount();
2533 OldDelta += PathCount;
2534 OldCount += PathCount;
2535
Michael Gottesman9de6f962013-01-22 21:49:00 +00002536 // Collect the optimal insertion points.
2537 if (!KnownSafe)
2538 for (SmallPtrSet<Instruction *, 2>::const_iterator
2539 RI = NewReleaseRetainRRI.ReverseInsertPts.begin(),
2540 RE = NewReleaseRetainRRI.ReverseInsertPts.end();
2541 RI != RE; ++RI) {
2542 Instruction *RIP = *RI;
2543 if (RetainsToMove.ReverseInsertPts.insert(RIP)) {
2544 PathCount = BBStates[RIP->getParent()].GetAllPathCount();
2545 NewDelta += PathCount;
2546 NewCount += PathCount;
2547 }
2548 }
2549 NewRetains.push_back(NewReleaseRetain);
2550 }
2551 }
2552 }
2553 NewReleases.clear();
2554 if (NewRetains.empty()) break;
2555 }
2556
2557 // If the pointer is known incremented or nested, we can safely delete the
2558 // pair regardless of what's between them.
2559 if (KnownSafeTD || KnownSafeBU) {
2560 RetainsToMove.ReverseInsertPts.clear();
2561 ReleasesToMove.ReverseInsertPts.clear();
2562 NewCount = 0;
2563 } else {
2564 // Determine whether the new insertion points we computed preserve the
2565 // balance of retain and release calls through the program.
2566 // TODO: If the fully aggressive solution isn't valid, try to find a
2567 // less aggressive solution which is.
2568 if (NewDelta != 0)
2569 return false;
2570 }
2571
2572 // Determine whether the original call points are balanced in the retain and
2573 // release calls through the program. If not, conservatively don't touch
2574 // them.
2575 // TODO: It's theoretically possible to do code motion in this case, as
2576 // long as the existing imbalances are maintained.
2577 if (OldDelta != 0)
2578 return false;
2579
2580 Changed = true;
2581 assert(OldCount != 0 && "Unreachable code?");
2582 NumRRs += OldCount - NewCount;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002583 // Set to true if we completely removed any RR pairs.
Michael Gottesman8b5515f2013-01-22 21:53:43 +00002584 AnyPairsCompletelyEliminated = NewCount == 0;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002585
2586 // We can move calls!
2587 return true;
2588}
2589
Michael Gottesman97e3df02013-01-14 00:35:14 +00002590/// Identify pairings between the retains and releases, and delete and/or move
2591/// them.
John McCalld935e9c2011-06-15 23:37:01 +00002592bool
2593ObjCARCOpt::PerformCodePlacement(DenseMap<const BasicBlock *, BBState>
2594 &BBStates,
2595 MapVector<Value *, RRInfo> &Retains,
Dan Gohman6320f522011-07-22 22:29:21 +00002596 DenseMap<Value *, RRInfo> &Releases,
2597 Module *M) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002598 DEBUG(dbgs() << "\n== ObjCARCOpt::PerformCodePlacement ==\n");
2599
John McCalld935e9c2011-06-15 23:37:01 +00002600 bool AnyPairsCompletelyEliminated = false;
2601 RRInfo RetainsToMove;
2602 RRInfo ReleasesToMove;
2603 SmallVector<Instruction *, 4> NewRetains;
2604 SmallVector<Instruction *, 4> NewReleases;
2605 SmallVector<Instruction *, 8> DeadInsts;
2606
Dan Gohman670f9372012-04-13 18:57:48 +00002607 // Visit each retain.
John McCalld935e9c2011-06-15 23:37:01 +00002608 for (MapVector<Value *, RRInfo>::const_iterator I = Retains.begin(),
Dan Gohman2053a5d2011-09-29 22:25:23 +00002609 E = Retains.end(); I != E; ++I) {
2610 Value *V = I->first;
John McCalld935e9c2011-06-15 23:37:01 +00002611 if (!V) continue; // blotted
2612
2613 Instruction *Retain = cast<Instruction>(V);
Michael Gottesmanc189a392013-01-09 19:23:24 +00002614
Michael Gottesman89279f82013-04-05 18:10:41 +00002615 DEBUG(dbgs() << "Visiting: " << *Retain << "\n");
Michael Gottesmanc189a392013-01-09 19:23:24 +00002616
John McCalld935e9c2011-06-15 23:37:01 +00002617 Value *Arg = GetObjCArg(Retain);
2618
Dan Gohman728db492012-01-13 00:39:07 +00002619 // If the object being released is in static or stack storage, we know it's
John McCalld935e9c2011-06-15 23:37:01 +00002620 // not being managed by ObjC reference counting, so we can delete pairs
2621 // regardless of what possible decrements or uses lie between them.
Dan Gohman728db492012-01-13 00:39:07 +00002622 bool KnownSafe = isa<Constant>(Arg) || isa<AllocaInst>(Arg);
Dan Gohman41375a32012-05-08 23:39:44 +00002623
Dan Gohman56e1cef2011-08-22 17:29:11 +00002624 // A constant pointer can't be pointing to an object on the heap. It may
2625 // be reference-counted, but it won't be deleted.
2626 if (const LoadInst *LI = dyn_cast<LoadInst>(Arg))
2627 if (const GlobalVariable *GV =
2628 dyn_cast<GlobalVariable>(
2629 StripPointerCastsAndObjCCalls(LI->getPointerOperand())))
2630 if (GV->isConstant())
2631 KnownSafe = true;
2632
John McCalld935e9c2011-06-15 23:37:01 +00002633 // Connect the dots between the top-down-collected RetainsToMove and
2634 // bottom-up-collected ReleasesToMove to form sets of related calls.
John McCalld935e9c2011-06-15 23:37:01 +00002635 NewRetains.push_back(Retain);
Michael Gottesman9de6f962013-01-22 21:49:00 +00002636 bool PerformMoveCalls =
2637 ConnectTDBUTraversals(BBStates, Retains, Releases, M, NewRetains,
2638 NewReleases, DeadInsts, RetainsToMove,
2639 ReleasesToMove, Arg, KnownSafe,
2640 AnyPairsCompletelyEliminated);
John McCalld935e9c2011-06-15 23:37:01 +00002641
Michael Gottesman81b1d432013-03-26 00:42:04 +00002642#ifdef ARC_ANNOTATIONS
2643 // Do not move calls if ARC annotations are requested. If we were to move
2644 // calls in this case, we would not be able
2645 PerformMoveCalls = PerformMoveCalls && !EnableARCAnnotations;
2646#endif // ARC_ANNOTATIONS
2647
Michael Gottesman9de6f962013-01-22 21:49:00 +00002648 if (PerformMoveCalls) {
2649 // Ok, everything checks out and we're all set. Let's move/delete some
2650 // code!
2651 MoveCalls(Arg, RetainsToMove, ReleasesToMove,
2652 Retains, Releases, DeadInsts, M);
John McCalld935e9c2011-06-15 23:37:01 +00002653 }
2654
Michael Gottesman9de6f962013-01-22 21:49:00 +00002655 // Clean up state for next retain.
John McCalld935e9c2011-06-15 23:37:01 +00002656 NewReleases.clear();
2657 NewRetains.clear();
2658 RetainsToMove.clear();
2659 ReleasesToMove.clear();
2660 }
2661
2662 // Now that we're done moving everything, we can delete the newly dead
2663 // instructions, as we no longer need them as insert points.
2664 while (!DeadInsts.empty())
2665 EraseInstruction(DeadInsts.pop_back_val());
2666
2667 return AnyPairsCompletelyEliminated;
2668}
2669
Michael Gottesman97e3df02013-01-14 00:35:14 +00002670/// Weak pointer optimizations.
John McCalld935e9c2011-06-15 23:37:01 +00002671void ObjCARCOpt::OptimizeWeakCalls(Function &F) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002672 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeWeakCalls ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002673
John McCalld935e9c2011-06-15 23:37:01 +00002674 // First, do memdep-style RLE and S2L optimizations. We can't use memdep
2675 // itself because it uses AliasAnalysis and we need to do provenance
2676 // queries instead.
2677 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2678 Instruction *Inst = &*I++;
Michael Gottesman3f146e22013-01-01 16:05:48 +00002679
Michael Gottesman89279f82013-04-05 18:10:41 +00002680 DEBUG(dbgs() << "Visiting: " << *Inst << "\n");
Michael Gottesman3f146e22013-01-01 16:05:48 +00002681
John McCalld935e9c2011-06-15 23:37:01 +00002682 InstructionClass Class = GetBasicInstructionClass(Inst);
2683 if (Class != IC_LoadWeak && Class != IC_LoadWeakRetained)
2684 continue;
2685
2686 // Delete objc_loadWeak calls with no users.
2687 if (Class == IC_LoadWeak && Inst->use_empty()) {
2688 Inst->eraseFromParent();
2689 continue;
2690 }
2691
2692 // TODO: For now, just look for an earlier available version of this value
2693 // within the same block. Theoretically, we could do memdep-style non-local
2694 // analysis too, but that would want caching. A better approach would be to
2695 // use the technique that EarlyCSE uses.
2696 inst_iterator Current = llvm::prior(I);
2697 BasicBlock *CurrentBB = Current.getBasicBlockIterator();
2698 for (BasicBlock::iterator B = CurrentBB->begin(),
2699 J = Current.getInstructionIterator();
2700 J != B; --J) {
2701 Instruction *EarlierInst = &*llvm::prior(J);
2702 InstructionClass EarlierClass = GetInstructionClass(EarlierInst);
2703 switch (EarlierClass) {
2704 case IC_LoadWeak:
2705 case IC_LoadWeakRetained: {
2706 // If this is loading from the same pointer, replace this load's value
2707 // with that one.
2708 CallInst *Call = cast<CallInst>(Inst);
2709 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2710 Value *Arg = Call->getArgOperand(0);
2711 Value *EarlierArg = EarlierCall->getArgOperand(0);
2712 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2713 case AliasAnalysis::MustAlias:
2714 Changed = true;
2715 // If the load has a builtin retain, insert a plain retain for it.
2716 if (Class == IC_LoadWeakRetained) {
2717 CallInst *CI =
2718 CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
2719 "", Call);
2720 CI->setTailCall();
2721 }
2722 // Zap the fully redundant load.
2723 Call->replaceAllUsesWith(EarlierCall);
2724 Call->eraseFromParent();
2725 goto clobbered;
2726 case AliasAnalysis::MayAlias:
2727 case AliasAnalysis::PartialAlias:
2728 goto clobbered;
2729 case AliasAnalysis::NoAlias:
2730 break;
2731 }
2732 break;
2733 }
2734 case IC_StoreWeak:
2735 case IC_InitWeak: {
2736 // If this is storing to the same pointer and has the same size etc.
2737 // replace this load's value with the stored value.
2738 CallInst *Call = cast<CallInst>(Inst);
2739 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2740 Value *Arg = Call->getArgOperand(0);
2741 Value *EarlierArg = EarlierCall->getArgOperand(0);
2742 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2743 case AliasAnalysis::MustAlias:
2744 Changed = true;
2745 // If the load has a builtin retain, insert a plain retain for it.
2746 if (Class == IC_LoadWeakRetained) {
2747 CallInst *CI =
2748 CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
2749 "", Call);
2750 CI->setTailCall();
2751 }
2752 // Zap the fully redundant load.
2753 Call->replaceAllUsesWith(EarlierCall->getArgOperand(1));
2754 Call->eraseFromParent();
2755 goto clobbered;
2756 case AliasAnalysis::MayAlias:
2757 case AliasAnalysis::PartialAlias:
2758 goto clobbered;
2759 case AliasAnalysis::NoAlias:
2760 break;
2761 }
2762 break;
2763 }
2764 case IC_MoveWeak:
2765 case IC_CopyWeak:
2766 // TOOD: Grab the copied value.
2767 goto clobbered;
2768 case IC_AutoreleasepoolPush:
2769 case IC_None:
John McCall20182ac2013-03-22 21:38:36 +00002770 case IC_IntrinsicUser:
John McCalld935e9c2011-06-15 23:37:01 +00002771 case IC_User:
2772 // Weak pointers are only modified through the weak entry points
2773 // (and arbitrary calls, which could call the weak entry points).
2774 break;
2775 default:
2776 // Anything else could modify the weak pointer.
2777 goto clobbered;
2778 }
2779 }
2780 clobbered:;
2781 }
2782
2783 // Then, for each destroyWeak with an alloca operand, check to see if
2784 // the alloca and all its users can be zapped.
2785 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2786 Instruction *Inst = &*I++;
2787 InstructionClass Class = GetBasicInstructionClass(Inst);
2788 if (Class != IC_DestroyWeak)
2789 continue;
2790
2791 CallInst *Call = cast<CallInst>(Inst);
2792 Value *Arg = Call->getArgOperand(0);
2793 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
2794 for (Value::use_iterator UI = Alloca->use_begin(),
2795 UE = Alloca->use_end(); UI != UE; ++UI) {
Dan Gohmandae33492012-04-27 18:56:31 +00002796 const Instruction *UserInst = cast<Instruction>(*UI);
John McCalld935e9c2011-06-15 23:37:01 +00002797 switch (GetBasicInstructionClass(UserInst)) {
2798 case IC_InitWeak:
2799 case IC_StoreWeak:
2800 case IC_DestroyWeak:
2801 continue;
2802 default:
2803 goto done;
2804 }
2805 }
2806 Changed = true;
2807 for (Value::use_iterator UI = Alloca->use_begin(),
2808 UE = Alloca->use_end(); UI != UE; ) {
2809 CallInst *UserInst = cast<CallInst>(*UI++);
Dan Gohman14862c32012-05-18 22:17:29 +00002810 switch (GetBasicInstructionClass(UserInst)) {
2811 case IC_InitWeak:
2812 case IC_StoreWeak:
2813 // These functions return their second argument.
2814 UserInst->replaceAllUsesWith(UserInst->getArgOperand(1));
2815 break;
2816 case IC_DestroyWeak:
2817 // No return value.
2818 break;
2819 default:
Dan Gohman9c97eea02012-05-21 17:41:28 +00002820 llvm_unreachable("alloca really is used!");
Dan Gohman14862c32012-05-18 22:17:29 +00002821 }
John McCalld935e9c2011-06-15 23:37:01 +00002822 UserInst->eraseFromParent();
2823 }
2824 Alloca->eraseFromParent();
2825 done:;
2826 }
2827 }
2828}
2829
Michael Gottesman97e3df02013-01-14 00:35:14 +00002830/// Identify program paths which execute sequences of retains and releases which
2831/// can be eliminated.
John McCalld935e9c2011-06-15 23:37:01 +00002832bool ObjCARCOpt::OptimizeSequences(Function &F) {
2833 /// Releases, Retains - These are used to store the results of the main flow
2834 /// analysis. These use Value* as the key instead of Instruction* so that the
2835 /// map stays valid when we get around to rewriting code and calls get
2836 /// replaced by arguments.
2837 DenseMap<Value *, RRInfo> Releases;
2838 MapVector<Value *, RRInfo> Retains;
2839
Michael Gottesman97e3df02013-01-14 00:35:14 +00002840 /// This is used during the traversal of the function to track the
John McCalld935e9c2011-06-15 23:37:01 +00002841 /// states for each identified object at each block.
2842 DenseMap<const BasicBlock *, BBState> BBStates;
2843
2844 // Analyze the CFG of the function, and all instructions.
2845 bool NestingDetected = Visit(F, BBStates, Retains, Releases);
2846
2847 // Transform.
Dan Gohman6320f522011-07-22 22:29:21 +00002848 return PerformCodePlacement(BBStates, Retains, Releases, F.getParent()) &&
2849 NestingDetected;
John McCalld935e9c2011-06-15 23:37:01 +00002850}
2851
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002852/// Check if there is a dependent call earlier that does not have anything in
2853/// between the Retain and the call that can affect the reference count of their
2854/// shared pointer argument. Note that Retain need not be in BB.
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002855static bool
2856HasSafePathToPredecessorCall(const Value *Arg, Instruction *Retain,
2857 SmallPtrSet<Instruction *, 4> &DepInsts,
2858 SmallPtrSet<const BasicBlock *, 4> &Visited,
2859 ProvenanceAnalysis &PA) {
2860 FindDependencies(CanChangeRetainCount, Arg, Retain->getParent(), Retain,
2861 DepInsts, Visited, PA);
2862 if (DepInsts.size() != 1)
2863 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002864
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002865 CallInst *Call =
2866 dyn_cast_or_null<CallInst>(*DepInsts.begin());
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002867
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002868 // Check that the pointer is the return value of the call.
2869 if (!Call || Arg != Call)
2870 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002871
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002872 // Check that the call is a regular call.
2873 InstructionClass Class = GetBasicInstructionClass(Call);
2874 if (Class != IC_CallOrUser && Class != IC_Call)
2875 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002876
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002877 return true;
2878}
2879
Michael Gottesman6908db12013-04-03 23:16:05 +00002880/// Find a dependent retain that precedes the given autorelease for which there
2881/// is nothing in between the two instructions that can affect the ref count of
2882/// Arg.
2883static CallInst *
2884FindPredecessorRetainWithSafePath(const Value *Arg, BasicBlock *BB,
2885 Instruction *Autorelease,
2886 SmallPtrSet<Instruction *, 4> &DepInsts,
2887 SmallPtrSet<const BasicBlock *, 4> &Visited,
2888 ProvenanceAnalysis &PA) {
2889 FindDependencies(CanChangeRetainCount, Arg,
2890 BB, Autorelease, DepInsts, Visited, PA);
2891 if (DepInsts.size() != 1)
2892 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002893
Michael Gottesman6908db12013-04-03 23:16:05 +00002894 CallInst *Retain =
2895 dyn_cast_or_null<CallInst>(*DepInsts.begin());
Michael Gottesman79249972013-04-05 23:46:45 +00002896
Michael Gottesman6908db12013-04-03 23:16:05 +00002897 // Check that we found a retain with the same argument.
2898 if (!Retain ||
2899 !IsRetain(GetBasicInstructionClass(Retain)) ||
2900 GetObjCArg(Retain) != Arg) {
2901 return 0;
2902 }
Michael Gottesman79249972013-04-05 23:46:45 +00002903
Michael Gottesman6908db12013-04-03 23:16:05 +00002904 return Retain;
2905}
2906
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002907/// Look for an ``autorelease'' instruction dependent on Arg such that there are
2908/// no instructions dependent on Arg that need a positive ref count in between
2909/// the autorelease and the ret.
2910static CallInst *
2911FindPredecessorAutoreleaseWithSafePath(const Value *Arg, BasicBlock *BB,
2912 ReturnInst *Ret,
2913 SmallPtrSet<Instruction *, 4> &DepInsts,
2914 SmallPtrSet<const BasicBlock *, 4> &V,
2915 ProvenanceAnalysis &PA) {
2916 FindDependencies(NeedsPositiveRetainCount, Arg,
2917 BB, Ret, DepInsts, V, PA);
2918 if (DepInsts.size() != 1)
2919 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002920
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002921 CallInst *Autorelease =
2922 dyn_cast_or_null<CallInst>(*DepInsts.begin());
2923 if (!Autorelease)
2924 return 0;
2925 InstructionClass AutoreleaseClass = GetBasicInstructionClass(Autorelease);
2926 if (!IsAutorelease(AutoreleaseClass))
2927 return 0;
2928 if (GetObjCArg(Autorelease) != Arg)
2929 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002930
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002931 return Autorelease;
2932}
2933
Michael Gottesman97e3df02013-01-14 00:35:14 +00002934/// Look for this pattern:
Dmitri Gribenko5485acd2012-09-14 14:57:36 +00002935/// \code
John McCalld935e9c2011-06-15 23:37:01 +00002936/// %call = call i8* @something(...)
2937/// %2 = call i8* @objc_retain(i8* %call)
2938/// %3 = call i8* @objc_autorelease(i8* %2)
2939/// ret i8* %3
Dmitri Gribenko5485acd2012-09-14 14:57:36 +00002940/// \endcode
John McCalld935e9c2011-06-15 23:37:01 +00002941/// And delete the retain and autorelease.
John McCalld935e9c2011-06-15 23:37:01 +00002942void ObjCARCOpt::OptimizeReturns(Function &F) {
2943 if (!F.getReturnType()->isPointerTy())
2944 return;
Michael Gottesman79249972013-04-05 23:46:45 +00002945
Michael Gottesman89279f82013-04-05 18:10:41 +00002946 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeReturns ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002947
John McCalld935e9c2011-06-15 23:37:01 +00002948 SmallPtrSet<Instruction *, 4> DependingInstructions;
2949 SmallPtrSet<const BasicBlock *, 4> Visited;
2950 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
2951 BasicBlock *BB = FI;
2952 ReturnInst *Ret = dyn_cast<ReturnInst>(&BB->back());
Michael Gottesman3f146e22013-01-01 16:05:48 +00002953
Michael Gottesman89279f82013-04-05 18:10:41 +00002954 DEBUG(dbgs() << "Visiting: " << *Ret << "\n");
Michael Gottesman3f146e22013-01-01 16:05:48 +00002955
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002956 if (!Ret)
2957 continue;
Michael Gottesman79249972013-04-05 23:46:45 +00002958
John McCalld935e9c2011-06-15 23:37:01 +00002959 const Value *Arg = StripPointerCastsAndObjCCalls(Ret->getOperand(0));
Michael Gottesman79249972013-04-05 23:46:45 +00002960
Michael Gottesmancdb7c152013-04-21 00:25:04 +00002961 // Look for an ``autorelease'' instruction that is a predecessor of Ret and
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002962 // dependent on Arg such that there are no instructions dependent on Arg
2963 // that need a positive ref count in between the autorelease and Ret.
2964 CallInst *Autorelease =
2965 FindPredecessorAutoreleaseWithSafePath(Arg, BB, Ret,
2966 DependingInstructions, Visited,
2967 PA);
John McCalld935e9c2011-06-15 23:37:01 +00002968 DependingInstructions.clear();
2969 Visited.clear();
Michael Gottesmanfb9ece92013-04-21 00:25:01 +00002970
2971 if (!Autorelease)
2972 continue;
2973
2974 CallInst *Retain =
2975 FindPredecessorRetainWithSafePath(Arg, BB, Autorelease,
2976 DependingInstructions, Visited, PA);
2977 DependingInstructions.clear();
2978 Visited.clear();
2979
2980 if (!Retain)
2981 continue;
2982
2983 // Check that there is nothing that can affect the reference count
2984 // between the retain and the call. Note that Retain need not be in BB.
2985 bool HasSafePathToCall = HasSafePathToPredecessorCall(Arg, Retain,
2986 DependingInstructions,
2987 Visited, PA);
2988 DependingInstructions.clear();
2989 Visited.clear();
2990
2991 if (!HasSafePathToCall)
2992 continue;
2993
2994 // If so, we can zap the retain and autorelease.
2995 Changed = true;
2996 ++NumRets;
2997 DEBUG(dbgs() << "Erasing: " << *Retain << "\nErasing: "
2998 << *Autorelease << "\n");
2999 EraseInstruction(Retain);
3000 EraseInstruction(Autorelease);
John McCalld935e9c2011-06-15 23:37:01 +00003001 }
3002}
3003
3004bool ObjCARCOpt::doInitialization(Module &M) {
3005 if (!EnableARCOpts)
3006 return false;
3007
Dan Gohman670f9372012-04-13 18:57:48 +00003008 // If nothing in the Module uses ARC, don't do anything.
Dan Gohmanceaac7c2011-06-20 23:20:43 +00003009 Run = ModuleHasARC(M);
3010 if (!Run)
3011 return false;
3012
John McCalld935e9c2011-06-15 23:37:01 +00003013 // Identify the imprecise release metadata kind.
3014 ImpreciseReleaseMDKind =
3015 M.getContext().getMDKindID("clang.imprecise_release");
Dan Gohmana7107f92011-10-17 22:53:25 +00003016 CopyOnEscapeMDKind =
3017 M.getContext().getMDKindID("clang.arc.copy_on_escape");
Dan Gohman0155f302012-02-17 18:59:53 +00003018 NoObjCARCExceptionsMDKind =
3019 M.getContext().getMDKindID("clang.arc.no_objc_arc_exceptions");
Michael Gottesman81b1d432013-03-26 00:42:04 +00003020#ifdef ARC_ANNOTATIONS
3021 ARCAnnotationBottomUpMDKind =
3022 M.getContext().getMDKindID("llvm.arc.annotation.bottomup");
3023 ARCAnnotationTopDownMDKind =
3024 M.getContext().getMDKindID("llvm.arc.annotation.topdown");
3025 ARCAnnotationProvenanceSourceMDKind =
3026 M.getContext().getMDKindID("llvm.arc.annotation.provenancesource");
3027#endif // ARC_ANNOTATIONS
John McCalld935e9c2011-06-15 23:37:01 +00003028
John McCalld935e9c2011-06-15 23:37:01 +00003029 // Intuitively, objc_retain and others are nocapture, however in practice
3030 // they are not, because they return their argument value. And objc_release
Dan Gohmandae33492012-04-27 18:56:31 +00003031 // calls finalizers which can have arbitrary side effects.
John McCalld935e9c2011-06-15 23:37:01 +00003032
3033 // These are initialized lazily.
3034 RetainRVCallee = 0;
3035 AutoreleaseRVCallee = 0;
3036 ReleaseCallee = 0;
3037 RetainCallee = 0;
Dan Gohman6320f522011-07-22 22:29:21 +00003038 RetainBlockCallee = 0;
John McCalld935e9c2011-06-15 23:37:01 +00003039 AutoreleaseCallee = 0;
3040
3041 return false;
3042}
3043
3044bool ObjCARCOpt::runOnFunction(Function &F) {
3045 if (!EnableARCOpts)
3046 return false;
3047
Dan Gohmanceaac7c2011-06-20 23:20:43 +00003048 // If nothing in the Module uses ARC, don't do anything.
3049 if (!Run)
3050 return false;
3051
John McCalld935e9c2011-06-15 23:37:01 +00003052 Changed = false;
3053
Michael Gottesman89279f82013-04-05 18:10:41 +00003054 DEBUG(dbgs() << "<<< ObjCARCOpt: Visiting Function: " << F.getName() << " >>>"
3055 "\n");
Michael Gottesmanb24bdef2013-01-12 02:57:16 +00003056
John McCalld935e9c2011-06-15 23:37:01 +00003057 PA.setAA(&getAnalysis<AliasAnalysis>());
3058
3059 // This pass performs several distinct transformations. As a compile-time aid
3060 // when compiling code that isn't ObjC, skip these if the relevant ObjC
3061 // library functions aren't declared.
3062
3063 // Preliminary optimizations. This also computs UsedInThisFunction.
3064 OptimizeIndividualCalls(F);
3065
3066 // Optimizations for weak pointers.
3067 if (UsedInThisFunction & ((1 << IC_LoadWeak) |
3068 (1 << IC_LoadWeakRetained) |
3069 (1 << IC_StoreWeak) |
3070 (1 << IC_InitWeak) |
3071 (1 << IC_CopyWeak) |
3072 (1 << IC_MoveWeak) |
3073 (1 << IC_DestroyWeak)))
3074 OptimizeWeakCalls(F);
3075
3076 // Optimizations for retain+release pairs.
3077 if (UsedInThisFunction & ((1 << IC_Retain) |
3078 (1 << IC_RetainRV) |
3079 (1 << IC_RetainBlock)))
3080 if (UsedInThisFunction & (1 << IC_Release))
3081 // Run OptimizeSequences until it either stops making changes or
3082 // no retain+release pair nesting is detected.
3083 while (OptimizeSequences(F)) {}
3084
3085 // Optimizations if objc_autorelease is used.
Dan Gohman41375a32012-05-08 23:39:44 +00003086 if (UsedInThisFunction & ((1 << IC_Autorelease) |
3087 (1 << IC_AutoreleaseRV)))
John McCalld935e9c2011-06-15 23:37:01 +00003088 OptimizeReturns(F);
3089
Michael Gottesmanb24bdef2013-01-12 02:57:16 +00003090 DEBUG(dbgs() << "\n");
3091
John McCalld935e9c2011-06-15 23:37:01 +00003092 return Changed;
3093}
3094
3095void ObjCARCOpt::releaseMemory() {
3096 PA.clear();
3097}
3098
Michael Gottesman97e3df02013-01-14 00:35:14 +00003099/// @}
3100///