blob: b5ef1c9cd680d3be92500b67b29b2e950761fc16 [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 Gottesman14acfac2013-07-06 01:39:23 +000029#include "ARCRuntimeEntryPoints.h"
Michael Gottesman278266f2013-01-29 04:20:52 +000030#include "DependencyAnalysis.h"
Michael Gottesman294e7da2013-01-28 05:51:54 +000031#include "ObjCARCAliasAnalysis.h"
Michael Gottesman778138e2013-01-29 03:03:03 +000032#include "ProvenanceAnalysis.h"
John McCalld935e9c2011-06-15 23:37:01 +000033#include "llvm/ADT/DenseMap.h"
Michael Gottesman5a91bbf2013-05-24 20:44:02 +000034#include "llvm/ADT/DenseSet.h"
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000035#include "llvm/ADT/STLExtras.h"
Michael Gottesman778138e2013-01-29 03:03:03 +000036#include "llvm/ADT/SmallPtrSet.h"
Michael Gottesman278266f2013-01-29 04:20:52 +000037#include "llvm/ADT/Statistic.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000038#include "llvm/IR/CFG.h"
Michael Gottesmancd4de0f2013-03-26 00:42:09 +000039#include "llvm/IR/IRBuilder.h"
Michael Gottesman278266f2013-01-29 04:20:52 +000040#include "llvm/IR/LLVMContext.h"
Michael Gottesman13a5f1a2013-01-29 04:51:59 +000041#include "llvm/Support/Debug.h"
Timur Iskhodzhanov5d7ff002013-01-29 09:09:27 +000042#include "llvm/Support/raw_ostream.h"
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000043
John McCalld935e9c2011-06-15 23:37:01 +000044using namespace llvm;
Michael Gottesman08904e32013-01-28 03:28:38 +000045using namespace llvm::objcarc;
John McCalld935e9c2011-06-15 23:37:01 +000046
Michael Gottesman97e3df02013-01-14 00:35:14 +000047/// \defgroup MiscUtils Miscellaneous utilities that are not ARC specific.
48/// @{
John McCalld935e9c2011-06-15 23:37:01 +000049
50namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +000051 /// \brief An associative container with fast insertion-order (deterministic)
52 /// iteration over its elements. Plus the special blot operation.
John McCalld935e9c2011-06-15 23:37:01 +000053 template<class KeyT, class ValueT>
54 class MapVector {
Michael Gottesman97e3df02013-01-14 00:35:14 +000055 /// Map keys to indices in Vector.
John McCalld935e9c2011-06-15 23:37:01 +000056 typedef DenseMap<KeyT, size_t> MapTy;
57 MapTy Map;
58
John McCalld935e9c2011-06-15 23:37:01 +000059 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
Michael Gottesman97e3df02013-01-14 00:35:14 +000060 /// Keys and values.
John McCalld935e9c2011-06-15 23:37:01 +000061 VectorTy Vector;
62
63 public:
64 typedef typename VectorTy::iterator iterator;
65 typedef typename VectorTy::const_iterator const_iterator;
66 iterator begin() { return Vector.begin(); }
67 iterator end() { return Vector.end(); }
68 const_iterator begin() const { return Vector.begin(); }
69 const_iterator end() const { return Vector.end(); }
70
71#ifdef XDEBUG
72 ~MapVector() {
73 assert(Vector.size() >= Map.size()); // May differ due to blotting.
74 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end();
75 I != E; ++I) {
76 assert(I->second < Vector.size());
77 assert(Vector[I->second].first == I->first);
78 }
79 for (typename VectorTy::const_iterator I = Vector.begin(),
80 E = Vector.end(); I != E; ++I)
81 assert(!I->first ||
82 (Map.count(I->first) &&
83 Map[I->first] == size_t(I - Vector.begin())));
84 }
85#endif
86
Dan Gohman55b06742012-03-02 01:13:53 +000087 ValueT &operator[](const KeyT &Arg) {
John McCalld935e9c2011-06-15 23:37:01 +000088 std::pair<typename MapTy::iterator, bool> Pair =
89 Map.insert(std::make_pair(Arg, size_t(0)));
90 if (Pair.second) {
Dan Gohman55b06742012-03-02 01:13:53 +000091 size_t Num = Vector.size();
92 Pair.first->second = Num;
John McCalld935e9c2011-06-15 23:37:01 +000093 Vector.push_back(std::make_pair(Arg, ValueT()));
Dan Gohman55b06742012-03-02 01:13:53 +000094 return Vector[Num].second;
John McCalld935e9c2011-06-15 23:37:01 +000095 }
96 return Vector[Pair.first->second].second;
97 }
98
99 std::pair<iterator, bool>
100 insert(const std::pair<KeyT, ValueT> &InsertPair) {
101 std::pair<typename MapTy::iterator, bool> Pair =
102 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
103 if (Pair.second) {
Dan Gohman55b06742012-03-02 01:13:53 +0000104 size_t Num = Vector.size();
105 Pair.first->second = Num;
John McCalld935e9c2011-06-15 23:37:01 +0000106 Vector.push_back(InsertPair);
Dan Gohman55b06742012-03-02 01:13:53 +0000107 return std::make_pair(Vector.begin() + Num, true);
John McCalld935e9c2011-06-15 23:37:01 +0000108 }
109 return std::make_pair(Vector.begin() + Pair.first->second, false);
110 }
111
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000112 iterator find(const KeyT &Key) {
113 typename MapTy::iterator It = Map.find(Key);
114 if (It == Map.end()) return Vector.end();
115 return Vector.begin() + It->second;
116 }
117
Dan Gohman55b06742012-03-02 01:13:53 +0000118 const_iterator find(const KeyT &Key) const {
John McCalld935e9c2011-06-15 23:37:01 +0000119 typename MapTy::const_iterator It = Map.find(Key);
120 if (It == Map.end()) return Vector.end();
121 return Vector.begin() + It->second;
122 }
123
Michael Gottesman97e3df02013-01-14 00:35:14 +0000124 /// This is similar to erase, but instead of removing the element from the
125 /// vector, it just zeros out the key in the vector. This leaves iterators
126 /// intact, but clients must be prepared for zeroed-out keys when iterating.
Dan Gohman55b06742012-03-02 01:13:53 +0000127 void blot(const KeyT &Key) {
John McCalld935e9c2011-06-15 23:37:01 +0000128 typename MapTy::iterator It = Map.find(Key);
129 if (It == Map.end()) return;
130 Vector[It->second].first = KeyT();
131 Map.erase(It);
132 }
133
134 void clear() {
135 Map.clear();
136 Vector.clear();
137 }
138 };
139}
140
Michael Gottesman97e3df02013-01-14 00:35:14 +0000141/// @}
142///
143/// \defgroup ARCUtilities Utility declarations/definitions specific to ARC.
144/// @{
John McCalld935e9c2011-06-15 23:37:01 +0000145
Michael Gottesman97e3df02013-01-14 00:35:14 +0000146/// \brief This is similar to StripPointerCastsAndObjCCalls but it stops as soon
147/// as it finds a value with multiple uses.
John McCalld935e9c2011-06-15 23:37:01 +0000148static const Value *FindSingleUseIdentifiedObject(const Value *Arg) {
149 if (Arg->hasOneUse()) {
150 if (const BitCastInst *BC = dyn_cast<BitCastInst>(Arg))
151 return FindSingleUseIdentifiedObject(BC->getOperand(0));
152 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Arg))
153 if (GEP->hasAllZeroIndices())
154 return FindSingleUseIdentifiedObject(GEP->getPointerOperand());
155 if (IsForwarding(GetBasicInstructionClass(Arg)))
156 return FindSingleUseIdentifiedObject(
157 cast<CallInst>(Arg)->getArgOperand(0));
158 if (!IsObjCIdentifiedObject(Arg))
159 return 0;
160 return Arg;
161 }
162
Dan Gohman41375a32012-05-08 23:39:44 +0000163 // If we found an identifiable object but it has multiple uses, but they are
164 // trivial uses, we can still consider this to be a single-use value.
John McCalld935e9c2011-06-15 23:37:01 +0000165 if (IsObjCIdentifiedObject(Arg)) {
166 for (Value::const_use_iterator UI = Arg->use_begin(), UE = Arg->use_end();
167 UI != UE; ++UI) {
168 const User *U = *UI;
169 if (!U->use_empty() || StripPointerCastsAndObjCCalls(U) != Arg)
170 return 0;
171 }
172
173 return Arg;
174 }
175
176 return 0;
177}
178
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000179/// This is a wrapper around getUnderlyingObjCPtr along the lines of
180/// GetUnderlyingObjects except that it returns early when it sees the first
181/// alloca.
182static inline bool AreAnyUnderlyingObjectsAnAlloca(const Value *V) {
183 SmallPtrSet<const Value *, 4> Visited;
184 SmallVector<const Value *, 4> Worklist;
185 Worklist.push_back(V);
186 do {
187 const Value *P = Worklist.pop_back_val();
188 P = GetUnderlyingObjCPtr(P);
Michael Gottesman0c8b5622013-05-14 06:40:10 +0000189
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000190 if (isa<AllocaInst>(P))
191 return true;
Michael Gottesman0c8b5622013-05-14 06:40:10 +0000192
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000193 if (!Visited.insert(P))
194 continue;
Michael Gottesman0c8b5622013-05-14 06:40:10 +0000195
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000196 if (const SelectInst *SI = dyn_cast<const SelectInst>(P)) {
197 Worklist.push_back(SI->getTrueValue());
198 Worklist.push_back(SI->getFalseValue());
199 continue;
200 }
Michael Gottesman0c8b5622013-05-14 06:40:10 +0000201
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000202 if (const PHINode *PN = dyn_cast<const PHINode>(P)) {
203 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
204 Worklist.push_back(PN->getIncomingValue(i));
205 continue;
206 }
207 } while (!Worklist.empty());
208
209 return false;
210}
211
212
Michael Gottesman97e3df02013-01-14 00:35:14 +0000213/// @}
214///
Michael Gottesman97e3df02013-01-14 00:35:14 +0000215/// \defgroup ARCOpt ARC Optimization.
216/// @{
John McCalld935e9c2011-06-15 23:37:01 +0000217
218// TODO: On code like this:
219//
220// objc_retain(%x)
221// stuff_that_cannot_release()
222// objc_autorelease(%x)
223// stuff_that_cannot_release()
224// objc_retain(%x)
225// stuff_that_cannot_release()
226// objc_autorelease(%x)
227//
228// The second retain and autorelease can be deleted.
229
230// TODO: It should be possible to delete
231// objc_autoreleasePoolPush and objc_autoreleasePoolPop
232// pairs if nothing is actually autoreleased between them. Also, autorelease
233// calls followed by objc_autoreleasePoolPop calls (perhaps in ObjC++ code
234// after inlining) can be turned into plain release calls.
235
236// TODO: Critical-edge splitting. If the optimial insertion point is
237// a critical edge, the current algorithm has to fail, because it doesn't
238// know how to split edges. It should be possible to make the optimizer
239// think in terms of edges, rather than blocks, and then split critical
240// edges on demand.
241
242// TODO: OptimizeSequences could generalized to be Interprocedural.
243
244// TODO: Recognize that a bunch of other objc runtime calls have
245// non-escaping arguments and non-releasing arguments, and may be
246// non-autoreleasing.
247
248// TODO: Sink autorelease calls as far as possible. Unfortunately we
249// usually can't sink them past other calls, which would be the main
250// case where it would be useful.
251
Dan Gohmanb3894012011-08-19 00:26:36 +0000252// TODO: The pointer returned from objc_loadWeakRetained is retained.
253
254// TODO: Delete release+retain pairs (rare).
Dan Gohmanceaac7c2011-06-20 23:20:43 +0000255
John McCalld935e9c2011-06-15 23:37:01 +0000256STATISTIC(NumNoops, "Number of no-op objc calls eliminated");
257STATISTIC(NumPartialNoops, "Number of partially no-op objc calls eliminated");
258STATISTIC(NumAutoreleases,"Number of autoreleases converted to releases");
259STATISTIC(NumRets, "Number of return value forwarding "
Michael Gottesmanb4e7f4d2013-05-15 17:43:03 +0000260 "retain+autoreleases eliminated");
John McCalld935e9c2011-06-15 23:37:01 +0000261STATISTIC(NumRRs, "Number of retain+release paths eliminated");
262STATISTIC(NumPeeps, "Number of calls peephole-optimized");
Matt Beaumont-Gaye55d9492013-05-13 21:10:49 +0000263#ifndef NDEBUG
Michael Gottesman9c118152013-04-29 06:16:57 +0000264STATISTIC(NumRetainsBeforeOpt,
Michael Gottesmanb4e7f4d2013-05-15 17:43:03 +0000265 "Number of retains before optimization");
Michael Gottesman9c118152013-04-29 06:16:57 +0000266STATISTIC(NumReleasesBeforeOpt,
Michael Gottesmanb4e7f4d2013-05-15 17:43:03 +0000267 "Number of releases before optimization");
Michael Gottesman9c118152013-04-29 06:16:57 +0000268STATISTIC(NumRetainsAfterOpt,
Michael Gottesmanb4e7f4d2013-05-15 17:43:03 +0000269 "Number of retains after optimization");
Michael Gottesman9c118152013-04-29 06:16:57 +0000270STATISTIC(NumReleasesAfterOpt,
Michael Gottesmanb4e7f4d2013-05-15 17:43:03 +0000271 "Number of releases after optimization");
Michael Gottesman03cf3c82013-04-29 07:29:08 +0000272#endif
John McCalld935e9c2011-06-15 23:37:01 +0000273
274namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000275 /// \enum Sequence
276 ///
277 /// \brief A sequence of states that a pointer may go through in which an
278 /// objc_retain and objc_release are actually needed.
John McCalld935e9c2011-06-15 23:37:01 +0000279 enum Sequence {
280 S_None,
Michael Gottesman53fd20b2013-01-29 21:07:51 +0000281 S_Retain, ///< objc_retain(x).
282 S_CanRelease, ///< foo(x) -- x could possibly see a ref count decrement.
283 S_Use, ///< any use of x.
Michael Gottesman386241c2013-01-29 21:39:02 +0000284 S_Stop, ///< like S_Release, but code motion is stopped.
Michael Gottesman53fd20b2013-01-29 21:07:51 +0000285 S_Release, ///< objc_release(x).
Michael Gottesman9bdab2b2013-01-29 21:41:44 +0000286 S_MovableRelease ///< objc_release(x), !clang.imprecise_release.
John McCalld935e9c2011-06-15 23:37:01 +0000287 };
Michael Gottesman53fd20b2013-01-29 21:07:51 +0000288
289 raw_ostream &operator<<(raw_ostream &OS, const Sequence S)
290 LLVM_ATTRIBUTE_UNUSED;
291 raw_ostream &operator<<(raw_ostream &OS, const Sequence S) {
292 switch (S) {
293 case S_None:
294 return OS << "S_None";
295 case S_Retain:
296 return OS << "S_Retain";
297 case S_CanRelease:
298 return OS << "S_CanRelease";
299 case S_Use:
300 return OS << "S_Use";
301 case S_Release:
302 return OS << "S_Release";
303 case S_MovableRelease:
304 return OS << "S_MovableRelease";
305 case S_Stop:
306 return OS << "S_Stop";
307 }
308 llvm_unreachable("Unknown sequence type.");
309 }
John McCalld935e9c2011-06-15 23:37:01 +0000310}
311
312static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
313 // The easy cases.
314 if (A == B)
315 return A;
316 if (A == S_None || B == S_None)
317 return S_None;
318
John McCalld935e9c2011-06-15 23:37:01 +0000319 if (A > B) std::swap(A, B);
320 if (TopDown) {
321 // Choose the side which is further along in the sequence.
Dan Gohman12130272011-08-12 00:26:31 +0000322 if ((A == S_Retain || A == S_CanRelease) &&
323 (B == S_CanRelease || B == S_Use))
John McCalld935e9c2011-06-15 23:37:01 +0000324 return B;
325 } else {
326 // Choose the side which is further along in the sequence.
327 if ((A == S_Use || A == S_CanRelease) &&
Dan Gohman12130272011-08-12 00:26:31 +0000328 (B == S_Use || B == S_Release || B == S_Stop || B == S_MovableRelease))
John McCalld935e9c2011-06-15 23:37:01 +0000329 return A;
330 // If both sides are releases, choose the more conservative one.
331 if (A == S_Stop && (B == S_Release || B == S_MovableRelease))
332 return A;
333 if (A == S_Release && B == S_MovableRelease)
334 return A;
335 }
336
337 return S_None;
338}
339
340namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000341 /// \brief Unidirectional information about either a
John McCalld935e9c2011-06-15 23:37:01 +0000342 /// retain-decrement-use-release sequence or release-use-decrement-retain
Bob Wilson798a7702013-04-09 22:15:51 +0000343 /// reverse sequence.
John McCalld935e9c2011-06-15 23:37:01 +0000344 struct RRInfo {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000345 /// After an objc_retain, the reference count of the referenced
Dan Gohmanb3894012011-08-19 00:26:36 +0000346 /// object is known to be positive. Similarly, before an objc_release, the
347 /// reference count of the referenced object is known to be positive. If
348 /// there are retain-release pairs in code regions where the retain count
349 /// is known to be positive, they can be eliminated, regardless of any side
350 /// effects between them.
351 ///
352 /// Also, a retain+release pair nested within another retain+release
353 /// pair all on the known same pointer value can be eliminated, regardless
354 /// of any intervening side effects.
355 ///
356 /// KnownSafe is true when either of these conditions is satisfied.
357 bool KnownSafe;
John McCalld935e9c2011-06-15 23:37:01 +0000358
Michael Gottesman97e3df02013-01-14 00:35:14 +0000359 /// True of the objc_release calls are all marked with the "tail" keyword.
John McCalld935e9c2011-06-15 23:37:01 +0000360 bool IsTailCallRelease;
361
Michael Gottesman97e3df02013-01-14 00:35:14 +0000362 /// If the Calls are objc_release calls and they all have a
363 /// clang.imprecise_release tag, this is the metadata tag.
John McCalld935e9c2011-06-15 23:37:01 +0000364 MDNode *ReleaseMetadata;
365
Michael Gottesman97e3df02013-01-14 00:35:14 +0000366 /// For a top-down sequence, the set of objc_retains or
John McCalld935e9c2011-06-15 23:37:01 +0000367 /// objc_retainBlocks. For bottom-up, the set of objc_releases.
368 SmallPtrSet<Instruction *, 2> Calls;
369
Michael Gottesman97e3df02013-01-14 00:35:14 +0000370 /// The set of optimal insert positions for moving calls in the opposite
371 /// sequence.
John McCalld935e9c2011-06-15 23:37:01 +0000372 SmallPtrSet<Instruction *, 2> ReverseInsertPts;
373
Michael Gottesmane67f40c2013-05-24 20:44:05 +0000374 /// If this is true, we cannot perform code motion but can still remove
375 /// retain/release pairs.
376 bool CFGHazardAfflicted;
377
John McCalld935e9c2011-06-15 23:37:01 +0000378 RRInfo() :
Michael Gottesmane67f40c2013-05-24 20:44:05 +0000379 KnownSafe(false), IsTailCallRelease(false), ReleaseMetadata(0),
380 CFGHazardAfflicted(false) {}
John McCalld935e9c2011-06-15 23:37:01 +0000381
382 void clear();
Michael Gottesman79249972013-04-05 23:46:45 +0000383
Michael Gottesman4773a102013-06-21 05:42:08 +0000384 /// Conservatively merge the two RRInfo. Returns true if a partial merge has
Alp Tokercb402912014-01-24 17:20:08 +0000385 /// occurred, false otherwise.
Michael Gottesman4773a102013-06-21 05:42:08 +0000386 bool Merge(const RRInfo &Other);
387
John McCalld935e9c2011-06-15 23:37:01 +0000388 };
389}
390
391void RRInfo::clear() {
Dan Gohmanb3894012011-08-19 00:26:36 +0000392 KnownSafe = false;
John McCalld935e9c2011-06-15 23:37:01 +0000393 IsTailCallRelease = false;
394 ReleaseMetadata = 0;
395 Calls.clear();
396 ReverseInsertPts.clear();
Michael Gottesmane67f40c2013-05-24 20:44:05 +0000397 CFGHazardAfflicted = false;
John McCalld935e9c2011-06-15 23:37:01 +0000398}
399
Michael Gottesman4773a102013-06-21 05:42:08 +0000400bool RRInfo::Merge(const RRInfo &Other) {
401 // Conservatively merge the ReleaseMetadata information.
402 if (ReleaseMetadata != Other.ReleaseMetadata)
403 ReleaseMetadata = 0;
404
405 // Conservatively merge the boolean state.
406 KnownSafe &= Other.KnownSafe;
407 IsTailCallRelease &= Other.IsTailCallRelease;
408 CFGHazardAfflicted |= Other.CFGHazardAfflicted;
409
410 // Merge the call sets.
411 Calls.insert(Other.Calls.begin(), Other.Calls.end());
412
413 // Merge the insert point sets. If there are any differences,
414 // that makes this a partial merge.
415 bool Partial = ReverseInsertPts.size() != Other.ReverseInsertPts.size();
416 for (SmallPtrSet<Instruction *, 2>::const_iterator
417 I = Other.ReverseInsertPts.begin(),
418 E = Other.ReverseInsertPts.end(); I != E; ++I)
419 Partial |= ReverseInsertPts.insert(*I);
420 return Partial;
421}
422
John McCalld935e9c2011-06-15 23:37:01 +0000423namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000424 /// \brief This class summarizes several per-pointer runtime properties which
425 /// are propogated through the flow graph.
John McCalld935e9c2011-06-15 23:37:01 +0000426 class PtrState {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000427 /// True if the reference count is known to be incremented.
Dan Gohman62079b42012-04-25 00:50:46 +0000428 bool KnownPositiveRefCount;
429
Bob Wilson798a7702013-04-09 22:15:51 +0000430 /// True if we've seen an opportunity for partial RR elimination, such as
Michael Gottesman97e3df02013-01-14 00:35:14 +0000431 /// pushing calls into a CFG triangle or into one side of a CFG diamond.
Dan Gohman62079b42012-04-25 00:50:46 +0000432 bool Partial;
John McCalld935e9c2011-06-15 23:37:01 +0000433
Michael Gottesman97e3df02013-01-14 00:35:14 +0000434 /// The current position in the sequence.
Bill Wendling2798f1e2013-12-01 03:36:07 +0000435 unsigned char Seq : 8;
John McCalld935e9c2011-06-15 23:37:01 +0000436
Michael Gottesman97e3df02013-01-14 00:35:14 +0000437 /// Unidirectional information about the current sequence.
John McCalld935e9c2011-06-15 23:37:01 +0000438 RRInfo RRI;
439
Michael Gottesmane3943d02013-06-21 19:44:30 +0000440 public:
Dan Gohmandf476e52012-09-04 23:16:20 +0000441 PtrState() : KnownPositiveRefCount(false), Partial(false),
Dan Gohman41375a32012-05-08 23:39:44 +0000442 Seq(S_None) {}
John McCalld935e9c2011-06-15 23:37:01 +0000443
Michael Gottesman93132252013-06-21 06:59:02 +0000444
445 bool IsKnownSafe() const {
Michael Gottesman01df4502013-07-06 01:41:35 +0000446 return RRI.KnownSafe;
Michael Gottesman93132252013-06-21 06:59:02 +0000447 }
448
449 void SetKnownSafe(const bool NewValue) {
450 RRI.KnownSafe = NewValue;
451 }
452
Michael Gottesmanb82a1792013-06-21 07:00:44 +0000453 bool IsTailCallRelease() const {
454 return RRI.IsTailCallRelease;
455 }
456
457 void SetTailCallRelease(const bool NewValue) {
458 RRI.IsTailCallRelease = NewValue;
459 }
460
Michael Gottesman9799cf72013-06-21 20:52:49 +0000461 bool IsTrackingImpreciseReleases() const {
Michael Gottesmanf0401182013-06-21 19:12:38 +0000462 return RRI.ReleaseMetadata != 0;
463 }
464
Michael Gottesmanf701d3f2013-06-21 07:03:07 +0000465 const MDNode *GetReleaseMetadata() const {
466 return RRI.ReleaseMetadata;
467 }
468
469 void SetReleaseMetadata(MDNode *NewValue) {
470 RRI.ReleaseMetadata = NewValue;
471 }
472
Michael Gottesman2f294592013-06-21 19:12:36 +0000473 bool IsCFGHazardAfflicted() const {
474 return RRI.CFGHazardAfflicted;
475 }
476
477 void SetCFGHazardAfflicted(const bool NewValue) {
478 RRI.CFGHazardAfflicted = NewValue;
479 }
480
Michael Gottesman415ddd72013-02-05 19:32:18 +0000481 void SetKnownPositiveRefCount() {
Michael Gottesmanf3f9e3b2013-05-14 00:08:09 +0000482 DEBUG(dbgs() << "Setting Known Positive.\n");
Dan Gohman62079b42012-04-25 00:50:46 +0000483 KnownPositiveRefCount = true;
Dan Gohman12130272011-08-12 00:26:31 +0000484 }
485
Michael Gottesman764b1cf2013-03-23 05:46:19 +0000486 void ClearKnownPositiveRefCount() {
Michael Gottesmanf3f9e3b2013-05-14 00:08:09 +0000487 DEBUG(dbgs() << "Clearing Known Positive.\n");
Dan Gohman62079b42012-04-25 00:50:46 +0000488 KnownPositiveRefCount = false;
John McCalld935e9c2011-06-15 23:37:01 +0000489 }
490
Michael Gottesman07beea42013-03-23 05:31:01 +0000491 bool HasKnownPositiveRefCount() const {
Dan Gohman62079b42012-04-25 00:50:46 +0000492 return KnownPositiveRefCount;
John McCalld935e9c2011-06-15 23:37:01 +0000493 }
494
Michael Gottesman415ddd72013-02-05 19:32:18 +0000495 void SetSeq(Sequence NewSeq) {
Michael Gottesman89279f82013-04-05 18:10:41 +0000496 DEBUG(dbgs() << "Old: " << Seq << "; New: " << NewSeq << "\n");
Michael Gottesman79249972013-04-05 23:46:45 +0000497 Seq = NewSeq;
John McCalld935e9c2011-06-15 23:37:01 +0000498 }
499
Michael Gottesman415ddd72013-02-05 19:32:18 +0000500 Sequence GetSeq() const {
Bill Wendling2798f1e2013-12-01 03:36:07 +0000501 return static_cast<Sequence>(Seq);
John McCalld935e9c2011-06-15 23:37:01 +0000502 }
503
Michael Gottesman415ddd72013-02-05 19:32:18 +0000504 void ClearSequenceProgress() {
Dan Gohman62079b42012-04-25 00:50:46 +0000505 ResetSequenceProgress(S_None);
506 }
507
Michael Gottesman415ddd72013-02-05 19:32:18 +0000508 void ResetSequenceProgress(Sequence NewSeq) {
Michael Gottesman01338a42013-04-20 23:36:57 +0000509 DEBUG(dbgs() << "Resetting sequence progress.\n");
Michael Gottesman89279f82013-04-05 18:10:41 +0000510 SetSeq(NewSeq);
Dan Gohman62079b42012-04-25 00:50:46 +0000511 Partial = false;
John McCalld935e9c2011-06-15 23:37:01 +0000512 RRI.clear();
513 }
514
515 void Merge(const PtrState &Other, bool TopDown);
Michael Gottesman4f6ef112013-06-21 19:44:27 +0000516
517 void InsertCall(Instruction *I) {
518 RRI.Calls.insert(I);
519 }
520
521 void InsertReverseInsertPt(Instruction *I) {
522 RRI.ReverseInsertPts.insert(I);
523 }
524
525 void ClearReverseInsertPts() {
526 RRI.ReverseInsertPts.clear();
527 }
528
529 bool HasReverseInsertPts() const {
530 return !RRI.ReverseInsertPts.empty();
531 }
Michael Gottesmane3943d02013-06-21 19:44:30 +0000532
533 const RRInfo &GetRRInfo() const {
534 return RRI;
535 }
John McCalld935e9c2011-06-15 23:37:01 +0000536 };
537}
538
539void
540PtrState::Merge(const PtrState &Other, bool TopDown) {
Bill Wendlingcbcb02c2013-12-01 03:40:42 +0000541 Seq = MergeSeqs(GetSeq(), Other.GetSeq(), TopDown);
Michael Gottesmanb7deb4c2013-06-21 06:54:31 +0000542 KnownPositiveRefCount &= Other.KnownPositiveRefCount;
Michael Gottesman60f6b282013-03-29 05:13:07 +0000543
Dan Gohman1736c142011-10-17 18:48:25 +0000544 // If we're not in a sequence (anymore), drop all associated state.
John McCalld935e9c2011-06-15 23:37:01 +0000545 if (Seq == S_None) {
Dan Gohman62079b42012-04-25 00:50:46 +0000546 Partial = false;
John McCalld935e9c2011-06-15 23:37:01 +0000547 RRI.clear();
Dan Gohman62079b42012-04-25 00:50:46 +0000548 } else if (Partial || Other.Partial) {
Dan Gohman1736c142011-10-17 18:48:25 +0000549 // If we're doing a merge on a path that's previously seen a partial
550 // merge, conservatively drop the sequence, to avoid doing partial
551 // RR elimination. If the branch predicates for the two merge differ,
552 // mixing them is unsafe.
Dan Gohman62079b42012-04-25 00:50:46 +0000553 ClearSequenceProgress();
John McCalld935e9c2011-06-15 23:37:01 +0000554 } else {
Michael Gottesmanb7deb4c2013-06-21 06:54:31 +0000555 // Otherwise merge the other PtrState's RRInfo into our RRInfo. At this
556 // point, we know that currently we are not partial. Stash whether or not
557 // the merge operation caused us to undergo a partial merging of reverse
558 // insertion points.
Michael Gottesman4773a102013-06-21 05:42:08 +0000559 Partial = RRI.Merge(Other.RRI);
John McCalld935e9c2011-06-15 23:37:01 +0000560 }
561}
562
563namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000564 /// \brief Per-BasicBlock state.
John McCalld935e9c2011-06-15 23:37:01 +0000565 class BBState {
Michael Gottesman97e3df02013-01-14 00:35:14 +0000566 /// The number of unique control paths from the entry which can reach this
567 /// block.
John McCalld935e9c2011-06-15 23:37:01 +0000568 unsigned TopDownPathCount;
569
Michael Gottesman97e3df02013-01-14 00:35:14 +0000570 /// The number of unique control paths to exits from this block.
John McCalld935e9c2011-06-15 23:37:01 +0000571 unsigned BottomUpPathCount;
572
Michael Gottesman97e3df02013-01-14 00:35:14 +0000573 /// A type for PerPtrTopDown and PerPtrBottomUp.
John McCalld935e9c2011-06-15 23:37:01 +0000574 typedef MapVector<const Value *, PtrState> MapTy;
575
Michael Gottesman97e3df02013-01-14 00:35:14 +0000576 /// The top-down traversal uses this to record information known about a
577 /// pointer at the bottom of each block.
John McCalld935e9c2011-06-15 23:37:01 +0000578 MapTy PerPtrTopDown;
579
Michael Gottesman97e3df02013-01-14 00:35:14 +0000580 /// The bottom-up traversal uses this to record information known about a
581 /// pointer at the top of each block.
John McCalld935e9c2011-06-15 23:37:01 +0000582 MapTy PerPtrBottomUp;
583
Michael Gottesman97e3df02013-01-14 00:35:14 +0000584 /// Effective predecessors of the current block ignoring ignorable edges and
585 /// ignored backedges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000586 SmallVector<BasicBlock *, 2> Preds;
Michael Gottesman97e3df02013-01-14 00:35:14 +0000587 /// Effective successors of the current block ignoring ignorable edges and
588 /// ignored backedges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000589 SmallVector<BasicBlock *, 2> Succs;
590
John McCalld935e9c2011-06-15 23:37:01 +0000591 public:
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000592 static const unsigned OverflowOccurredValue;
593
594 BBState() : TopDownPathCount(0), BottomUpPathCount(0) { }
John McCalld935e9c2011-06-15 23:37:01 +0000595
596 typedef MapTy::iterator ptr_iterator;
597 typedef MapTy::const_iterator ptr_const_iterator;
598
599 ptr_iterator top_down_ptr_begin() { return PerPtrTopDown.begin(); }
600 ptr_iterator top_down_ptr_end() { return PerPtrTopDown.end(); }
601 ptr_const_iterator top_down_ptr_begin() const {
602 return PerPtrTopDown.begin();
603 }
604 ptr_const_iterator top_down_ptr_end() const {
605 return PerPtrTopDown.end();
606 }
607
608 ptr_iterator bottom_up_ptr_begin() { return PerPtrBottomUp.begin(); }
609 ptr_iterator bottom_up_ptr_end() { return PerPtrBottomUp.end(); }
610 ptr_const_iterator bottom_up_ptr_begin() const {
611 return PerPtrBottomUp.begin();
612 }
613 ptr_const_iterator bottom_up_ptr_end() const {
614 return PerPtrBottomUp.end();
615 }
616
Michael Gottesman97e3df02013-01-14 00:35:14 +0000617 /// Mark this block as being an entry block, which has one path from the
618 /// entry by definition.
John McCalld935e9c2011-06-15 23:37:01 +0000619 void SetAsEntry() { TopDownPathCount = 1; }
620
Michael Gottesman97e3df02013-01-14 00:35:14 +0000621 /// Mark this block as being an exit block, which has one path to an exit by
622 /// definition.
John McCalld935e9c2011-06-15 23:37:01 +0000623 void SetAsExit() { BottomUpPathCount = 1; }
624
Michael Gottesman993fbf72013-05-13 19:40:39 +0000625 /// Attempt to find the PtrState object describing the top down state for
626 /// pointer Arg. Return a new initialized PtrState describing the top down
627 /// state for Arg if we do not find one.
John McCalld935e9c2011-06-15 23:37:01 +0000628 PtrState &getPtrTopDownState(const Value *Arg) {
629 return PerPtrTopDown[Arg];
630 }
631
Michael Gottesman993fbf72013-05-13 19:40:39 +0000632 /// Attempt to find the PtrState object describing the bottom up state for
633 /// pointer Arg. Return a new initialized PtrState describing the bottom up
634 /// state for Arg if we do not find one.
John McCalld935e9c2011-06-15 23:37:01 +0000635 PtrState &getPtrBottomUpState(const Value *Arg) {
636 return PerPtrBottomUp[Arg];
637 }
638
Michael Gottesmana76143ee2013-05-13 23:49:42 +0000639 /// Attempt to find the PtrState object describing the bottom up state for
640 /// pointer Arg.
641 ptr_iterator findPtrBottomUpState(const Value *Arg) {
642 return PerPtrBottomUp.find(Arg);
643 }
644
John McCalld935e9c2011-06-15 23:37:01 +0000645 void clearBottomUpPointers() {
Evan Chenge4df6a22011-08-04 18:40:26 +0000646 PerPtrBottomUp.clear();
John McCalld935e9c2011-06-15 23:37:01 +0000647 }
648
649 void clearTopDownPointers() {
650 PerPtrTopDown.clear();
651 }
652
653 void InitFromPred(const BBState &Other);
654 void InitFromSucc(const BBState &Other);
655 void MergePred(const BBState &Other);
656 void MergeSucc(const BBState &Other);
657
Michael Gottesman9e7261c2013-06-07 06:16:49 +0000658 /// Compute the number of possible unique paths from an entry to an exit
Michael Gottesman97e3df02013-01-14 00:35:14 +0000659 /// which pass through this block. This is only valid after both the
660 /// top-down and bottom-up traversals are complete.
Michael Gottesman9e7261c2013-06-07 06:16:49 +0000661 ///
Alp Tokercb402912014-01-24 17:20:08 +0000662 /// Returns true if overflow occurred. Returns false if overflow did not
Michael Gottesman9e7261c2013-06-07 06:16:49 +0000663 /// occur.
664 bool GetAllPathCountWithOverflow(unsigned &PathCount) const {
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000665 if (TopDownPathCount == OverflowOccurredValue ||
666 BottomUpPathCount == OverflowOccurredValue)
667 return true;
Michael Gottesman9e7261c2013-06-07 06:16:49 +0000668 unsigned long long Product =
669 (unsigned long long)TopDownPathCount*BottomUpPathCount;
Alp Tokercb402912014-01-24 17:20:08 +0000670 // Overflow occurred if any of the upper bits of Product are set or if all
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000671 // the lower bits of Product are all set.
672 return (Product >> 32) ||
673 ((PathCount = Product) == OverflowOccurredValue);
John McCalld935e9c2011-06-15 23:37:01 +0000674 }
Dan Gohman12130272011-08-12 00:26:31 +0000675
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000676 // Specialized CFG utilities.
Dan Gohmandae33492012-04-27 18:56:31 +0000677 typedef SmallVectorImpl<BasicBlock *>::const_iterator edge_iterator;
Michael Gottesman0fecf982013-08-07 23:56:34 +0000678 edge_iterator pred_begin() const { return Preds.begin(); }
679 edge_iterator pred_end() const { return Preds.end(); }
680 edge_iterator succ_begin() const { return Succs.begin(); }
681 edge_iterator succ_end() const { return Succs.end(); }
Dan Gohmanc24c66f2012-04-24 22:53:18 +0000682
683 void addSucc(BasicBlock *Succ) { Succs.push_back(Succ); }
684 void addPred(BasicBlock *Pred) { Preds.push_back(Pred); }
685
686 bool isExit() const { return Succs.empty(); }
John McCalld935e9c2011-06-15 23:37:01 +0000687 };
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000688
689 const unsigned BBState::OverflowOccurredValue = 0xffffffff;
John McCalld935e9c2011-06-15 23:37:01 +0000690}
691
692void BBState::InitFromPred(const BBState &Other) {
693 PerPtrTopDown = Other.PerPtrTopDown;
694 TopDownPathCount = Other.TopDownPathCount;
695}
696
697void BBState::InitFromSucc(const BBState &Other) {
698 PerPtrBottomUp = Other.PerPtrBottomUp;
699 BottomUpPathCount = Other.BottomUpPathCount;
700}
701
Michael Gottesman97e3df02013-01-14 00:35:14 +0000702/// The top-down traversal uses this to merge information about predecessors to
703/// form the initial state for a new block.
John McCalld935e9c2011-06-15 23:37:01 +0000704void BBState::MergePred(const BBState &Other) {
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000705 if (TopDownPathCount == OverflowOccurredValue)
706 return;
707
John McCalld935e9c2011-06-15 23:37:01 +0000708 // Other.TopDownPathCount can be 0, in which case it is either dead or a
709 // loop backedge. Loop backedges are special.
710 TopDownPathCount += Other.TopDownPathCount;
711
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000712 // In order to be consistent, we clear the top down pointers when by adding
713 // TopDownPathCount becomes OverflowOccurredValue even though "true" overflow
Alp Tokercb402912014-01-24 17:20:08 +0000714 // has not occurred.
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000715 if (TopDownPathCount == OverflowOccurredValue) {
716 clearTopDownPointers();
717 return;
718 }
719
Michael Gottesman4385edf2013-01-14 01:47:53 +0000720 // Check for overflow. If we have overflow, fall back to conservative
721 // behavior.
Dan Gohman7c84dad2012-09-12 20:45:17 +0000722 if (TopDownPathCount < Other.TopDownPathCount) {
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000723 TopDownPathCount = OverflowOccurredValue;
Dan Gohman7c84dad2012-09-12 20:45:17 +0000724 clearTopDownPointers();
725 return;
726 }
727
John McCalld935e9c2011-06-15 23:37:01 +0000728 // For each entry in the other set, if our set has an entry with the same key,
729 // merge the entries. Otherwise, copy the entry and merge it with an empty
730 // entry.
731 for (ptr_const_iterator MI = Other.top_down_ptr_begin(),
732 ME = Other.top_down_ptr_end(); MI != ME; ++MI) {
733 std::pair<ptr_iterator, bool> Pair = PerPtrTopDown.insert(*MI);
734 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
735 /*TopDown=*/true);
736 }
737
Dan Gohman7e315fc32011-08-11 21:06:32 +0000738 // For each entry in our set, if the other set doesn't have an entry with the
John McCalld935e9c2011-06-15 23:37:01 +0000739 // same key, force it to merge with an empty entry.
740 for (ptr_iterator MI = top_down_ptr_begin(),
741 ME = top_down_ptr_end(); MI != ME; ++MI)
742 if (Other.PerPtrTopDown.find(MI->first) == Other.PerPtrTopDown.end())
743 MI->second.Merge(PtrState(), /*TopDown=*/true);
744}
745
Michael Gottesman97e3df02013-01-14 00:35:14 +0000746/// The bottom-up traversal uses this to merge information about successors to
747/// form the initial state for a new block.
John McCalld935e9c2011-06-15 23:37:01 +0000748void BBState::MergeSucc(const BBState &Other) {
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000749 if (BottomUpPathCount == OverflowOccurredValue)
750 return;
751
John McCalld935e9c2011-06-15 23:37:01 +0000752 // Other.BottomUpPathCount can be 0, in which case it is either dead or a
753 // loop backedge. Loop backedges are special.
754 BottomUpPathCount += Other.BottomUpPathCount;
755
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000756 // In order to be consistent, we clear the top down pointers when by adding
757 // BottomUpPathCount becomes OverflowOccurredValue even though "true" overflow
Alp Tokercb402912014-01-24 17:20:08 +0000758 // has not occurred.
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000759 if (BottomUpPathCount == OverflowOccurredValue) {
760 clearBottomUpPointers();
761 return;
762 }
763
Michael Gottesman4385edf2013-01-14 01:47:53 +0000764 // Check for overflow. If we have overflow, fall back to conservative
765 // behavior.
Dan Gohman7c84dad2012-09-12 20:45:17 +0000766 if (BottomUpPathCount < Other.BottomUpPathCount) {
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +0000767 BottomUpPathCount = OverflowOccurredValue;
Dan Gohman7c84dad2012-09-12 20:45:17 +0000768 clearBottomUpPointers();
769 return;
770 }
771
John McCalld935e9c2011-06-15 23:37:01 +0000772 // For each entry in the other set, if our set has an entry with the
773 // same key, merge the entries. Otherwise, copy the entry and merge
774 // it with an empty entry.
775 for (ptr_const_iterator MI = Other.bottom_up_ptr_begin(),
776 ME = Other.bottom_up_ptr_end(); MI != ME; ++MI) {
777 std::pair<ptr_iterator, bool> Pair = PerPtrBottomUp.insert(*MI);
778 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
779 /*TopDown=*/false);
780 }
781
Dan Gohman7e315fc32011-08-11 21:06:32 +0000782 // For each entry in our set, if the other set doesn't have an entry
John McCalld935e9c2011-06-15 23:37:01 +0000783 // with the same key, force it to merge with an empty entry.
784 for (ptr_iterator MI = bottom_up_ptr_begin(),
785 ME = bottom_up_ptr_end(); MI != ME; ++MI)
786 if (Other.PerPtrBottomUp.find(MI->first) == Other.PerPtrBottomUp.end())
787 MI->second.Merge(PtrState(), /*TopDown=*/false);
788}
789
Michael Gottesman81b1d432013-03-26 00:42:04 +0000790// Only enable ARC Annotations if we are building a debug version of
791// libObjCARCOpts.
792#ifndef NDEBUG
793#define ARC_ANNOTATIONS
794#endif
795
796// Define some macros along the lines of DEBUG and some helper functions to make
797// it cleaner to create annotations in the source code and to no-op when not
798// building in debug mode.
799#ifdef ARC_ANNOTATIONS
800
801#include "llvm/Support/CommandLine.h"
802
803/// Enable/disable ARC sequence annotations.
804static cl::opt<bool>
Michael Gottesman6806b512013-04-17 20:48:03 +0000805EnableARCAnnotations("enable-objc-arc-annotations", cl::init(false),
806 cl::desc("Enable emission of arc data flow analysis "
807 "annotations"));
Michael Gottesmanffef24f2013-04-17 20:48:01 +0000808static cl::opt<bool>
Michael Gottesmanadb921a2013-04-17 21:03:53 +0000809DisableCheckForCFGHazards("disable-objc-arc-checkforcfghazards", cl::init(false),
810 cl::desc("Disable check for cfg hazards when "
811 "annotating"));
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000812static cl::opt<std::string>
813ARCAnnotationTargetIdentifier("objc-arc-annotation-target-identifier",
814 cl::init(""),
815 cl::desc("filter out all data flow annotations "
816 "but those that apply to the given "
817 "target llvm identifier."));
Michael Gottesman81b1d432013-03-26 00:42:04 +0000818
819/// This function appends a unique ARCAnnotationProvenanceSourceMDKind id to an
820/// instruction so that we can track backwards when post processing via the llvm
821/// arc annotation processor tool. If the function is an
822static MDString *AppendMDNodeToSourcePtr(unsigned NodeId,
823 Value *Ptr) {
824 MDString *Hash = 0;
825
826 // If pointer is a result of an instruction and it does not have a source
827 // MDNode it, attach a new MDNode onto it. If pointer is a result of
828 // an instruction and does have a source MDNode attached to it, return a
829 // reference to said Node. Otherwise just return 0.
830 if (Instruction *Inst = dyn_cast<Instruction>(Ptr)) {
831 MDNode *Node;
832 if (!(Node = Inst->getMetadata(NodeId))) {
833 // We do not have any node. Generate and attatch the hash MDString to the
834 // instruction.
835
836 // We just use an MDString to ensure that this metadata gets written out
837 // of line at the module level and to provide a very simple format
838 // encoding the information herein. Both of these makes it simpler to
839 // parse the annotations by a simple external program.
840 std::string Str;
841 raw_string_ostream os(Str);
842 os << "(" << Inst->getParent()->getParent()->getName() << ",%"
843 << Inst->getName() << ")";
844
845 Hash = MDString::get(Inst->getContext(), os.str());
846 Inst->setMetadata(NodeId, MDNode::get(Inst->getContext(),Hash));
847 } else {
848 // We have a node. Grab its hash and return it.
849 assert(Node->getNumOperands() == 1 &&
850 "An ARCAnnotationProvenanceSourceMDKind can only have 1 operand.");
851 Hash = cast<MDString>(Node->getOperand(0));
852 }
853 } else if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
854 std::string str;
855 raw_string_ostream os(str);
856 os << "(" << Arg->getParent()->getName() << ",%" << Arg->getName()
857 << ")";
858 Hash = MDString::get(Arg->getContext(), os.str());
859 }
860
861 return Hash;
862}
863
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000864static std::string SequenceToString(Sequence A) {
865 std::string str;
866 raw_string_ostream os(str);
867 os << A;
868 return os.str();
869}
870
Michael Gottesman81b1d432013-03-26 00:42:04 +0000871/// Helper function to change a Sequence into a String object using our overload
872/// for raw_ostream so we only have printing code in one location.
873static MDString *SequenceToMDString(LLVMContext &Context,
874 Sequence A) {
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000875 return MDString::get(Context, SequenceToString(A));
Michael Gottesman81b1d432013-03-26 00:42:04 +0000876}
877
878/// A simple function to generate a MDNode which describes the change in state
879/// for Value *Ptr caused by Instruction *Inst.
880static void AppendMDNodeToInstForPtr(unsigned NodeId,
881 Instruction *Inst,
882 Value *Ptr,
883 MDString *PtrSourceMDNodeID,
884 Sequence OldSeq,
885 Sequence NewSeq) {
886 MDNode *Node = 0;
887 Value *tmp[3] = {PtrSourceMDNodeID,
888 SequenceToMDString(Inst->getContext(),
889 OldSeq),
890 SequenceToMDString(Inst->getContext(),
891 NewSeq)};
892 Node = MDNode::get(Inst->getContext(),
893 ArrayRef<Value*>(tmp, 3));
894
895 Inst->setMetadata(NodeId, Node);
896}
897
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000898/// Add to the beginning of the basic block llvm.ptr.annotations which show the
899/// state of a pointer at the entrance to a basic block.
900static void GenerateARCBBEntranceAnnotation(const char *Name, BasicBlock *BB,
901 Value *Ptr, Sequence Seq) {
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000902 // If we have a target identifier, make sure that we match it before
903 // continuing.
904 if(!ARCAnnotationTargetIdentifier.empty() &&
905 !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
906 return;
Michael Gottesman9e518132013-04-18 04:34:11 +0000907
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000908 Module *M = BB->getParent()->getParent();
909 LLVMContext &C = M->getContext();
910 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
911 Type *I8XX = PointerType::getUnqual(I8X);
912 Type *Params[] = {I8XX, I8XX};
913 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
914 ArrayRef<Type*>(Params, 2),
915 /*isVarArg=*/false);
916 Constant *Callee = M->getOrInsertFunction(Name, FTy);
Michael Gottesman60f6b282013-03-29 05:13:07 +0000917
918 IRBuilder<> Builder(BB, BB->getFirstInsertionPt());
919
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000920 Value *PtrName;
921 StringRef Tmp = Ptr->getName();
922 if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
923 Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
924 Tmp + "_STR");
925 PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
Michael Gottesman60f6b282013-03-29 05:13:07 +0000926 cast<Constant>(ActualPtrName), Tmp);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000927 }
928
929 Value *S;
930 std::string SeqStr = SequenceToString(Seq);
931 if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
932 Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
933 SeqStr + "_STR");
934 S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
935 cast<Constant>(ActualPtrName), SeqStr);
936 }
937
938 Builder.CreateCall2(Callee, PtrName, S);
939}
940
941/// Add to the end of the basic block llvm.ptr.annotations which show the state
942/// of the pointer at the bottom of the basic block.
943static void GenerateARCBBTerminatorAnnotation(const char *Name, BasicBlock *BB,
944 Value *Ptr, Sequence Seq) {
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000945 // If we have a target identifier, make sure that we match it before emitting
946 // an annotation.
947 if(!ARCAnnotationTargetIdentifier.empty() &&
948 !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
949 return;
Michael Gottesman9e518132013-04-18 04:34:11 +0000950
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000951 Module *M = BB->getParent()->getParent();
952 LLVMContext &C = M->getContext();
953 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
954 Type *I8XX = PointerType::getUnqual(I8X);
955 Type *Params[] = {I8XX, I8XX};
956 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
957 ArrayRef<Type*>(Params, 2),
958 /*isVarArg=*/false);
959 Constant *Callee = M->getOrInsertFunction(Name, FTy);
Michael Gottesman60f6b282013-03-29 05:13:07 +0000960
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000961 IRBuilder<> Builder(BB, std::prev(BB->end()));
Michael Gottesman60f6b282013-03-29 05:13:07 +0000962
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000963 Value *PtrName;
964 StringRef Tmp = Ptr->getName();
965 if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
966 Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
967 Tmp + "_STR");
968 PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
Michael Gottesman60f6b282013-03-29 05:13:07 +0000969 cast<Constant>(ActualPtrName), Tmp);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000970 }
971
972 Value *S;
973 std::string SeqStr = SequenceToString(Seq);
974 if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
975 Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
976 SeqStr + "_STR");
977 S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
978 cast<Constant>(ActualPtrName), SeqStr);
979 }
Michael Gottesman60f6b282013-03-29 05:13:07 +0000980 Builder.CreateCall2(Callee, PtrName, S);
Michael Gottesmancd4de0f2013-03-26 00:42:09 +0000981}
982
Michael Gottesman81b1d432013-03-26 00:42:04 +0000983/// Adds a source annotation to pointer and a state change annotation to Inst
984/// referencing the source annotation and the old/new state of pointer.
985static void GenerateARCAnnotation(unsigned InstMDId,
986 unsigned PtrMDId,
987 Instruction *Inst,
988 Value *Ptr,
989 Sequence OldSeq,
990 Sequence NewSeq) {
991 if (EnableARCAnnotations) {
Michael Gottesman4e88ce62013-04-17 21:59:41 +0000992 // If we have a target identifier, make sure that we match it before
993 // emitting an annotation.
994 if(!ARCAnnotationTargetIdentifier.empty() &&
995 !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
996 return;
Michael Gottesman9e518132013-04-18 04:34:11 +0000997
Michael Gottesman81b1d432013-03-26 00:42:04 +0000998 // First generate the source annotation on our pointer. This will return an
999 // MDString* if Ptr actually comes from an instruction implying we can put
1000 // in a source annotation. If AppendMDNodeToSourcePtr returns 0 (i.e. NULL),
1001 // then we know that our pointer is from an Argument so we put a reference
1002 // to the argument number.
1003 //
1004 // The point of this is to make it easy for the
1005 // llvm-arc-annotation-processor tool to cross reference where the source
1006 // pointer is in the LLVM IR since the LLVM IR parser does not submit such
1007 // information via debug info for backends to use (since why would anyone
Alp Tokerf907b892013-12-05 05:44:44 +00001008 // need such a thing from LLVM IR besides in non-standard cases
Michael Gottesman81b1d432013-03-26 00:42:04 +00001009 // [i.e. this]).
1010 MDString *SourcePtrMDNode =
1011 AppendMDNodeToSourcePtr(PtrMDId, Ptr);
1012 AppendMDNodeToInstForPtr(InstMDId, Inst, Ptr, SourcePtrMDNode, OldSeq,
1013 NewSeq);
1014 }
1015}
1016
1017// The actual interface for accessing the above functionality is defined via
1018// some simple macros which are defined below. We do this so that the user does
1019// not need to pass in what metadata id is needed resulting in cleaner code and
1020// additionally since it provides an easy way to conditionally no-op all
1021// annotation support in a non-debug build.
1022
1023/// Use this macro to annotate a sequence state change when processing
1024/// instructions bottom up,
1025#define ANNOTATE_BOTTOMUP(inst, ptr, old, new) \
1026 GenerateARCAnnotation(ARCAnnotationBottomUpMDKind, \
1027 ARCAnnotationProvenanceSourceMDKind, (inst), \
1028 const_cast<Value*>(ptr), (old), (new))
1029/// Use this macro to annotate a sequence state change when processing
1030/// instructions top down.
1031#define ANNOTATE_TOPDOWN(inst, ptr, old, new) \
1032 GenerateARCAnnotation(ARCAnnotationTopDownMDKind, \
1033 ARCAnnotationProvenanceSourceMDKind, (inst), \
1034 const_cast<Value*>(ptr), (old), (new))
1035
Michael Gottesman43e7e002013-04-03 22:41:59 +00001036#define ANNOTATE_BB(_states, _bb, _name, _type, _direction) \
1037 do { \
Michael Gottesman89279f82013-04-05 18:10:41 +00001038 if (EnableARCAnnotations) { \
1039 for(BBState::ptr_const_iterator I = (_states)._direction##_ptr_begin(), \
Michael Gottesman43e7e002013-04-03 22:41:59 +00001040 E = (_states)._direction##_ptr_end(); I != E; ++I) { \
Michael Gottesman89279f82013-04-05 18:10:41 +00001041 Value *Ptr = const_cast<Value*>(I->first); \
1042 Sequence Seq = I->second.GetSeq(); \
1043 GenerateARCBB ## _type ## Annotation(_name, (_bb), Ptr, Seq); \
1044 } \
Michael Gottesman43e7e002013-04-03 22:41:59 +00001045 } \
Michael Gottesman89279f82013-04-05 18:10:41 +00001046 } while (0)
Michael Gottesman43e7e002013-04-03 22:41:59 +00001047
Michael Gottesman89279f82013-04-05 18:10:41 +00001048#define ANNOTATE_BOTTOMUP_BBSTART(_states, _basicblock) \
Michael Gottesman43e7e002013-04-03 22:41:59 +00001049 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbstart", \
1050 Entrance, bottom_up)
Michael Gottesman89279f82013-04-05 18:10:41 +00001051#define ANNOTATE_BOTTOMUP_BBEND(_states, _basicblock) \
1052 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbend", \
Michael Gottesman43e7e002013-04-03 22:41:59 +00001053 Terminator, bottom_up)
Michael Gottesman89279f82013-04-05 18:10:41 +00001054#define ANNOTATE_TOPDOWN_BBSTART(_states, _basicblock) \
1055 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbstart", \
Michael Gottesman43e7e002013-04-03 22:41:59 +00001056 Entrance, top_down)
Michael Gottesman89279f82013-04-05 18:10:41 +00001057#define ANNOTATE_TOPDOWN_BBEND(_states, _basicblock) \
1058 ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbend", \
Michael Gottesman43e7e002013-04-03 22:41:59 +00001059 Terminator, top_down)
1060
Michael Gottesman81b1d432013-03-26 00:42:04 +00001061#else // !ARC_ANNOTATION
1062// If annotations are off, noop.
1063#define ANNOTATE_BOTTOMUP(inst, ptr, old, new)
1064#define ANNOTATE_TOPDOWN(inst, ptr, old, new)
Michael Gottesman43e7e002013-04-03 22:41:59 +00001065#define ANNOTATE_BOTTOMUP_BBSTART(states, basicblock)
1066#define ANNOTATE_BOTTOMUP_BBEND(states, basicblock)
1067#define ANNOTATE_TOPDOWN_BBSTART(states, basicblock)
1068#define ANNOTATE_TOPDOWN_BBEND(states, basicblock)
Michael Gottesman81b1d432013-03-26 00:42:04 +00001069#endif // !ARC_ANNOTATION
1070
John McCalld935e9c2011-06-15 23:37:01 +00001071namespace {
Michael Gottesman97e3df02013-01-14 00:35:14 +00001072 /// \brief The main ARC optimization pass.
John McCalld935e9c2011-06-15 23:37:01 +00001073 class ObjCARCOpt : public FunctionPass {
1074 bool Changed;
1075 ProvenanceAnalysis PA;
Michael Gottesman14acfac2013-07-06 01:39:23 +00001076 ARCRuntimeEntryPoints EP;
John McCalld935e9c2011-06-15 23:37:01 +00001077
Michael Gottesman5a91bbf2013-05-24 20:44:02 +00001078 // This is used to track if a pointer is stored into an alloca.
1079 DenseSet<const Value *> MultiOwnersSet;
1080
Michael Gottesman97e3df02013-01-14 00:35:14 +00001081 /// A flag indicating whether this optimization pass should run.
Dan Gohmanceaac7c2011-06-20 23:20:43 +00001082 bool Run;
1083
Michael Gottesman97e3df02013-01-14 00:35:14 +00001084 /// Flags which determine whether each of the interesting runtine functions
1085 /// is in fact used in the current function.
John McCalld935e9c2011-06-15 23:37:01 +00001086 unsigned UsedInThisFunction;
1087
Michael Gottesman97e3df02013-01-14 00:35:14 +00001088 /// The Metadata Kind for clang.imprecise_release metadata.
John McCalld935e9c2011-06-15 23:37:01 +00001089 unsigned ImpreciseReleaseMDKind;
1090
Michael Gottesman97e3df02013-01-14 00:35:14 +00001091 /// The Metadata Kind for clang.arc.copy_on_escape metadata.
Dan Gohmana7107f92011-10-17 22:53:25 +00001092 unsigned CopyOnEscapeMDKind;
1093
Michael Gottesman97e3df02013-01-14 00:35:14 +00001094 /// The Metadata Kind for clang.arc.no_objc_arc_exceptions metadata.
Dan Gohman0155f302012-02-17 18:59:53 +00001095 unsigned NoObjCARCExceptionsMDKind;
1096
Michael Gottesman81b1d432013-03-26 00:42:04 +00001097#ifdef ARC_ANNOTATIONS
1098 /// The Metadata Kind for llvm.arc.annotation.bottomup metadata.
1099 unsigned ARCAnnotationBottomUpMDKind;
1100 /// The Metadata Kind for llvm.arc.annotation.topdown metadata.
1101 unsigned ARCAnnotationTopDownMDKind;
1102 /// The Metadata Kind for llvm.arc.annotation.provenancesource metadata.
1103 unsigned ARCAnnotationProvenanceSourceMDKind;
1104#endif // ARC_ANNOATIONS
1105
John McCalld935e9c2011-06-15 23:37:01 +00001106 bool OptimizeRetainRVCall(Function &F, Instruction *RetainRV);
Michael Gottesman556ff612013-01-12 01:25:19 +00001107 void OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1108 InstructionClass &Class);
John McCalld935e9c2011-06-15 23:37:01 +00001109 void OptimizeIndividualCalls(Function &F);
1110
1111 void CheckForCFGHazards(const BasicBlock *BB,
1112 DenseMap<const BasicBlock *, BBState> &BBStates,
1113 BBState &MyStates) const;
Dan Gohman817a7c62012-03-22 18:24:56 +00001114 bool VisitInstructionBottomUp(Instruction *Inst,
Dan Gohman5c70fad2012-03-23 17:47:54 +00001115 BasicBlock *BB,
Dan Gohman817a7c62012-03-22 18:24:56 +00001116 MapVector<Value *, RRInfo> &Retains,
1117 BBState &MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00001118 bool VisitBottomUp(BasicBlock *BB,
1119 DenseMap<const BasicBlock *, BBState> &BBStates,
1120 MapVector<Value *, RRInfo> &Retains);
Dan Gohman817a7c62012-03-22 18:24:56 +00001121 bool VisitInstructionTopDown(Instruction *Inst,
1122 DenseMap<Value *, RRInfo> &Releases,
1123 BBState &MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00001124 bool VisitTopDown(BasicBlock *BB,
1125 DenseMap<const BasicBlock *, BBState> &BBStates,
1126 DenseMap<Value *, RRInfo> &Releases);
1127 bool Visit(Function &F,
1128 DenseMap<const BasicBlock *, BBState> &BBStates,
1129 MapVector<Value *, RRInfo> &Retains,
1130 DenseMap<Value *, RRInfo> &Releases);
1131
1132 void MoveCalls(Value *Arg, RRInfo &RetainsToMove, RRInfo &ReleasesToMove,
1133 MapVector<Value *, RRInfo> &Retains,
1134 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman6320f522011-07-22 22:29:21 +00001135 SmallVectorImpl<Instruction *> &DeadInsts,
1136 Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001137
Michael Gottesman9de6f962013-01-22 21:49:00 +00001138 bool ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState> &BBStates,
1139 MapVector<Value *, RRInfo> &Retains,
1140 DenseMap<Value *, RRInfo> &Releases,
1141 Module *M,
Craig Topperb94011f2013-07-14 04:42:23 +00001142 SmallVectorImpl<Instruction *> &NewRetains,
1143 SmallVectorImpl<Instruction *> &NewReleases,
1144 SmallVectorImpl<Instruction *> &DeadInsts,
Michael Gottesman9de6f962013-01-22 21:49:00 +00001145 RRInfo &RetainsToMove,
1146 RRInfo &ReleasesToMove,
1147 Value *Arg,
1148 bool KnownSafe,
1149 bool &AnyPairsCompletelyEliminated);
1150
John McCalld935e9c2011-06-15 23:37:01 +00001151 bool PerformCodePlacement(DenseMap<const BasicBlock *, BBState> &BBStates,
1152 MapVector<Value *, RRInfo> &Retains,
Dan Gohman6320f522011-07-22 22:29:21 +00001153 DenseMap<Value *, RRInfo> &Releases,
1154 Module *M);
John McCalld935e9c2011-06-15 23:37:01 +00001155
1156 void OptimizeWeakCalls(Function &F);
1157
1158 bool OptimizeSequences(Function &F);
1159
1160 void OptimizeReturns(Function &F);
1161
Michael Gottesman9c118152013-04-29 06:16:57 +00001162#ifndef NDEBUG
1163 void GatherStatistics(Function &F, bool AfterOptimization = false);
1164#endif
1165
John McCalld935e9c2011-06-15 23:37:01 +00001166 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
1167 virtual bool doInitialization(Module &M);
1168 virtual bool runOnFunction(Function &F);
1169 virtual void releaseMemory();
1170
1171 public:
1172 static char ID;
1173 ObjCARCOpt() : FunctionPass(ID) {
1174 initializeObjCARCOptPass(*PassRegistry::getPassRegistry());
1175 }
1176 };
1177}
1178
1179char ObjCARCOpt::ID = 0;
1180INITIALIZE_PASS_BEGIN(ObjCARCOpt,
1181 "objc-arc", "ObjC ARC optimization", false, false)
1182INITIALIZE_PASS_DEPENDENCY(ObjCARCAliasAnalysis)
1183INITIALIZE_PASS_END(ObjCARCOpt,
1184 "objc-arc", "ObjC ARC optimization", false, false)
1185
1186Pass *llvm::createObjCARCOptPass() {
1187 return new ObjCARCOpt();
1188}
1189
1190void ObjCARCOpt::getAnalysisUsage(AnalysisUsage &AU) const {
1191 AU.addRequired<ObjCARCAliasAnalysis>();
1192 AU.addRequired<AliasAnalysis>();
1193 // ARC optimization doesn't currently split critical edges.
1194 AU.setPreservesCFG();
1195}
1196
Michael Gottesman97e3df02013-01-14 00:35:14 +00001197/// Turn objc_retainAutoreleasedReturnValue into objc_retain if the operand is
1198/// not a return value. Or, if it can be paired with an
1199/// objc_autoreleaseReturnValue, delete the pair and return true.
John McCalld935e9c2011-06-15 23:37:01 +00001200bool
1201ObjCARCOpt::OptimizeRetainRVCall(Function &F, Instruction *RetainRV) {
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001202 // Check for the argument being from an immediately preceding call or invoke.
Dan Gohmandae33492012-04-27 18:56:31 +00001203 const Value *Arg = GetObjCArg(RetainRV);
1204 ImmutableCallSite CS(Arg);
1205 if (const Instruction *Call = CS.getInstruction()) {
John McCalld935e9c2011-06-15 23:37:01 +00001206 if (Call->getParent() == RetainRV->getParent()) {
Dan Gohmandae33492012-04-27 18:56:31 +00001207 BasicBlock::const_iterator I = Call;
John McCalld935e9c2011-06-15 23:37:01 +00001208 ++I;
Michael Gottesman65c24812013-03-25 09:27:43 +00001209 while (IsNoopInstruction(I)) ++I;
John McCalld935e9c2011-06-15 23:37:01 +00001210 if (&*I == RetainRV)
1211 return false;
Dan Gohmandae33492012-04-27 18:56:31 +00001212 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001213 BasicBlock *RetainRVParent = RetainRV->getParent();
1214 if (II->getNormalDest() == RetainRVParent) {
Dan Gohmandae33492012-04-27 18:56:31 +00001215 BasicBlock::const_iterator I = RetainRVParent->begin();
Michael Gottesman65c24812013-03-25 09:27:43 +00001216 while (IsNoopInstruction(I)) ++I;
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001217 if (&*I == RetainRV)
1218 return false;
1219 }
John McCalld935e9c2011-06-15 23:37:01 +00001220 }
Dan Gohmane3ed2b02012-03-23 18:09:00 +00001221 }
John McCalld935e9c2011-06-15 23:37:01 +00001222
1223 // Check for being preceded by an objc_autoreleaseReturnValue on the same
1224 // pointer. In this case, we can delete the pair.
1225 BasicBlock::iterator I = RetainRV, Begin = RetainRV->getParent()->begin();
1226 if (I != Begin) {
Michael Gottesman65c24812013-03-25 09:27:43 +00001227 do --I; while (I != Begin && IsNoopInstruction(I));
John McCalld935e9c2011-06-15 23:37:01 +00001228 if (GetBasicInstructionClass(I) == IC_AutoreleaseRV &&
1229 GetObjCArg(I) == Arg) {
1230 Changed = true;
1231 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001232
Michael Gottesman89279f82013-04-05 18:10:41 +00001233 DEBUG(dbgs() << "Erasing autoreleaseRV,retainRV pair: " << *I << "\n"
1234 << "Erasing " << *RetainRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001235
John McCalld935e9c2011-06-15 23:37:01 +00001236 EraseInstruction(I);
1237 EraseInstruction(RetainRV);
1238 return true;
1239 }
1240 }
1241
1242 // Turn it to a plain objc_retain.
1243 Changed = true;
1244 ++NumPeeps;
Michael Gottesman10426b52013-01-07 21:26:07 +00001245
Michael Gottesman89279f82013-04-05 18:10:41 +00001246 DEBUG(dbgs() << "Transforming objc_retainAutoreleasedReturnValue => "
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001247 "objc_retain since the operand is not a return value.\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001248 "Old = " << *RetainRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001249
Michael Gottesman14acfac2013-07-06 01:39:23 +00001250 Constant *NewDecl = EP.get(ARCRuntimeEntryPoints::EPT_Retain);
1251 cast<CallInst>(RetainRV)->setCalledFunction(NewDecl);
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001252
Michael Gottesman89279f82013-04-05 18:10:41 +00001253 DEBUG(dbgs() << "New = " << *RetainRV << "\n");
Michael Gottesmandef07bb2013-01-05 17:55:42 +00001254
John McCalld935e9c2011-06-15 23:37:01 +00001255 return false;
1256}
1257
Michael Gottesman97e3df02013-01-14 00:35:14 +00001258/// Turn objc_autoreleaseReturnValue into objc_autorelease if the result is not
1259/// used as a return value.
John McCalld935e9c2011-06-15 23:37:01 +00001260void
Michael Gottesman556ff612013-01-12 01:25:19 +00001261ObjCARCOpt::OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1262 InstructionClass &Class) {
John McCalld935e9c2011-06-15 23:37:01 +00001263 // Check for a return of the pointer value.
1264 const Value *Ptr = GetObjCArg(AutoreleaseRV);
Dan Gohman10a18d52011-08-12 00:36:31 +00001265 SmallVector<const Value *, 2> Users;
1266 Users.push_back(Ptr);
1267 do {
1268 Ptr = Users.pop_back_val();
1269 for (Value::const_use_iterator UI = Ptr->use_begin(), UE = Ptr->use_end();
1270 UI != UE; ++UI) {
1271 const User *I = *UI;
1272 if (isa<ReturnInst>(I) || GetBasicInstructionClass(I) == IC_RetainRV)
1273 return;
1274 if (isa<BitCastInst>(I))
1275 Users.push_back(I);
1276 }
1277 } while (!Users.empty());
John McCalld935e9c2011-06-15 23:37:01 +00001278
1279 Changed = true;
1280 ++NumPeeps;
Michael Gottesman1bf69082013-01-06 21:07:11 +00001281
Michael Gottesman89279f82013-04-05 18:10:41 +00001282 DEBUG(dbgs() << "Transforming objc_autoreleaseReturnValue => "
Michael Gottesman1bf69082013-01-06 21:07:11 +00001283 "objc_autorelease since its operand is not used as a return "
1284 "value.\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001285 "Old = " << *AutoreleaseRV << "\n");
Michael Gottesman1bf69082013-01-06 21:07:11 +00001286
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001287 CallInst *AutoreleaseRVCI = cast<CallInst>(AutoreleaseRV);
Michael Gottesman14acfac2013-07-06 01:39:23 +00001288 Constant *NewDecl = EP.get(ARCRuntimeEntryPoints::EPT_Autorelease);
1289 AutoreleaseRVCI->setCalledFunction(NewDecl);
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001290 AutoreleaseRVCI->setTailCall(false); // Never tail call objc_autorelease.
Michael Gottesman556ff612013-01-12 01:25:19 +00001291 Class = IC_Autorelease;
Michael Gottesman10426b52013-01-07 21:26:07 +00001292
Michael Gottesman89279f82013-04-05 18:10:41 +00001293 DEBUG(dbgs() << "New: " << *AutoreleaseRV << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001294
John McCalld935e9c2011-06-15 23:37:01 +00001295}
1296
Michael Gottesman97e3df02013-01-14 00:35:14 +00001297/// Visit each call, one at a time, and make simplifications without doing any
1298/// additional analysis.
John McCalld935e9c2011-06-15 23:37:01 +00001299void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001300 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeIndividualCalls ==\n");
John McCalld935e9c2011-06-15 23:37:01 +00001301 // Reset all the flags in preparation for recomputing them.
1302 UsedInThisFunction = 0;
1303
1304 // Visit all objc_* calls in F.
1305 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
1306 Instruction *Inst = &*I++;
Michael Gottesman3f146e22013-01-01 16:05:48 +00001307
John McCalld935e9c2011-06-15 23:37:01 +00001308 InstructionClass Class = GetBasicInstructionClass(Inst);
1309
Michael Gottesman89279f82013-04-05 18:10:41 +00001310 DEBUG(dbgs() << "Visiting: Class: " << Class << "; " << *Inst << "\n");
Michael Gottesman782e3442013-01-17 18:32:34 +00001311
John McCalld935e9c2011-06-15 23:37:01 +00001312 switch (Class) {
1313 default: break;
1314
1315 // Delete no-op casts. These function calls have special semantics, but
1316 // the semantics are entirely implemented via lowering in the front-end,
1317 // so by the time they reach the optimizer, they are just no-op calls
1318 // which return their argument.
1319 //
1320 // There are gray areas here, as the ability to cast reference-counted
1321 // pointers to raw void* and back allows code to break ARC assumptions,
1322 // however these are currently considered to be unimportant.
1323 case IC_NoopCast:
1324 Changed = true;
1325 ++NumNoops;
Michael Gottesman89279f82013-04-05 18:10:41 +00001326 DEBUG(dbgs() << "Erasing no-op cast: " << *Inst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001327 EraseInstruction(Inst);
1328 continue;
1329
1330 // If the pointer-to-weak-pointer is null, it's undefined behavior.
1331 case IC_StoreWeak:
1332 case IC_LoadWeak:
1333 case IC_LoadWeakRetained:
1334 case IC_InitWeak:
1335 case IC_DestroyWeak: {
1336 CallInst *CI = cast<CallInst>(Inst);
Michael Gottesman65c24812013-03-25 09:27:43 +00001337 if (IsNullOrUndef(CI->getArgOperand(0))) {
Dan Gohman670f9372012-04-13 18:57:48 +00001338 Changed = true;
Chris Lattner229907c2011-07-18 04:54:35 +00001339 Type *Ty = CI->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001340 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1341 Constant::getNullValue(Ty),
1342 CI);
Michael Gottesman10426b52013-01-07 21:26:07 +00001343 llvm::Value *NewValue = UndefValue::get(CI->getType());
Michael Gottesman89279f82013-04-05 18:10:41 +00001344 DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1345 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001346 CI->replaceAllUsesWith(NewValue);
John McCalld935e9c2011-06-15 23:37:01 +00001347 CI->eraseFromParent();
1348 continue;
1349 }
1350 break;
1351 }
1352 case IC_CopyWeak:
1353 case IC_MoveWeak: {
1354 CallInst *CI = cast<CallInst>(Inst);
Michael Gottesman65c24812013-03-25 09:27:43 +00001355 if (IsNullOrUndef(CI->getArgOperand(0)) ||
1356 IsNullOrUndef(CI->getArgOperand(1))) {
Dan Gohman670f9372012-04-13 18:57:48 +00001357 Changed = true;
Chris Lattner229907c2011-07-18 04:54:35 +00001358 Type *Ty = CI->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001359 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1360 Constant::getNullValue(Ty),
1361 CI);
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001362
1363 llvm::Value *NewValue = UndefValue::get(CI->getType());
Michael Gottesman89279f82013-04-05 18:10:41 +00001364 DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1365 "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001366
Michael Gottesmanfec61c02013-01-06 21:54:30 +00001367 CI->replaceAllUsesWith(NewValue);
John McCalld935e9c2011-06-15 23:37:01 +00001368 CI->eraseFromParent();
1369 continue;
1370 }
1371 break;
1372 }
John McCalld935e9c2011-06-15 23:37:01 +00001373 case IC_RetainRV:
1374 if (OptimizeRetainRVCall(F, Inst))
1375 continue;
1376 break;
1377 case IC_AutoreleaseRV:
Michael Gottesman556ff612013-01-12 01:25:19 +00001378 OptimizeAutoreleaseRVCall(F, Inst, Class);
John McCalld935e9c2011-06-15 23:37:01 +00001379 break;
1380 }
1381
Michael Gottesmanb8c88362013-04-03 02:57:24 +00001382 // objc_autorelease(x) -> objc_release(x) if x is otherwise unused.
John McCalld935e9c2011-06-15 23:37:01 +00001383 if (IsAutorelease(Class) && Inst->use_empty()) {
1384 CallInst *Call = cast<CallInst>(Inst);
1385 const Value *Arg = Call->getArgOperand(0);
1386 Arg = FindSingleUseIdentifiedObject(Arg);
1387 if (Arg) {
1388 Changed = true;
1389 ++NumAutoreleases;
1390
1391 // Create the declaration lazily.
1392 LLVMContext &C = Inst->getContext();
Michael Gottesman01df4502013-07-06 01:41:35 +00001393
Michael Gottesman14acfac2013-07-06 01:39:23 +00001394 Constant *Decl = EP.get(ARCRuntimeEntryPoints::EPT_Release);
1395 CallInst *NewCall = CallInst::Create(Decl, Call->getArgOperand(0), "",
1396 Call);
Dmitri Gribenko3238fb72013-05-05 00:40:33 +00001397 NewCall->setMetadata(ImpreciseReleaseMDKind, MDNode::get(C, None));
Michael Gottesman10426b52013-01-07 21:26:07 +00001398
Michael Gottesman89279f82013-04-05 18:10:41 +00001399 DEBUG(dbgs() << "Replacing autorelease{,RV}(x) with objc_release(x) "
1400 "since x is otherwise unused.\nOld: " << *Call << "\nNew: "
1401 << *NewCall << "\n");
Michael Gottesman10426b52013-01-07 21:26:07 +00001402
John McCalld935e9c2011-06-15 23:37:01 +00001403 EraseInstruction(Call);
1404 Inst = NewCall;
1405 Class = IC_Release;
1406 }
1407 }
1408
1409 // For functions which can never be passed stack arguments, add
1410 // a tail keyword.
1411 if (IsAlwaysTail(Class)) {
1412 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001413 DEBUG(dbgs() << "Adding tail keyword to function since it can never be "
1414 "passed stack args: " << *Inst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001415 cast<CallInst>(Inst)->setTailCall();
1416 }
1417
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001418 // Ensure that functions that can never have a "tail" keyword due to the
1419 // semantics of ARC truly do not do so.
1420 if (IsNeverTail(Class)) {
1421 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001422 DEBUG(dbgs() << "Removing tail keyword from function: " << *Inst <<
Michael Gottesmanc9656fa2013-01-12 01:25:15 +00001423 "\n");
1424 cast<CallInst>(Inst)->setTailCall(false);
1425 }
1426
John McCalld935e9c2011-06-15 23:37:01 +00001427 // Set nounwind as needed.
1428 if (IsNoThrow(Class)) {
1429 Changed = true;
Michael Gottesman89279f82013-04-05 18:10:41 +00001430 DEBUG(dbgs() << "Found no throw class. Setting nounwind on: " << *Inst
1431 << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001432 cast<CallInst>(Inst)->setDoesNotThrow();
1433 }
1434
1435 if (!IsNoopOnNull(Class)) {
1436 UsedInThisFunction |= 1 << Class;
1437 continue;
1438 }
1439
1440 const Value *Arg = GetObjCArg(Inst);
1441
1442 // ARC calls with null are no-ops. Delete them.
Michael Gottesman65c24812013-03-25 09:27:43 +00001443 if (IsNullOrUndef(Arg)) {
John McCalld935e9c2011-06-15 23:37:01 +00001444 Changed = true;
1445 ++NumNoops;
Michael Gottesman89279f82013-04-05 18:10:41 +00001446 DEBUG(dbgs() << "ARC calls with null are no-ops. Erasing: " << *Inst
1447 << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001448 EraseInstruction(Inst);
1449 continue;
1450 }
1451
1452 // Keep track of which of retain, release, autorelease, and retain_block
1453 // are actually present in this function.
1454 UsedInThisFunction |= 1 << Class;
1455
1456 // If Arg is a PHI, and one or more incoming values to the
1457 // PHI are null, and the call is control-equivalent to the PHI, and there
1458 // are no relevant side effects between the PHI and the call, the call
1459 // could be pushed up to just those paths with non-null incoming values.
1460 // For now, don't bother splitting critical edges for this.
1461 SmallVector<std::pair<Instruction *, const Value *>, 4> Worklist;
1462 Worklist.push_back(std::make_pair(Inst, Arg));
1463 do {
1464 std::pair<Instruction *, const Value *> Pair = Worklist.pop_back_val();
1465 Inst = Pair.first;
1466 Arg = Pair.second;
1467
1468 const PHINode *PN = dyn_cast<PHINode>(Arg);
1469 if (!PN) continue;
1470
1471 // Determine if the PHI has any null operands, or any incoming
1472 // critical edges.
1473 bool HasNull = false;
1474 bool HasCriticalEdges = false;
1475 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1476 Value *Incoming =
1477 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
Michael Gottesman65c24812013-03-25 09:27:43 +00001478 if (IsNullOrUndef(Incoming))
John McCalld935e9c2011-06-15 23:37:01 +00001479 HasNull = true;
1480 else if (cast<TerminatorInst>(PN->getIncomingBlock(i)->back())
1481 .getNumSuccessors() != 1) {
1482 HasCriticalEdges = true;
1483 break;
1484 }
1485 }
1486 // If we have null operands and no critical edges, optimize.
1487 if (!HasCriticalEdges && HasNull) {
1488 SmallPtrSet<Instruction *, 4> DependingInstructions;
1489 SmallPtrSet<const BasicBlock *, 4> Visited;
1490
1491 // Check that there is nothing that cares about the reference
1492 // count between the call and the phi.
Dan Gohman8478d762012-04-13 00:59:57 +00001493 switch (Class) {
1494 case IC_Retain:
1495 case IC_RetainBlock:
1496 // These can always be moved up.
1497 break;
1498 case IC_Release:
Dan Gohman41375a32012-05-08 23:39:44 +00001499 // These can't be moved across things that care about the retain
1500 // count.
Dan Gohman8478d762012-04-13 00:59:57 +00001501 FindDependencies(NeedsPositiveRetainCount, Arg,
1502 Inst->getParent(), Inst,
1503 DependingInstructions, Visited, PA);
1504 break;
1505 case IC_Autorelease:
1506 // These can't be moved across autorelease pool scope boundaries.
1507 FindDependencies(AutoreleasePoolBoundary, Arg,
1508 Inst->getParent(), Inst,
1509 DependingInstructions, Visited, PA);
1510 break;
1511 case IC_RetainRV:
1512 case IC_AutoreleaseRV:
1513 // Don't move these; the RV optimization depends on the autoreleaseRV
1514 // being tail called, and the retainRV being immediately after a call
1515 // (which might still happen if we get lucky with codegen layout, but
1516 // it's not worth taking the chance).
1517 continue;
1518 default:
1519 llvm_unreachable("Invalid dependence flavor");
1520 }
1521
John McCalld935e9c2011-06-15 23:37:01 +00001522 if (DependingInstructions.size() == 1 &&
1523 *DependingInstructions.begin() == PN) {
1524 Changed = true;
1525 ++NumPartialNoops;
1526 // Clone the call into each predecessor that has a non-null value.
1527 CallInst *CInst = cast<CallInst>(Inst);
Chris Lattner229907c2011-07-18 04:54:35 +00001528 Type *ParamTy = CInst->getArgOperand(0)->getType();
John McCalld935e9c2011-06-15 23:37:01 +00001529 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1530 Value *Incoming =
1531 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
Michael Gottesman65c24812013-03-25 09:27:43 +00001532 if (!IsNullOrUndef(Incoming)) {
John McCalld935e9c2011-06-15 23:37:01 +00001533 CallInst *Clone = cast<CallInst>(CInst->clone());
1534 Value *Op = PN->getIncomingValue(i);
1535 Instruction *InsertPos = &PN->getIncomingBlock(i)->back();
1536 if (Op->getType() != ParamTy)
1537 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
1538 Clone->setArgOperand(0, Op);
1539 Clone->insertBefore(InsertPos);
Michael Gottesmanc189a392013-01-09 19:23:24 +00001540
Michael Gottesman89279f82013-04-05 18:10:41 +00001541 DEBUG(dbgs() << "Cloning "
Michael Gottesmanc189a392013-01-09 19:23:24 +00001542 << *CInst << "\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00001543 "And inserting clone at " << *InsertPos << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001544 Worklist.push_back(std::make_pair(Clone, Incoming));
1545 }
1546 }
1547 // Erase the original call.
Michael Gottesmanc189a392013-01-09 19:23:24 +00001548 DEBUG(dbgs() << "Erasing: " << *CInst << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00001549 EraseInstruction(CInst);
1550 continue;
1551 }
1552 }
1553 } while (!Worklist.empty());
1554 }
1555}
1556
Michael Gottesman323964c2013-04-18 05:39:45 +00001557/// If we have a top down pointer in the S_Use state, make sure that there are
1558/// no CFG hazards by checking the states of various bottom up pointers.
1559static void CheckForUseCFGHazard(const Sequence SuccSSeq,
1560 const bool SuccSRRIKnownSafe,
1561 PtrState &S,
1562 bool &SomeSuccHasSame,
1563 bool &AllSuccsHaveSame,
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001564 bool &NotAllSeqEqualButKnownSafe,
Michael Gottesman323964c2013-04-18 05:39:45 +00001565 bool &ShouldContinue) {
1566 switch (SuccSSeq) {
1567 case S_CanRelease: {
Michael Gottesman93132252013-06-21 06:59:02 +00001568 if (!S.IsKnownSafe() && !SuccSRRIKnownSafe) {
Michael Gottesman323964c2013-04-18 05:39:45 +00001569 S.ClearSequenceProgress();
1570 break;
1571 }
Michael Gottesman2f294592013-06-21 19:12:36 +00001572 S.SetCFGHazardAfflicted(true);
Michael Gottesman323964c2013-04-18 05:39:45 +00001573 ShouldContinue = true;
1574 break;
1575 }
1576 case S_Use:
1577 SomeSuccHasSame = true;
1578 break;
1579 case S_Stop:
1580 case S_Release:
1581 case S_MovableRelease:
Michael Gottesman93132252013-06-21 06:59:02 +00001582 if (!S.IsKnownSafe() && !SuccSRRIKnownSafe)
Michael Gottesman323964c2013-04-18 05:39:45 +00001583 AllSuccsHaveSame = false;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001584 else
1585 NotAllSeqEqualButKnownSafe = true;
Michael Gottesman323964c2013-04-18 05:39:45 +00001586 break;
1587 case S_Retain:
1588 llvm_unreachable("bottom-up pointer in retain state!");
1589 case S_None:
1590 llvm_unreachable("This should have been handled earlier.");
1591 }
1592}
1593
1594/// If we have a Top Down pointer in the S_CanRelease state, make sure that
1595/// there are no CFG hazards by checking the states of various bottom up
1596/// pointers.
1597static void CheckForCanReleaseCFGHazard(const Sequence SuccSSeq,
1598 const bool SuccSRRIKnownSafe,
1599 PtrState &S,
1600 bool &SomeSuccHasSame,
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001601 bool &AllSuccsHaveSame,
1602 bool &NotAllSeqEqualButKnownSafe) {
Michael Gottesman323964c2013-04-18 05:39:45 +00001603 switch (SuccSSeq) {
1604 case S_CanRelease:
1605 SomeSuccHasSame = true;
1606 break;
1607 case S_Stop:
1608 case S_Release:
1609 case S_MovableRelease:
1610 case S_Use:
Michael Gottesman93132252013-06-21 06:59:02 +00001611 if (!S.IsKnownSafe() && !SuccSRRIKnownSafe)
Michael Gottesman323964c2013-04-18 05:39:45 +00001612 AllSuccsHaveSame = false;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001613 else
1614 NotAllSeqEqualButKnownSafe = true;
Michael Gottesman323964c2013-04-18 05:39:45 +00001615 break;
1616 case S_Retain:
1617 llvm_unreachable("bottom-up pointer in retain state!");
1618 case S_None:
1619 llvm_unreachable("This should have been handled earlier.");
1620 }
1621}
1622
Michael Gottesman97e3df02013-01-14 00:35:14 +00001623/// Check for critical edges, loop boundaries, irreducible control flow, or
1624/// other CFG structures where moving code across the edge would result in it
1625/// being executed more.
John McCalld935e9c2011-06-15 23:37:01 +00001626void
1627ObjCARCOpt::CheckForCFGHazards(const BasicBlock *BB,
1628 DenseMap<const BasicBlock *, BBState> &BBStates,
1629 BBState &MyStates) const {
1630 // If any top-down local-use or possible-dec has a succ which is earlier in
1631 // the sequence, forget it.
Dan Gohman55b06742012-03-02 01:13:53 +00001632 for (BBState::ptr_iterator I = MyStates.top_down_ptr_begin(),
Michael Gottesman323964c2013-04-18 05:39:45 +00001633 E = MyStates.top_down_ptr_end(); I != E; ++I) {
1634 PtrState &S = I->second;
1635 const Sequence Seq = I->second.GetSeq();
Dan Gohman0155f302012-02-17 18:59:53 +00001636
Michael Gottesman323964c2013-04-18 05:39:45 +00001637 // We only care about S_Retain, S_CanRelease, and S_Use.
1638 if (Seq == S_None)
1639 continue;
Dan Gohman0155f302012-02-17 18:59:53 +00001640
Michael Gottesman323964c2013-04-18 05:39:45 +00001641 // Make sure that if extra top down states are added in the future that this
1642 // code is updated to handle it.
1643 assert((Seq == S_Retain || Seq == S_CanRelease || Seq == S_Use) &&
1644 "Unknown top down sequence state.");
1645
1646 const Value *Arg = I->first;
1647 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
1648 bool SomeSuccHasSame = false;
1649 bool AllSuccsHaveSame = true;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001650 bool NotAllSeqEqualButKnownSafe = false;
Michael Gottesman323964c2013-04-18 05:39:45 +00001651
1652 succ_const_iterator SI(TI), SE(TI, false);
1653
1654 for (; SI != SE; ++SI) {
1655 // If VisitBottomUp has pointer information for this successor, take
1656 // what we know about it.
1657 const DenseMap<const BasicBlock *, BBState>::iterator BBI =
1658 BBStates.find(*SI);
1659 assert(BBI != BBStates.end());
1660 const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
1661 const Sequence SuccSSeq = SuccS.GetSeq();
1662
1663 // If bottom up, the pointer is in an S_None state, clear the sequence
1664 // progress since the sequence in the bottom up state finished
1665 // suggesting a mismatch in between retains/releases. This is true for
1666 // all three cases that we are handling here: S_Retain, S_Use, and
1667 // S_CanRelease.
1668 if (SuccSSeq == S_None) {
Dan Gohman12130272011-08-12 00:26:31 +00001669 S.ClearSequenceProgress();
Michael Gottesman323964c2013-04-18 05:39:45 +00001670 continue;
1671 }
1672
1673 // If we have S_Use or S_CanRelease, perform our check for cfg hazard
1674 // checks.
Michael Gottesman93132252013-06-21 06:59:02 +00001675 const bool SuccSRRIKnownSafe = SuccS.IsKnownSafe();
Michael Gottesman323964c2013-04-18 05:39:45 +00001676
1677 // *NOTE* We do not use Seq from above here since we are allowing for
1678 // S.GetSeq() to change while we are visiting basic blocks.
1679 switch(S.GetSeq()) {
1680 case S_Use: {
1681 bool ShouldContinue = false;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001682 CheckForUseCFGHazard(SuccSSeq, SuccSRRIKnownSafe, S, SomeSuccHasSame,
1683 AllSuccsHaveSame, NotAllSeqEqualButKnownSafe,
Michael Gottesman323964c2013-04-18 05:39:45 +00001684 ShouldContinue);
1685 if (ShouldContinue)
1686 continue;
1687 break;
1688 }
1689 case S_CanRelease: {
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001690 CheckForCanReleaseCFGHazard(SuccSSeq, SuccSRRIKnownSafe, S,
1691 SomeSuccHasSame, AllSuccsHaveSame,
1692 NotAllSeqEqualButKnownSafe);
Michael Gottesman323964c2013-04-18 05:39:45 +00001693 break;
1694 }
1695 case S_Retain:
1696 case S_None:
1697 case S_Stop:
1698 case S_Release:
1699 case S_MovableRelease:
1700 break;
1701 }
John McCalld935e9c2011-06-15 23:37:01 +00001702 }
Michael Gottesman323964c2013-04-18 05:39:45 +00001703
1704 // If the state at the other end of any of the successor edges
1705 // matches the current state, require all edges to match. This
1706 // guards against loops in the middle of a sequence.
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001707 if (SomeSuccHasSame && !AllSuccsHaveSame) {
Michael Gottesman323964c2013-04-18 05:39:45 +00001708 S.ClearSequenceProgress();
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001709 } else if (NotAllSeqEqualButKnownSafe) {
1710 // If we would have cleared the state foregoing the fact that we are known
1711 // safe, stop code motion. This is because whether or not it is safe to
1712 // remove RR pairs via KnownSafe is an orthogonal concept to whether we
1713 // are allowed to perform code motion.
Michael Gottesman2f294592013-06-21 19:12:36 +00001714 S.SetCFGHazardAfflicted(true);
Michael Gottesmane67f40c2013-05-24 20:44:05 +00001715 }
Michael Gottesman323964c2013-04-18 05:39:45 +00001716 }
John McCalld935e9c2011-06-15 23:37:01 +00001717}
1718
1719bool
Dan Gohman817a7c62012-03-22 18:24:56 +00001720ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
Dan Gohman5c70fad2012-03-23 17:47:54 +00001721 BasicBlock *BB,
Dan Gohman817a7c62012-03-22 18:24:56 +00001722 MapVector<Value *, RRInfo> &Retains,
1723 BBState &MyStates) {
1724 bool NestingDetected = false;
1725 InstructionClass Class = GetInstructionClass(Inst);
1726 const Value *Arg = 0;
Michael Gottesman79249972013-04-05 23:46:45 +00001727
Michael Gottesman1d8d2572013-04-05 22:54:28 +00001728 DEBUG(dbgs() << "Class: " << Class << "\n");
Michael Gottesman79249972013-04-05 23:46:45 +00001729
Dan Gohman817a7c62012-03-22 18:24:56 +00001730 switch (Class) {
1731 case IC_Release: {
1732 Arg = GetObjCArg(Inst);
1733
1734 PtrState &S = MyStates.getPtrBottomUpState(Arg);
1735
1736 // If we see two releases in a row on the same pointer. If so, make
1737 // a note, and we'll cicle back to revisit it after we've
1738 // hopefully eliminated the second release, which may allow us to
1739 // eliminate the first release too.
1740 // Theoretically we could implement removal of nested retain+release
1741 // pairs by making PtrState hold a stack of states, but this is
1742 // simple and avoids adding overhead for the non-nested case.
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001743 if (S.GetSeq() == S_Release || S.GetSeq() == S_MovableRelease) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001744 DEBUG(dbgs() << "Found nested releases (i.e. a release pair)\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001745 NestingDetected = true;
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001746 }
Dan Gohman817a7c62012-03-22 18:24:56 +00001747
Dan Gohman817a7c62012-03-22 18:24:56 +00001748 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001749 Sequence NewSeq = ReleaseMetadata ? S_MovableRelease : S_Release;
1750 ANNOTATE_BOTTOMUP(Inst, Arg, S.GetSeq(), NewSeq);
1751 S.ResetSequenceProgress(NewSeq);
Michael Gottesmanf701d3f2013-06-21 07:03:07 +00001752 S.SetReleaseMetadata(ReleaseMetadata);
Michael Gottesman93132252013-06-21 06:59:02 +00001753 S.SetKnownSafe(S.HasKnownPositiveRefCount());
Michael Gottesmanb82a1792013-06-21 07:00:44 +00001754 S.SetTailCallRelease(cast<CallInst>(Inst)->isTailCall());
Michael Gottesman4f6ef112013-06-21 19:44:27 +00001755 S.InsertCall(Inst);
Dan Gohmandf476e52012-09-04 23:16:20 +00001756 S.SetKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001757 break;
1758 }
1759 case IC_RetainBlock:
Michael Gottesman158fdf62013-03-28 20:11:19 +00001760 // In OptimizeIndividualCalls, we have strength reduced all optimizable
1761 // objc_retainBlocks to objc_retains. Thus at this point any
1762 // objc_retainBlocks that we see are not optimizable.
1763 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001764 case IC_Retain:
1765 case IC_RetainRV: {
1766 Arg = GetObjCArg(Inst);
1767
1768 PtrState &S = MyStates.getPtrBottomUpState(Arg);
Dan Gohman62079b42012-04-25 00:50:46 +00001769 S.SetKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001770
Michael Gottesman81b1d432013-03-26 00:42:04 +00001771 Sequence OldSeq = S.GetSeq();
1772 switch (OldSeq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00001773 case S_Stop:
1774 case S_Release:
1775 case S_MovableRelease:
1776 case S_Use:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00001777 // If OldSeq is not S_Use or OldSeq is S_Use and we are tracking an
1778 // imprecise release, clear our reverse insertion points.
Michael Gottesmanf0401182013-06-21 19:12:38 +00001779 if (OldSeq != S_Use || S.IsTrackingImpreciseReleases())
Michael Gottesman4f6ef112013-06-21 19:44:27 +00001780 S.ClearReverseInsertPts();
Dan Gohman817a7c62012-03-22 18:24:56 +00001781 // FALL THROUGH
1782 case S_CanRelease:
1783 // Don't do retain+release tracking for IC_RetainRV, because it's
1784 // better to let it remain as the first instruction after a call.
Michael Gottesmanba648592013-03-28 23:08:44 +00001785 if (Class != IC_RetainRV)
Michael Gottesmane3943d02013-06-21 19:44:30 +00001786 Retains[Inst] = S.GetRRInfo();
Dan Gohman817a7c62012-03-22 18:24:56 +00001787 S.ClearSequenceProgress();
1788 break;
1789 case S_None:
1790 break;
1791 case S_Retain:
1792 llvm_unreachable("bottom-up pointer in retain state!");
1793 }
Michael Gottesman79249972013-04-05 23:46:45 +00001794 ANNOTATE_BOTTOMUP(Inst, Arg, OldSeq, S.GetSeq());
Michael Gottesman31ba23a2013-04-05 22:54:32 +00001795 // A retain moving bottom up can be a use.
1796 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001797 }
1798 case IC_AutoreleasepoolPop:
1799 // Conservatively, clear MyStates for all known pointers.
1800 MyStates.clearBottomUpPointers();
1801 return NestingDetected;
1802 case IC_AutoreleasepoolPush:
1803 case IC_None:
1804 // These are irrelevant.
1805 return NestingDetected;
Michael Gottesmana76143ee2013-05-13 23:49:42 +00001806 case IC_User:
1807 // If we have a store into an alloca of a pointer we are tracking, the
1808 // pointer has multiple owners implying that we must be more conservative.
1809 //
1810 // This comes up in the context of a pointer being ``KnownSafe''. In the
Alp Tokercb402912014-01-24 17:20:08 +00001811 // presence of a block being initialized, the frontend will emit the
Michael Gottesmana76143ee2013-05-13 23:49:42 +00001812 // objc_retain on the original pointer and the release on the pointer loaded
1813 // from the alloca. The optimizer will through the provenance analysis
1814 // realize that the two are related, but since we only require KnownSafe in
1815 // one direction, will match the inner retain on the original pointer with
1816 // the guard release on the original pointer. This is fixed by ensuring that
Alp Tokercb402912014-01-24 17:20:08 +00001817 // in the presence of allocas we only unconditionally remove pointers if
Michael Gottesmana76143ee2013-05-13 23:49:42 +00001818 // both our retain and our release are KnownSafe.
1819 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1820 if (AreAnyUnderlyingObjectsAnAlloca(SI->getPointerOperand())) {
1821 BBState::ptr_iterator I = MyStates.findPtrBottomUpState(
1822 StripPointerCastsAndObjCCalls(SI->getValueOperand()));
1823 if (I != MyStates.bottom_up_ptr_end())
Michael Gottesman5a91bbf2013-05-24 20:44:02 +00001824 MultiOwnersSet.insert(I->first);
Michael Gottesmana76143ee2013-05-13 23:49:42 +00001825 }
1826 }
1827 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001828 default:
1829 break;
1830 }
1831
1832 // Consider any other possible effects of this instruction on each
1833 // pointer being tracked.
1834 for (BBState::ptr_iterator MI = MyStates.bottom_up_ptr_begin(),
1835 ME = MyStates.bottom_up_ptr_end(); MI != ME; ++MI) {
1836 const Value *Ptr = MI->first;
1837 if (Ptr == Arg)
1838 continue; // Handled above.
1839 PtrState &S = MI->second;
1840 Sequence Seq = S.GetSeq();
1841
1842 // Check for possible releases.
1843 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001844 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
1845 << "\n");
Michael Gottesman764b1cf2013-03-23 05:46:19 +00001846 S.ClearKnownPositiveRefCount();
Dan Gohman817a7c62012-03-22 18:24:56 +00001847 switch (Seq) {
1848 case S_Use:
1849 S.SetSeq(S_CanRelease);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001850 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S.GetSeq());
Dan Gohman817a7c62012-03-22 18:24:56 +00001851 continue;
1852 case S_CanRelease:
1853 case S_Release:
1854 case S_MovableRelease:
1855 case S_Stop:
1856 case S_None:
1857 break;
1858 case S_Retain:
1859 llvm_unreachable("bottom-up pointer in retain state!");
1860 }
1861 }
1862
1863 // Check for possible direct uses.
1864 switch (Seq) {
1865 case S_Release:
1866 case S_MovableRelease:
1867 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001868 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
1869 << "\n");
Michael Gottesman4f6ef112013-06-21 19:44:27 +00001870 assert(!S.HasReverseInsertPts());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001871 // If this is an invoke instruction, we're scanning it as part of
1872 // one of its successor blocks, since we can't insert code after it
1873 // in its own block, and we don't want to split critical edges.
1874 if (isa<InvokeInst>(Inst))
Michael Gottesman4f6ef112013-06-21 19:44:27 +00001875 S.InsertReverseInsertPt(BB->getFirstInsertionPt());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001876 else
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001877 S.InsertReverseInsertPt(std::next(BasicBlock::iterator(Inst)));
Dan Gohman817a7c62012-03-22 18:24:56 +00001878 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001879 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
John McCall20182ac2013-03-22 21:38:36 +00001880 } else if (Seq == S_Release && IsUser(Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001881 DEBUG(dbgs() << "PreciseReleaseUse: Seq: " << Seq << "; " << *Ptr
1882 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001883 // Non-movable releases depend on any possible objc pointer use.
1884 S.SetSeq(S_Stop);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001885 ANNOTATE_BOTTOMUP(Inst, Ptr, S_Release, S_Stop);
Michael Gottesman4f6ef112013-06-21 19:44:27 +00001886 assert(!S.HasReverseInsertPts());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001887 // As above; handle invoke specially.
1888 if (isa<InvokeInst>(Inst))
Michael Gottesman4f6ef112013-06-21 19:44:27 +00001889 S.InsertReverseInsertPt(BB->getFirstInsertionPt());
Dan Gohman5c70fad2012-03-23 17:47:54 +00001890 else
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001891 S.InsertReverseInsertPt(std::next(BasicBlock::iterator(Inst)));
Dan Gohman817a7c62012-03-22 18:24:56 +00001892 }
1893 break;
1894 case S_Stop:
Michael Gottesman81b1d432013-03-26 00:42:04 +00001895 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001896 DEBUG(dbgs() << "PreciseStopUse: Seq: " << Seq << "; " << *Ptr
1897 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00001898 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00001899 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
1900 }
Dan Gohman817a7c62012-03-22 18:24:56 +00001901 break;
1902 case S_CanRelease:
1903 case S_Use:
1904 case S_None:
1905 break;
1906 case S_Retain:
1907 llvm_unreachable("bottom-up pointer in retain state!");
1908 }
1909 }
1910
1911 return NestingDetected;
1912}
1913
1914bool
John McCalld935e9c2011-06-15 23:37:01 +00001915ObjCARCOpt::VisitBottomUp(BasicBlock *BB,
1916 DenseMap<const BasicBlock *, BBState> &BBStates,
1917 MapVector<Value *, RRInfo> &Retains) {
Michael Gottesman89279f82013-04-05 18:10:41 +00001918
1919 DEBUG(dbgs() << "\n== ObjCARCOpt::VisitBottomUp ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00001920
John McCalld935e9c2011-06-15 23:37:01 +00001921 bool NestingDetected = false;
1922 BBState &MyStates = BBStates[BB];
1923
1924 // Merge the states from each successor to compute the initial state
1925 // for the current block.
Dan Gohman10c82ce2012-08-27 18:31:36 +00001926 BBState::edge_iterator SI(MyStates.succ_begin()),
1927 SE(MyStates.succ_end());
1928 if (SI != SE) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00001929 const BasicBlock *Succ = *SI;
1930 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Succ);
1931 assert(I != BBStates.end());
1932 MyStates.InitFromSucc(I->second);
1933 ++SI;
1934 for (; SI != SE; ++SI) {
1935 Succ = *SI;
1936 I = BBStates.find(Succ);
1937 assert(I != BBStates.end());
1938 MyStates.MergeSucc(I->second);
1939 }
Michael Gottesman60f6b282013-03-29 05:13:07 +00001940 }
Michael Gottesmancd4de0f2013-03-26 00:42:09 +00001941
Michael Gottesman43e7e002013-04-03 22:41:59 +00001942 // If ARC Annotations are enabled, output the current state of pointers at the
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00001943 // bottom of the basic block.
Michael Gottesman43e7e002013-04-03 22:41:59 +00001944 ANNOTATE_BOTTOMUP_BBEND(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00001945
John McCalld935e9c2011-06-15 23:37:01 +00001946 // Visit all the instructions, bottom-up.
1947 for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; --I) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001948 Instruction *Inst = std::prev(I);
Dan Gohman5c70fad2012-03-23 17:47:54 +00001949
1950 // Invoke instructions are visited as part of their successors (below).
1951 if (isa<InvokeInst>(Inst))
1952 continue;
1953
Michael Gottesman89279f82013-04-05 18:10:41 +00001954 DEBUG(dbgs() << "Visiting " << *Inst << "\n");
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00001955
Dan Gohman5c70fad2012-03-23 17:47:54 +00001956 NestingDetected |= VisitInstructionBottomUp(Inst, BB, Retains, MyStates);
1957 }
1958
Dan Gohmandae33492012-04-27 18:56:31 +00001959 // If there's a predecessor with an invoke, visit the invoke as if it were
1960 // part of this block, since we can't insert code after an invoke in its own
1961 // block, and we don't want to split critical edges.
Dan Gohmanc24c66f2012-04-24 22:53:18 +00001962 for (BBState::edge_iterator PI(MyStates.pred_begin()),
1963 PE(MyStates.pred_end()); PI != PE; ++PI) {
Dan Gohman5c70fad2012-03-23 17:47:54 +00001964 BasicBlock *Pred = *PI;
Dan Gohmandae33492012-04-27 18:56:31 +00001965 if (InvokeInst *II = dyn_cast<InvokeInst>(&Pred->back()))
1966 NestingDetected |= VisitInstructionBottomUp(II, BB, Retains, MyStates);
Dan Gohman817a7c62012-03-22 18:24:56 +00001967 }
John McCalld935e9c2011-06-15 23:37:01 +00001968
Michael Gottesman43e7e002013-04-03 22:41:59 +00001969 // If ARC Annotations are enabled, output the current state of pointers at the
1970 // top of the basic block.
1971 ANNOTATE_BOTTOMUP_BBSTART(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00001972
Dan Gohman817a7c62012-03-22 18:24:56 +00001973 return NestingDetected;
1974}
John McCalld935e9c2011-06-15 23:37:01 +00001975
Dan Gohman817a7c62012-03-22 18:24:56 +00001976bool
1977ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
1978 DenseMap<Value *, RRInfo> &Releases,
1979 BBState &MyStates) {
1980 bool NestingDetected = false;
1981 InstructionClass Class = GetInstructionClass(Inst);
1982 const Value *Arg = 0;
John McCalld935e9c2011-06-15 23:37:01 +00001983
Dan Gohman817a7c62012-03-22 18:24:56 +00001984 switch (Class) {
1985 case IC_RetainBlock:
Michael Gottesman158fdf62013-03-28 20:11:19 +00001986 // In OptimizeIndividualCalls, we have strength reduced all optimizable
1987 // objc_retainBlocks to objc_retains. Thus at this point any
1988 // objc_retainBlocks that we see are not optimizable.
1989 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00001990 case IC_Retain:
1991 case IC_RetainRV: {
1992 Arg = GetObjCArg(Inst);
1993
1994 PtrState &S = MyStates.getPtrTopDownState(Arg);
1995
1996 // Don't do retain+release tracking for IC_RetainRV, because it's
1997 // better to let it remain as the first instruction after a call.
1998 if (Class != IC_RetainRV) {
1999 // If we see two retains in a row on the same pointer. If so, make
John McCalld935e9c2011-06-15 23:37:01 +00002000 // a note, and we'll cicle back to revisit it after we've
Dan Gohman817a7c62012-03-22 18:24:56 +00002001 // hopefully eliminated the second retain, which may allow us to
2002 // eliminate the first retain too.
John McCalld935e9c2011-06-15 23:37:01 +00002003 // Theoretically we could implement removal of nested retain+release
2004 // pairs by making PtrState hold a stack of states, but this is
2005 // simple and avoids adding overhead for the non-nested case.
Dan Gohman817a7c62012-03-22 18:24:56 +00002006 if (S.GetSeq() == S_Retain)
John McCalld935e9c2011-06-15 23:37:01 +00002007 NestingDetected = true;
2008
Michael Gottesman81b1d432013-03-26 00:42:04 +00002009 ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_Retain);
Dan Gohman62079b42012-04-25 00:50:46 +00002010 S.ResetSequenceProgress(S_Retain);
Michael Gottesman93132252013-06-21 06:59:02 +00002011 S.SetKnownSafe(S.HasKnownPositiveRefCount());
Michael Gottesman4f6ef112013-06-21 19:44:27 +00002012 S.InsertCall(Inst);
John McCalld935e9c2011-06-15 23:37:01 +00002013 }
John McCalld935e9c2011-06-15 23:37:01 +00002014
Dan Gohmandf476e52012-09-04 23:16:20 +00002015 S.SetKnownPositiveRefCount();
Dan Gohmanf64ff8e2012-07-23 19:27:31 +00002016
2017 // A retain can be a potential use; procede to the generic checking
2018 // code below.
2019 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002020 }
2021 case IC_Release: {
2022 Arg = GetObjCArg(Inst);
2023
2024 PtrState &S = MyStates.getPtrTopDownState(Arg);
Michael Gottesman764b1cf2013-03-23 05:46:19 +00002025 S.ClearKnownPositiveRefCount();
Michael Gottesman79249972013-04-05 23:46:45 +00002026
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002027 Sequence OldSeq = S.GetSeq();
Michael Gottesman79249972013-04-05 23:46:45 +00002028
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002029 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Michael Gottesman79249972013-04-05 23:46:45 +00002030
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002031 switch (OldSeq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00002032 case S_Retain:
2033 case S_CanRelease:
Michael Gottesman1d8d2572013-04-05 22:54:28 +00002034 if (OldSeq == S_Retain || ReleaseMetadata != 0)
Michael Gottesman4f6ef112013-06-21 19:44:27 +00002035 S.ClearReverseInsertPts();
Dan Gohman817a7c62012-03-22 18:24:56 +00002036 // FALL THROUGH
2037 case S_Use:
Michael Gottesmanf701d3f2013-06-21 07:03:07 +00002038 S.SetReleaseMetadata(ReleaseMetadata);
Michael Gottesmanb82a1792013-06-21 07:00:44 +00002039 S.SetTailCallRelease(cast<CallInst>(Inst)->isTailCall());
Michael Gottesmane3943d02013-06-21 19:44:30 +00002040 Releases[Inst] = S.GetRRInfo();
Michael Gottesman81b1d432013-03-26 00:42:04 +00002041 ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_None);
Dan Gohman817a7c62012-03-22 18:24:56 +00002042 S.ClearSequenceProgress();
2043 break;
2044 case S_None:
2045 break;
2046 case S_Stop:
2047 case S_Release:
2048 case S_MovableRelease:
2049 llvm_unreachable("top-down pointer in release state!");
2050 }
2051 break;
2052 }
2053 case IC_AutoreleasepoolPop:
2054 // Conservatively, clear MyStates for all known pointers.
2055 MyStates.clearTopDownPointers();
2056 return NestingDetected;
2057 case IC_AutoreleasepoolPush:
2058 case IC_None:
2059 // These are irrelevant.
2060 return NestingDetected;
2061 default:
2062 break;
2063 }
2064
2065 // Consider any other possible effects of this instruction on each
2066 // pointer being tracked.
2067 for (BBState::ptr_iterator MI = MyStates.top_down_ptr_begin(),
2068 ME = MyStates.top_down_ptr_end(); MI != ME; ++MI) {
2069 const Value *Ptr = MI->first;
2070 if (Ptr == Arg)
2071 continue; // Handled above.
2072 PtrState &S = MI->second;
2073 Sequence Seq = S.GetSeq();
2074
2075 // Check for possible releases.
2076 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Michael Gottesmanbab49e972013-04-05 18:26:08 +00002077 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
Michael Gottesman79249972013-04-05 23:46:45 +00002078 << "\n");
Michael Gottesman764b1cf2013-03-23 05:46:19 +00002079 S.ClearKnownPositiveRefCount();
John McCalld935e9c2011-06-15 23:37:01 +00002080 switch (Seq) {
Dan Gohman817a7c62012-03-22 18:24:56 +00002081 case S_Retain:
2082 S.SetSeq(S_CanRelease);
Michael Gottesman81b1d432013-03-26 00:42:04 +00002083 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_CanRelease);
Michael Gottesman4f6ef112013-06-21 19:44:27 +00002084 assert(!S.HasReverseInsertPts());
2085 S.InsertReverseInsertPt(Inst);
Dan Gohman817a7c62012-03-22 18:24:56 +00002086
2087 // One call can't cause a transition from S_Retain to S_CanRelease
2088 // and S_CanRelease to S_Use. If we've made the first transition,
2089 // we're done.
2090 continue;
John McCalld935e9c2011-06-15 23:37:01 +00002091 case S_Use:
Dan Gohman817a7c62012-03-22 18:24:56 +00002092 case S_CanRelease:
John McCalld935e9c2011-06-15 23:37:01 +00002093 case S_None:
2094 break;
Dan Gohman817a7c62012-03-22 18:24:56 +00002095 case S_Stop:
2096 case S_Release:
2097 case S_MovableRelease:
2098 llvm_unreachable("top-down pointer in release state!");
John McCalld935e9c2011-06-15 23:37:01 +00002099 }
2100 }
Dan Gohman817a7c62012-03-22 18:24:56 +00002101
2102 // Check for possible direct uses.
2103 switch (Seq) {
2104 case S_CanRelease:
Michael Gottesman81b1d432013-03-26 00:42:04 +00002105 if (CanUse(Inst, Ptr, PA, Class)) {
Michael Gottesmanbab49e972013-04-05 18:26:08 +00002106 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
2107 << "\n");
Dan Gohman817a7c62012-03-22 18:24:56 +00002108 S.SetSeq(S_Use);
Michael Gottesman81b1d432013-03-26 00:42:04 +00002109 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_Use);
2110 }
Dan Gohman817a7c62012-03-22 18:24:56 +00002111 break;
2112 case S_Retain:
2113 case S_Use:
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 }
John McCalld935e9c2011-06-15 23:37:01 +00002121 }
2122
2123 return NestingDetected;
2124}
2125
2126bool
2127ObjCARCOpt::VisitTopDown(BasicBlock *BB,
2128 DenseMap<const BasicBlock *, BBState> &BBStates,
2129 DenseMap<Value *, RRInfo> &Releases) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002130 DEBUG(dbgs() << "\n== ObjCARCOpt::VisitTopDown ==\n");
John McCalld935e9c2011-06-15 23:37:01 +00002131 bool NestingDetected = false;
2132 BBState &MyStates = BBStates[BB];
2133
2134 // Merge the states from each predecessor to compute the initial state
2135 // for the current block.
Dan Gohman10c82ce2012-08-27 18:31:36 +00002136 BBState::edge_iterator PI(MyStates.pred_begin()),
2137 PE(MyStates.pred_end());
2138 if (PI != PE) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002139 const BasicBlock *Pred = *PI;
2140 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Pred);
2141 assert(I != BBStates.end());
2142 MyStates.InitFromPred(I->second);
2143 ++PI;
2144 for (; PI != PE; ++PI) {
2145 Pred = *PI;
2146 I = BBStates.find(Pred);
2147 assert(I != BBStates.end());
2148 MyStates.MergePred(I->second);
2149 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002150 }
John McCalld935e9c2011-06-15 23:37:01 +00002151
Michael Gottesman43e7e002013-04-03 22:41:59 +00002152 // If ARC Annotations are enabled, output the current state of pointers at the
2153 // top of the basic block.
2154 ANNOTATE_TOPDOWN_BBSTART(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002155
John McCalld935e9c2011-06-15 23:37:01 +00002156 // Visit all the instructions, top-down.
2157 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
2158 Instruction *Inst = I;
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002159
Michael Gottesman89279f82013-04-05 18:10:41 +00002160 DEBUG(dbgs() << "Visiting " << *Inst << "\n");
Michael Gottesmanaf2113f2013-01-13 07:00:51 +00002161
Dan Gohman817a7c62012-03-22 18:24:56 +00002162 NestingDetected |= VisitInstructionTopDown(Inst, Releases, MyStates);
John McCalld935e9c2011-06-15 23:37:01 +00002163 }
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002164
Michael Gottesman43e7e002013-04-03 22:41:59 +00002165 // If ARC Annotations are enabled, output the current state of pointers at the
2166 // bottom of the basic block.
2167 ANNOTATE_TOPDOWN_BBEND(MyStates, BB);
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002168
Michael Gottesmanffef24f2013-04-17 20:48:01 +00002169#ifdef ARC_ANNOTATIONS
Michael Gottesmanadb921a2013-04-17 21:03:53 +00002170 if (!(EnableARCAnnotations && DisableCheckForCFGHazards))
Michael Gottesmanffef24f2013-04-17 20:48:01 +00002171#endif
John McCalld935e9c2011-06-15 23:37:01 +00002172 CheckForCFGHazards(BB, BBStates, MyStates);
2173 return NestingDetected;
2174}
2175
Dan Gohmana53a12c2011-12-12 19:42:25 +00002176static void
2177ComputePostOrders(Function &F,
2178 SmallVectorImpl<BasicBlock *> &PostOrder,
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002179 SmallVectorImpl<BasicBlock *> &ReverseCFGPostOrder,
2180 unsigned NoObjCARCExceptionsMDKind,
2181 DenseMap<const BasicBlock *, BBState> &BBStates) {
Michael Gottesman97e3df02013-01-14 00:35:14 +00002182 /// The visited set, for doing DFS walks.
Dan Gohmana53a12c2011-12-12 19:42:25 +00002183 SmallPtrSet<BasicBlock *, 16> Visited;
2184
2185 // Do DFS, computing the PostOrder.
2186 SmallPtrSet<BasicBlock *, 16> OnStack;
2187 SmallVector<std::pair<BasicBlock *, succ_iterator>, 16> SuccStack;
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002188
2189 // Functions always have exactly one entry block, and we don't have
2190 // any other block that we treat like an entry block.
Dan Gohmana53a12c2011-12-12 19:42:25 +00002191 BasicBlock *EntryBB = &F.getEntryBlock();
Dan Gohman41375a32012-05-08 23:39:44 +00002192 BBState &MyStates = BBStates[EntryBB];
2193 MyStates.SetAsEntry();
2194 TerminatorInst *EntryTI = cast<TerminatorInst>(&EntryBB->back());
2195 SuccStack.push_back(std::make_pair(EntryBB, succ_iterator(EntryTI)));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002196 Visited.insert(EntryBB);
2197 OnStack.insert(EntryBB);
2198 do {
2199 dfs_next_succ:
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002200 BasicBlock *CurrBB = SuccStack.back().first;
2201 TerminatorInst *TI = cast<TerminatorInst>(&CurrBB->back());
2202 succ_iterator SE(TI, false);
Dan Gohman41375a32012-05-08 23:39:44 +00002203
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002204 while (SuccStack.back().second != SE) {
2205 BasicBlock *SuccBB = *SuccStack.back().second++;
2206 if (Visited.insert(SuccBB)) {
Dan Gohman41375a32012-05-08 23:39:44 +00002207 TerminatorInst *TI = cast<TerminatorInst>(&SuccBB->back());
2208 SuccStack.push_back(std::make_pair(SuccBB, succ_iterator(TI)));
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002209 BBStates[CurrBB].addSucc(SuccBB);
Dan Gohman41375a32012-05-08 23:39:44 +00002210 BBState &SuccStates = BBStates[SuccBB];
2211 SuccStates.addPred(CurrBB);
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002212 OnStack.insert(SuccBB);
Dan Gohmana53a12c2011-12-12 19:42:25 +00002213 goto dfs_next_succ;
2214 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002215
2216 if (!OnStack.count(SuccBB)) {
2217 BBStates[CurrBB].addSucc(SuccBB);
2218 BBStates[SuccBB].addPred(CurrBB);
2219 }
Dan Gohmana53a12c2011-12-12 19:42:25 +00002220 }
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002221 OnStack.erase(CurrBB);
2222 PostOrder.push_back(CurrBB);
2223 SuccStack.pop_back();
Dan Gohmana53a12c2011-12-12 19:42:25 +00002224 } while (!SuccStack.empty());
2225
2226 Visited.clear();
2227
Dan Gohmana53a12c2011-12-12 19:42:25 +00002228 // Do reverse-CFG DFS, computing the reverse-CFG PostOrder.
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002229 // Functions may have many exits, and there also blocks which we treat
2230 // as exits due to ignored edges.
2231 SmallVector<std::pair<BasicBlock *, BBState::edge_iterator>, 16> PredStack;
2232 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
2233 BasicBlock *ExitBB = I;
2234 BBState &MyStates = BBStates[ExitBB];
2235 if (!MyStates.isExit())
2236 continue;
2237
Dan Gohmandae33492012-04-27 18:56:31 +00002238 MyStates.SetAsExit();
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002239
2240 PredStack.push_back(std::make_pair(ExitBB, MyStates.pred_begin()));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002241 Visited.insert(ExitBB);
2242 while (!PredStack.empty()) {
2243 reverse_dfs_next_succ:
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002244 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end();
2245 while (PredStack.back().second != PE) {
Dan Gohmana53a12c2011-12-12 19:42:25 +00002246 BasicBlock *BB = *PredStack.back().second++;
Dan Gohmana53a12c2011-12-12 19:42:25 +00002247 if (Visited.insert(BB)) {
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002248 PredStack.push_back(std::make_pair(BB, BBStates[BB].pred_begin()));
Dan Gohmana53a12c2011-12-12 19:42:25 +00002249 goto reverse_dfs_next_succ;
2250 }
2251 }
2252 ReverseCFGPostOrder.push_back(PredStack.pop_back_val().first);
2253 }
2254 }
2255}
2256
Michael Gottesman97e3df02013-01-14 00:35:14 +00002257// Visit the function both top-down and bottom-up.
John McCalld935e9c2011-06-15 23:37:01 +00002258bool
2259ObjCARCOpt::Visit(Function &F,
2260 DenseMap<const BasicBlock *, BBState> &BBStates,
2261 MapVector<Value *, RRInfo> &Retains,
2262 DenseMap<Value *, RRInfo> &Releases) {
Dan Gohmana53a12c2011-12-12 19:42:25 +00002263
2264 // Use reverse-postorder traversals, because we magically know that loops
2265 // will be well behaved, i.e. they won't repeatedly call retain on a single
2266 // pointer without doing a release. We can't use the ReversePostOrderTraversal
2267 // class here because we want the reverse-CFG postorder to consider each
2268 // function exit point, and we want to ignore selected cycle edges.
2269 SmallVector<BasicBlock *, 16> PostOrder;
2270 SmallVector<BasicBlock *, 16> ReverseCFGPostOrder;
Dan Gohmanc24c66f2012-04-24 22:53:18 +00002271 ComputePostOrders(F, PostOrder, ReverseCFGPostOrder,
2272 NoObjCARCExceptionsMDKind,
2273 BBStates);
Dan Gohmana53a12c2011-12-12 19:42:25 +00002274
2275 // Use reverse-postorder on the reverse CFG for bottom-up.
John McCalld935e9c2011-06-15 23:37:01 +00002276 bool BottomUpNestingDetected = false;
Dan Gohmanc57b58c2011-08-18 21:27:42 +00002277 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
Dan Gohmana53a12c2011-12-12 19:42:25 +00002278 ReverseCFGPostOrder.rbegin(), E = ReverseCFGPostOrder.rend();
2279 I != E; ++I)
2280 BottomUpNestingDetected |= VisitBottomUp(*I, BBStates, Retains);
John McCalld935e9c2011-06-15 23:37:01 +00002281
Dan Gohmana53a12c2011-12-12 19:42:25 +00002282 // Use reverse-postorder for top-down.
John McCalld935e9c2011-06-15 23:37:01 +00002283 bool TopDownNestingDetected = false;
Dan Gohmana53a12c2011-12-12 19:42:25 +00002284 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
2285 PostOrder.rbegin(), E = PostOrder.rend();
2286 I != E; ++I)
2287 TopDownNestingDetected |= VisitTopDown(*I, BBStates, Releases);
John McCalld935e9c2011-06-15 23:37:01 +00002288
2289 return TopDownNestingDetected && BottomUpNestingDetected;
2290}
2291
Michael Gottesman97e3df02013-01-14 00:35:14 +00002292/// Move the calls in RetainsToMove and ReleasesToMove.
John McCalld935e9c2011-06-15 23:37:01 +00002293void ObjCARCOpt::MoveCalls(Value *Arg,
2294 RRInfo &RetainsToMove,
2295 RRInfo &ReleasesToMove,
2296 MapVector<Value *, RRInfo> &Retains,
2297 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman6320f522011-07-22 22:29:21 +00002298 SmallVectorImpl<Instruction *> &DeadInsts,
Michael Gottesman79249972013-04-05 23:46:45 +00002299 Module *M) {
Chris Lattner229907c2011-07-18 04:54:35 +00002300 Type *ArgTy = Arg->getType();
Dan Gohman6320f522011-07-22 22:29:21 +00002301 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext()));
Michael Gottesman79249972013-04-05 23:46:45 +00002302
Michael Gottesman89279f82013-04-05 18:10:41 +00002303 DEBUG(dbgs() << "== ObjCARCOpt::MoveCalls ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002304
John McCalld935e9c2011-06-15 23:37:01 +00002305 // Insert the new retain and release calls.
2306 for (SmallPtrSet<Instruction *, 2>::const_iterator
2307 PI = ReleasesToMove.ReverseInsertPts.begin(),
2308 PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2309 Instruction *InsertPt = *PI;
2310 Value *MyArg = ArgTy == ParamTy ? Arg :
2311 new BitCastInst(Arg, ParamTy, "", InsertPt);
Michael Gottesman14acfac2013-07-06 01:39:23 +00002312 Constant *Decl = EP.get(ARCRuntimeEntryPoints::EPT_Retain);
2313 CallInst *Call = CallInst::Create(Decl, MyArg, "", InsertPt);
John McCalld935e9c2011-06-15 23:37:01 +00002314 Call->setDoesNotThrow();
Michael Gottesmanba648592013-03-28 23:08:44 +00002315 Call->setTailCall();
Michael Gottesman60f6b282013-03-29 05:13:07 +00002316
Michael Gottesmandf110ac2013-04-21 00:30:50 +00002317 DEBUG(dbgs() << "Inserting new Retain: " << *Call << "\n"
Michael Gottesman89279f82013-04-05 18:10:41 +00002318 "At insertion point: " << *InsertPt << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002319 }
2320 for (SmallPtrSet<Instruction *, 2>::const_iterator
2321 PI = RetainsToMove.ReverseInsertPts.begin(),
2322 PE = RetainsToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
Dan Gohman5c70fad2012-03-23 17:47:54 +00002323 Instruction *InsertPt = *PI;
2324 Value *MyArg = ArgTy == ParamTy ? Arg :
2325 new BitCastInst(Arg, ParamTy, "", InsertPt);
Michael Gottesman14acfac2013-07-06 01:39:23 +00002326 Constant *Decl = EP.get(ARCRuntimeEntryPoints::EPT_Release);
2327 CallInst *Call = CallInst::Create(Decl, MyArg, "", InsertPt);
Dan Gohman5c70fad2012-03-23 17:47:54 +00002328 // Attach a clang.imprecise_release metadata tag, if appropriate.
2329 if (MDNode *M = ReleasesToMove.ReleaseMetadata)
2330 Call->setMetadata(ImpreciseReleaseMDKind, M);
2331 Call->setDoesNotThrow();
2332 if (ReleasesToMove.IsTailCallRelease)
2333 Call->setTailCall();
Michael Gottesmanc189a392013-01-09 19:23:24 +00002334
Michael Gottesman89279f82013-04-05 18:10:41 +00002335 DEBUG(dbgs() << "Inserting new Release: " << *Call << "\n"
2336 "At insertion point: " << *InsertPt << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002337 }
2338
2339 // Delete the original retain and release calls.
2340 for (SmallPtrSet<Instruction *, 2>::const_iterator
2341 AI = RetainsToMove.Calls.begin(),
2342 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
2343 Instruction *OrigRetain = *AI;
2344 Retains.blot(OrigRetain);
2345 DeadInsts.push_back(OrigRetain);
Michael Gottesman89279f82013-04-05 18:10:41 +00002346 DEBUG(dbgs() << "Deleting retain: " << *OrigRetain << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002347 }
2348 for (SmallPtrSet<Instruction *, 2>::const_iterator
2349 AI = ReleasesToMove.Calls.begin(),
2350 AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) {
2351 Instruction *OrigRelease = *AI;
2352 Releases.erase(OrigRelease);
2353 DeadInsts.push_back(OrigRelease);
Michael Gottesman89279f82013-04-05 18:10:41 +00002354 DEBUG(dbgs() << "Deleting release: " << *OrigRelease << "\n");
John McCalld935e9c2011-06-15 23:37:01 +00002355 }
Michael Gottesman79249972013-04-05 23:46:45 +00002356
John McCalld935e9c2011-06-15 23:37:01 +00002357}
2358
Michael Gottesman9de6f962013-01-22 21:49:00 +00002359bool
2360ObjCARCOpt::ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState>
2361 &BBStates,
2362 MapVector<Value *, RRInfo> &Retains,
2363 DenseMap<Value *, RRInfo> &Releases,
2364 Module *M,
Craig Topperb94011f2013-07-14 04:42:23 +00002365 SmallVectorImpl<Instruction *> &NewRetains,
2366 SmallVectorImpl<Instruction *> &NewReleases,
2367 SmallVectorImpl<Instruction *> &DeadInsts,
Michael Gottesman9de6f962013-01-22 21:49:00 +00002368 RRInfo &RetainsToMove,
2369 RRInfo &ReleasesToMove,
2370 Value *Arg,
2371 bool KnownSafe,
2372 bool &AnyPairsCompletelyEliminated) {
2373 // If a pair happens in a region where it is known that the reference count
Michael Gottesmana76143ee2013-05-13 23:49:42 +00002374 // is already incremented, we can similarly ignore possible decrements unless
2375 // we are dealing with a retainable object with multiple provenance sources.
Michael Gottesman9de6f962013-01-22 21:49:00 +00002376 bool KnownSafeTD = true, KnownSafeBU = true;
Michael Gottesmana76143ee2013-05-13 23:49:42 +00002377 bool MultipleOwners = false;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00002378 bool CFGHazardAfflicted = false;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002379
2380 // Connect the dots between the top-down-collected RetainsToMove and
2381 // bottom-up-collected ReleasesToMove to form sets of related calls.
2382 // This is an iterative process so that we connect multiple releases
2383 // to multiple retains if needed.
2384 unsigned OldDelta = 0;
2385 unsigned NewDelta = 0;
2386 unsigned OldCount = 0;
2387 unsigned NewCount = 0;
2388 bool FirstRelease = true;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002389 for (;;) {
2390 for (SmallVectorImpl<Instruction *>::const_iterator
2391 NI = NewRetains.begin(), NE = NewRetains.end(); NI != NE; ++NI) {
2392 Instruction *NewRetain = *NI;
2393 MapVector<Value *, RRInfo>::const_iterator It = Retains.find(NewRetain);
2394 assert(It != Retains.end());
2395 const RRInfo &NewRetainRRI = It->second;
2396 KnownSafeTD &= NewRetainRRI.KnownSafe;
Michael Gottesman5a91bbf2013-05-24 20:44:02 +00002397 MultipleOwners =
2398 MultipleOwners || MultiOwnersSet.count(GetObjCArg(NewRetain));
Michael Gottesman9de6f962013-01-22 21:49:00 +00002399 for (SmallPtrSet<Instruction *, 2>::const_iterator
2400 LI = NewRetainRRI.Calls.begin(),
2401 LE = NewRetainRRI.Calls.end(); LI != LE; ++LI) {
2402 Instruction *NewRetainRelease = *LI;
2403 DenseMap<Value *, RRInfo>::const_iterator Jt =
2404 Releases.find(NewRetainRelease);
2405 if (Jt == Releases.end())
2406 return false;
2407 const RRInfo &NewRetainReleaseRRI = Jt->second;
Michael Gottesman24b2f6f2013-11-05 16:02:40 +00002408
2409 // If the release does not have a reference to the retain as well,
2410 // something happened which is unaccounted for. Do not do anything.
2411 //
2412 // This can happen if we catch an additive overflow during path count
2413 // merging.
2414 if (!NewRetainReleaseRRI.Calls.count(NewRetain))
2415 return false;
2416
Michael Gottesman9de6f962013-01-22 21:49:00 +00002417 if (ReleasesToMove.Calls.insert(NewRetainRelease)) {
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002418
2419 // If we overflow when we compute the path count, don't remove/move
2420 // anything.
2421 const BBState &NRRBBState = BBStates[NewRetainRelease->getParent()];
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002422 unsigned PathCount = BBState::OverflowOccurredValue;
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002423 if (NRRBBState.GetAllPathCountWithOverflow(PathCount))
2424 return false;
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002425 assert(PathCount != BBState::OverflowOccurredValue &&
2426 "PathCount at this point can not be "
2427 "OverflowOccurredValue.");
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002428 OldDelta -= PathCount;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002429
2430 // Merge the ReleaseMetadata and IsTailCallRelease values.
2431 if (FirstRelease) {
2432 ReleasesToMove.ReleaseMetadata =
2433 NewRetainReleaseRRI.ReleaseMetadata;
2434 ReleasesToMove.IsTailCallRelease =
2435 NewRetainReleaseRRI.IsTailCallRelease;
2436 FirstRelease = false;
2437 } else {
2438 if (ReleasesToMove.ReleaseMetadata !=
2439 NewRetainReleaseRRI.ReleaseMetadata)
2440 ReleasesToMove.ReleaseMetadata = 0;
2441 if (ReleasesToMove.IsTailCallRelease !=
2442 NewRetainReleaseRRI.IsTailCallRelease)
2443 ReleasesToMove.IsTailCallRelease = false;
2444 }
2445
2446 // Collect the optimal insertion points.
2447 if (!KnownSafe)
2448 for (SmallPtrSet<Instruction *, 2>::const_iterator
2449 RI = NewRetainReleaseRRI.ReverseInsertPts.begin(),
2450 RE = NewRetainReleaseRRI.ReverseInsertPts.end();
2451 RI != RE; ++RI) {
2452 Instruction *RIP = *RI;
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002453 if (ReleasesToMove.ReverseInsertPts.insert(RIP)) {
2454 // If we overflow when we compute the path count, don't
2455 // remove/move anything.
2456 const BBState &RIPBBState = BBStates[RIP->getParent()];
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002457 PathCount = BBState::OverflowOccurredValue;
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002458 if (RIPBBState.GetAllPathCountWithOverflow(PathCount))
2459 return false;
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002460 assert(PathCount != BBState::OverflowOccurredValue &&
2461 "PathCount at this point can not be "
2462 "OverflowOccurredValue.");
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002463 NewDelta -= PathCount;
2464 }
Michael Gottesman9de6f962013-01-22 21:49:00 +00002465 }
2466 NewReleases.push_back(NewRetainRelease);
2467 }
2468 }
2469 }
2470 NewRetains.clear();
2471 if (NewReleases.empty()) break;
2472
2473 // Back the other way.
2474 for (SmallVectorImpl<Instruction *>::const_iterator
2475 NI = NewReleases.begin(), NE = NewReleases.end(); NI != NE; ++NI) {
2476 Instruction *NewRelease = *NI;
2477 DenseMap<Value *, RRInfo>::const_iterator It =
2478 Releases.find(NewRelease);
2479 assert(It != Releases.end());
2480 const RRInfo &NewReleaseRRI = It->second;
2481 KnownSafeBU &= NewReleaseRRI.KnownSafe;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00002482 CFGHazardAfflicted |= NewReleaseRRI.CFGHazardAfflicted;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002483 for (SmallPtrSet<Instruction *, 2>::const_iterator
2484 LI = NewReleaseRRI.Calls.begin(),
2485 LE = NewReleaseRRI.Calls.end(); LI != LE; ++LI) {
2486 Instruction *NewReleaseRetain = *LI;
2487 MapVector<Value *, RRInfo>::const_iterator Jt =
2488 Retains.find(NewReleaseRetain);
2489 if (Jt == Retains.end())
2490 return false;
2491 const RRInfo &NewReleaseRetainRRI = Jt->second;
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002492
Michael Gottesman24b2f6f2013-11-05 16:02:40 +00002493 // If the retain does not have a reference to the release as well,
2494 // something happened which is unaccounted for. Do not do anything.
2495 //
2496 // This can happen if we catch an additive overflow during path count
2497 // merging.
2498 if (!NewReleaseRetainRRI.Calls.count(NewRelease))
2499 return false;
2500
2501 if (RetainsToMove.Calls.insert(NewReleaseRetain)) {
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002502 // If we overflow when we compute the path count, don't remove/move
2503 // anything.
2504 const BBState &NRRBBState = BBStates[NewReleaseRetain->getParent()];
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002505 unsigned PathCount = BBState::OverflowOccurredValue;
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002506 if (NRRBBState.GetAllPathCountWithOverflow(PathCount))
2507 return false;
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002508 assert(PathCount != BBState::OverflowOccurredValue &&
2509 "PathCount at this point can not be "
2510 "OverflowOccurredValue.");
Michael Gottesman9de6f962013-01-22 21:49:00 +00002511 OldDelta += PathCount;
2512 OldCount += PathCount;
2513
Michael Gottesman9de6f962013-01-22 21:49:00 +00002514 // Collect the optimal insertion points.
2515 if (!KnownSafe)
2516 for (SmallPtrSet<Instruction *, 2>::const_iterator
2517 RI = NewReleaseRetainRRI.ReverseInsertPts.begin(),
2518 RE = NewReleaseRetainRRI.ReverseInsertPts.end();
2519 RI != RE; ++RI) {
2520 Instruction *RIP = *RI;
2521 if (RetainsToMove.ReverseInsertPts.insert(RIP)) {
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002522 // If we overflow when we compute the path count, don't
2523 // remove/move anything.
2524 const BBState &RIPBBState = BBStates[RIP->getParent()];
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002525
2526 PathCount = BBState::OverflowOccurredValue;
Michael Gottesman9e7261c2013-06-07 06:16:49 +00002527 if (RIPBBState.GetAllPathCountWithOverflow(PathCount))
2528 return false;
Michael Gottesmand6ce6cb2013-08-09 23:22:27 +00002529 assert(PathCount != BBState::OverflowOccurredValue &&
2530 "PathCount at this point can not be "
2531 "OverflowOccurredValue.");
Michael Gottesman9de6f962013-01-22 21:49:00 +00002532 NewDelta += PathCount;
2533 NewCount += PathCount;
2534 }
2535 }
2536 NewRetains.push_back(NewReleaseRetain);
2537 }
2538 }
2539 }
2540 NewReleases.clear();
2541 if (NewRetains.empty()) break;
2542 }
2543
Michael Gottesmana76143ee2013-05-13 23:49:42 +00002544 // If the pointer is known incremented in 1 direction and we do not have
2545 // MultipleOwners, we can safely remove the retain/releases. Otherwise we need
2546 // to be known safe in both directions.
2547 bool UnconditionallySafe = (KnownSafeTD && KnownSafeBU) ||
2548 ((KnownSafeTD || KnownSafeBU) && !MultipleOwners);
2549 if (UnconditionallySafe) {
Michael Gottesman9de6f962013-01-22 21:49:00 +00002550 RetainsToMove.ReverseInsertPts.clear();
2551 ReleasesToMove.ReverseInsertPts.clear();
2552 NewCount = 0;
2553 } else {
2554 // Determine whether the new insertion points we computed preserve the
2555 // balance of retain and release calls through the program.
2556 // TODO: If the fully aggressive solution isn't valid, try to find a
2557 // less aggressive solution which is.
2558 if (NewDelta != 0)
2559 return false;
Michael Gottesmane67f40c2013-05-24 20:44:05 +00002560
2561 // At this point, we are not going to remove any RR pairs, but we still are
2562 // able to move RR pairs. If one of our pointers is afflicted with
2563 // CFGHazards, we cannot perform such code motion so exit early.
2564 const bool WillPerformCodeMotion = RetainsToMove.ReverseInsertPts.size() ||
2565 ReleasesToMove.ReverseInsertPts.size();
2566 if (CFGHazardAfflicted && WillPerformCodeMotion)
2567 return false;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002568 }
2569
2570 // Determine whether the original call points are balanced in the retain and
2571 // release calls through the program. If not, conservatively don't touch
2572 // them.
2573 // TODO: It's theoretically possible to do code motion in this case, as
2574 // long as the existing imbalances are maintained.
2575 if (OldDelta != 0)
2576 return false;
Michael Gottesman8005ad32013-04-29 06:16:55 +00002577
Michael Gottesmana87bb8f2013-04-29 05:13:13 +00002578#ifdef ARC_ANNOTATIONS
2579 // Do not move calls if ARC annotations are requested.
Michael Gottesman3e3977c2013-04-29 05:25:39 +00002580 if (EnableARCAnnotations)
2581 return false;
Michael Gottesmana87bb8f2013-04-29 05:13:13 +00002582#endif // ARC_ANNOTATIONS
Michael Gottesman9de6f962013-01-22 21:49:00 +00002583
2584 Changed = true;
2585 assert(OldCount != 0 && "Unreachable code?");
2586 NumRRs += OldCount - NewCount;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002587 // Set to true if we completely removed any RR pairs.
Michael Gottesman8b5515f2013-01-22 21:53:43 +00002588 AnyPairsCompletelyEliminated = NewCount == 0;
Michael Gottesman9de6f962013-01-22 21:49:00 +00002589
2590 // We can move calls!
2591 return true;
2592}
2593
Michael Gottesman97e3df02013-01-14 00:35:14 +00002594/// Identify pairings between the retains and releases, and delete and/or move
2595/// them.
John McCalld935e9c2011-06-15 23:37:01 +00002596bool
2597ObjCARCOpt::PerformCodePlacement(DenseMap<const BasicBlock *, BBState>
2598 &BBStates,
2599 MapVector<Value *, RRInfo> &Retains,
Dan Gohman6320f522011-07-22 22:29:21 +00002600 DenseMap<Value *, RRInfo> &Releases,
2601 Module *M) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002602 DEBUG(dbgs() << "\n== ObjCARCOpt::PerformCodePlacement ==\n");
2603
John McCalld935e9c2011-06-15 23:37:01 +00002604 bool AnyPairsCompletelyEliminated = false;
2605 RRInfo RetainsToMove;
2606 RRInfo ReleasesToMove;
2607 SmallVector<Instruction *, 4> NewRetains;
2608 SmallVector<Instruction *, 4> NewReleases;
2609 SmallVector<Instruction *, 8> DeadInsts;
2610
Dan Gohman670f9372012-04-13 18:57:48 +00002611 // Visit each retain.
John McCalld935e9c2011-06-15 23:37:01 +00002612 for (MapVector<Value *, RRInfo>::const_iterator I = Retains.begin(),
Dan Gohman2053a5d2011-09-29 22:25:23 +00002613 E = Retains.end(); I != E; ++I) {
2614 Value *V = I->first;
John McCalld935e9c2011-06-15 23:37:01 +00002615 if (!V) continue; // blotted
2616
2617 Instruction *Retain = cast<Instruction>(V);
Michael Gottesmanc189a392013-01-09 19:23:24 +00002618
Michael Gottesman89279f82013-04-05 18:10:41 +00002619 DEBUG(dbgs() << "Visiting: " << *Retain << "\n");
Michael Gottesmanc189a392013-01-09 19:23:24 +00002620
John McCalld935e9c2011-06-15 23:37:01 +00002621 Value *Arg = GetObjCArg(Retain);
2622
Dan Gohman728db492012-01-13 00:39:07 +00002623 // If the object being released is in static or stack storage, we know it's
John McCalld935e9c2011-06-15 23:37:01 +00002624 // not being managed by ObjC reference counting, so we can delete pairs
2625 // regardless of what possible decrements or uses lie between them.
Dan Gohman728db492012-01-13 00:39:07 +00002626 bool KnownSafe = isa<Constant>(Arg) || isa<AllocaInst>(Arg);
Dan Gohman41375a32012-05-08 23:39:44 +00002627
Dan Gohman56e1cef2011-08-22 17:29:11 +00002628 // A constant pointer can't be pointing to an object on the heap. It may
2629 // be reference-counted, but it won't be deleted.
2630 if (const LoadInst *LI = dyn_cast<LoadInst>(Arg))
2631 if (const GlobalVariable *GV =
2632 dyn_cast<GlobalVariable>(
2633 StripPointerCastsAndObjCCalls(LI->getPointerOperand())))
2634 if (GV->isConstant())
2635 KnownSafe = true;
2636
John McCalld935e9c2011-06-15 23:37:01 +00002637 // Connect the dots between the top-down-collected RetainsToMove and
2638 // bottom-up-collected ReleasesToMove to form sets of related calls.
John McCalld935e9c2011-06-15 23:37:01 +00002639 NewRetains.push_back(Retain);
Michael Gottesman9de6f962013-01-22 21:49:00 +00002640 bool PerformMoveCalls =
2641 ConnectTDBUTraversals(BBStates, Retains, Releases, M, NewRetains,
2642 NewReleases, DeadInsts, RetainsToMove,
2643 ReleasesToMove, Arg, KnownSafe,
2644 AnyPairsCompletelyEliminated);
John McCalld935e9c2011-06-15 23:37:01 +00002645
Michael Gottesman9de6f962013-01-22 21:49:00 +00002646 if (PerformMoveCalls) {
2647 // Ok, everything checks out and we're all set. Let's move/delete some
2648 // code!
2649 MoveCalls(Arg, RetainsToMove, ReleasesToMove,
2650 Retains, Releases, DeadInsts, M);
John McCalld935e9c2011-06-15 23:37:01 +00002651 }
2652
Michael Gottesman9de6f962013-01-22 21:49:00 +00002653 // Clean up state for next retain.
John McCalld935e9c2011-06-15 23:37:01 +00002654 NewReleases.clear();
2655 NewRetains.clear();
2656 RetainsToMove.clear();
2657 ReleasesToMove.clear();
2658 }
2659
2660 // Now that we're done moving everything, we can delete the newly dead
2661 // instructions, as we no longer need them as insert points.
2662 while (!DeadInsts.empty())
2663 EraseInstruction(DeadInsts.pop_back_val());
2664
2665 return AnyPairsCompletelyEliminated;
2666}
2667
Michael Gottesman97e3df02013-01-14 00:35:14 +00002668/// Weak pointer optimizations.
John McCalld935e9c2011-06-15 23:37:01 +00002669void ObjCARCOpt::OptimizeWeakCalls(Function &F) {
Michael Gottesman89279f82013-04-05 18:10:41 +00002670 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeWeakCalls ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002671
John McCalld935e9c2011-06-15 23:37:01 +00002672 // First, do memdep-style RLE and S2L optimizations. We can't use memdep
2673 // itself because it uses AliasAnalysis and we need to do provenance
2674 // queries instead.
2675 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2676 Instruction *Inst = &*I++;
Michael Gottesman3f146e22013-01-01 16:05:48 +00002677
Michael Gottesman89279f82013-04-05 18:10:41 +00002678 DEBUG(dbgs() << "Visiting: " << *Inst << "\n");
Michael Gottesman3f146e22013-01-01 16:05:48 +00002679
John McCalld935e9c2011-06-15 23:37:01 +00002680 InstructionClass Class = GetBasicInstructionClass(Inst);
2681 if (Class != IC_LoadWeak && Class != IC_LoadWeakRetained)
2682 continue;
2683
2684 // Delete objc_loadWeak calls with no users.
2685 if (Class == IC_LoadWeak && Inst->use_empty()) {
2686 Inst->eraseFromParent();
2687 continue;
2688 }
2689
2690 // TODO: For now, just look for an earlier available version of this value
2691 // within the same block. Theoretically, we could do memdep-style non-local
2692 // analysis too, but that would want caching. A better approach would be to
2693 // use the technique that EarlyCSE uses.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002694 inst_iterator Current = std::prev(I);
John McCalld935e9c2011-06-15 23:37:01 +00002695 BasicBlock *CurrentBB = Current.getBasicBlockIterator();
2696 for (BasicBlock::iterator B = CurrentBB->begin(),
2697 J = Current.getInstructionIterator();
2698 J != B; --J) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002699 Instruction *EarlierInst = &*std::prev(J);
John McCalld935e9c2011-06-15 23:37:01 +00002700 InstructionClass EarlierClass = GetInstructionClass(EarlierInst);
2701 switch (EarlierClass) {
2702 case IC_LoadWeak:
2703 case IC_LoadWeakRetained: {
2704 // If this is loading from the same pointer, replace this load's value
2705 // with that one.
2706 CallInst *Call = cast<CallInst>(Inst);
2707 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2708 Value *Arg = Call->getArgOperand(0);
2709 Value *EarlierArg = EarlierCall->getArgOperand(0);
2710 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2711 case AliasAnalysis::MustAlias:
2712 Changed = true;
2713 // If the load has a builtin retain, insert a plain retain for it.
2714 if (Class == IC_LoadWeakRetained) {
Michael Gottesman14acfac2013-07-06 01:39:23 +00002715 Constant *Decl = EP.get(ARCRuntimeEntryPoints::EPT_Retain);
2716 CallInst *CI = CallInst::Create(Decl, EarlierCall, "", Call);
John McCalld935e9c2011-06-15 23:37:01 +00002717 CI->setTailCall();
2718 }
2719 // Zap the fully redundant load.
2720 Call->replaceAllUsesWith(EarlierCall);
2721 Call->eraseFromParent();
2722 goto clobbered;
2723 case AliasAnalysis::MayAlias:
2724 case AliasAnalysis::PartialAlias:
2725 goto clobbered;
2726 case AliasAnalysis::NoAlias:
2727 break;
2728 }
2729 break;
2730 }
2731 case IC_StoreWeak:
2732 case IC_InitWeak: {
2733 // If this is storing to the same pointer and has the same size etc.
2734 // replace this load's value with the stored value.
2735 CallInst *Call = cast<CallInst>(Inst);
2736 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2737 Value *Arg = Call->getArgOperand(0);
2738 Value *EarlierArg = EarlierCall->getArgOperand(0);
2739 switch (PA.getAA()->alias(Arg, EarlierArg)) {
2740 case AliasAnalysis::MustAlias:
2741 Changed = true;
2742 // If the load has a builtin retain, insert a plain retain for it.
2743 if (Class == IC_LoadWeakRetained) {
Michael Gottesman14acfac2013-07-06 01:39:23 +00002744 Constant *Decl = EP.get(ARCRuntimeEntryPoints::EPT_Retain);
2745 CallInst *CI = CallInst::Create(Decl, EarlierCall, "", Call);
John McCalld935e9c2011-06-15 23:37:01 +00002746 CI->setTailCall();
2747 }
2748 // Zap the fully redundant load.
2749 Call->replaceAllUsesWith(EarlierCall->getArgOperand(1));
2750 Call->eraseFromParent();
2751 goto clobbered;
2752 case AliasAnalysis::MayAlias:
2753 case AliasAnalysis::PartialAlias:
2754 goto clobbered;
2755 case AliasAnalysis::NoAlias:
2756 break;
2757 }
2758 break;
2759 }
2760 case IC_MoveWeak:
2761 case IC_CopyWeak:
2762 // TOOD: Grab the copied value.
2763 goto clobbered;
2764 case IC_AutoreleasepoolPush:
2765 case IC_None:
John McCall20182ac2013-03-22 21:38:36 +00002766 case IC_IntrinsicUser:
John McCalld935e9c2011-06-15 23:37:01 +00002767 case IC_User:
2768 // Weak pointers are only modified through the weak entry points
2769 // (and arbitrary calls, which could call the weak entry points).
2770 break;
2771 default:
2772 // Anything else could modify the weak pointer.
2773 goto clobbered;
2774 }
2775 }
2776 clobbered:;
2777 }
2778
2779 // Then, for each destroyWeak with an alloca operand, check to see if
2780 // the alloca and all its users can be zapped.
2781 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2782 Instruction *Inst = &*I++;
2783 InstructionClass Class = GetBasicInstructionClass(Inst);
2784 if (Class != IC_DestroyWeak)
2785 continue;
2786
2787 CallInst *Call = cast<CallInst>(Inst);
2788 Value *Arg = Call->getArgOperand(0);
2789 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
2790 for (Value::use_iterator UI = Alloca->use_begin(),
2791 UE = Alloca->use_end(); UI != UE; ++UI) {
Dan Gohmandae33492012-04-27 18:56:31 +00002792 const Instruction *UserInst = cast<Instruction>(*UI);
John McCalld935e9c2011-06-15 23:37:01 +00002793 switch (GetBasicInstructionClass(UserInst)) {
2794 case IC_InitWeak:
2795 case IC_StoreWeak:
2796 case IC_DestroyWeak:
2797 continue;
2798 default:
2799 goto done;
2800 }
2801 }
2802 Changed = true;
2803 for (Value::use_iterator UI = Alloca->use_begin(),
2804 UE = Alloca->use_end(); UI != UE; ) {
2805 CallInst *UserInst = cast<CallInst>(*UI++);
Dan Gohman14862c32012-05-18 22:17:29 +00002806 switch (GetBasicInstructionClass(UserInst)) {
2807 case IC_InitWeak:
2808 case IC_StoreWeak:
2809 // These functions return their second argument.
2810 UserInst->replaceAllUsesWith(UserInst->getArgOperand(1));
2811 break;
2812 case IC_DestroyWeak:
2813 // No return value.
2814 break;
2815 default:
Dan Gohman9c97eea02012-05-21 17:41:28 +00002816 llvm_unreachable("alloca really is used!");
Dan Gohman14862c32012-05-18 22:17:29 +00002817 }
John McCalld935e9c2011-06-15 23:37:01 +00002818 UserInst->eraseFromParent();
2819 }
2820 Alloca->eraseFromParent();
2821 done:;
2822 }
2823 }
2824}
2825
Michael Gottesman97e3df02013-01-14 00:35:14 +00002826/// Identify program paths which execute sequences of retains and releases which
2827/// can be eliminated.
John McCalld935e9c2011-06-15 23:37:01 +00002828bool ObjCARCOpt::OptimizeSequences(Function &F) {
Michael Gottesman740db972013-05-23 02:35:21 +00002829 // Releases, Retains - These are used to store the results of the main flow
2830 // analysis. These use Value* as the key instead of Instruction* so that the
2831 // map stays valid when we get around to rewriting code and calls get
2832 // replaced by arguments.
John McCalld935e9c2011-06-15 23:37:01 +00002833 DenseMap<Value *, RRInfo> Releases;
2834 MapVector<Value *, RRInfo> Retains;
2835
Michael Gottesman740db972013-05-23 02:35:21 +00002836 // This is used during the traversal of the function to track the
2837 // states for each identified object at each block.
John McCalld935e9c2011-06-15 23:37:01 +00002838 DenseMap<const BasicBlock *, BBState> BBStates;
2839
2840 // Analyze the CFG of the function, and all instructions.
2841 bool NestingDetected = Visit(F, BBStates, Retains, Releases);
2842
2843 // Transform.
Michael Gottesman5a91bbf2013-05-24 20:44:02 +00002844 bool AnyPairsCompletelyEliminated = PerformCodePlacement(BBStates, Retains,
2845 Releases,
2846 F.getParent());
2847
2848 // Cleanup.
2849 MultiOwnersSet.clear();
2850
2851 return AnyPairsCompletelyEliminated && NestingDetected;
John McCalld935e9c2011-06-15 23:37:01 +00002852}
2853
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002854/// Check if there is a dependent call earlier that does not have anything in
2855/// between the Retain and the call that can affect the reference count of their
2856/// shared pointer argument. Note that Retain need not be in BB.
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002857static bool
2858HasSafePathToPredecessorCall(const Value *Arg, Instruction *Retain,
2859 SmallPtrSet<Instruction *, 4> &DepInsts,
2860 SmallPtrSet<const BasicBlock *, 4> &Visited,
2861 ProvenanceAnalysis &PA) {
2862 FindDependencies(CanChangeRetainCount, Arg, Retain->getParent(), Retain,
2863 DepInsts, Visited, PA);
2864 if (DepInsts.size() != 1)
2865 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002866
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002867 CallInst *Call =
2868 dyn_cast_or_null<CallInst>(*DepInsts.begin());
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002869
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002870 // Check that the pointer is the return value of the call.
2871 if (!Call || Arg != Call)
2872 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002873
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002874 // Check that the call is a regular call.
2875 InstructionClass Class = GetBasicInstructionClass(Call);
2876 if (Class != IC_CallOrUser && Class != IC_Call)
2877 return false;
Michael Gottesmanc2d5bf52013-04-03 23:07:45 +00002878
Michael Gottesman54dc7fd2013-04-03 23:04:28 +00002879 return true;
2880}
2881
Michael Gottesman6908db12013-04-03 23:16:05 +00002882/// Find a dependent retain that precedes the given autorelease for which there
2883/// is nothing in between the two instructions that can affect the ref count of
2884/// Arg.
2885static CallInst *
2886FindPredecessorRetainWithSafePath(const Value *Arg, BasicBlock *BB,
2887 Instruction *Autorelease,
2888 SmallPtrSet<Instruction *, 4> &DepInsts,
2889 SmallPtrSet<const BasicBlock *, 4> &Visited,
2890 ProvenanceAnalysis &PA) {
2891 FindDependencies(CanChangeRetainCount, Arg,
2892 BB, Autorelease, DepInsts, Visited, PA);
2893 if (DepInsts.size() != 1)
2894 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002895
Michael Gottesman6908db12013-04-03 23:16:05 +00002896 CallInst *Retain =
2897 dyn_cast_or_null<CallInst>(*DepInsts.begin());
Michael Gottesman79249972013-04-05 23:46:45 +00002898
Michael Gottesman6908db12013-04-03 23:16:05 +00002899 // Check that we found a retain with the same argument.
2900 if (!Retain ||
2901 !IsRetain(GetBasicInstructionClass(Retain)) ||
2902 GetObjCArg(Retain) != Arg) {
2903 return 0;
2904 }
Michael Gottesman79249972013-04-05 23:46:45 +00002905
Michael Gottesman6908db12013-04-03 23:16:05 +00002906 return Retain;
2907}
2908
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002909/// Look for an ``autorelease'' instruction dependent on Arg such that there are
2910/// no instructions dependent on Arg that need a positive ref count in between
2911/// the autorelease and the ret.
2912static CallInst *
2913FindPredecessorAutoreleaseWithSafePath(const Value *Arg, BasicBlock *BB,
2914 ReturnInst *Ret,
2915 SmallPtrSet<Instruction *, 4> &DepInsts,
2916 SmallPtrSet<const BasicBlock *, 4> &V,
2917 ProvenanceAnalysis &PA) {
2918 FindDependencies(NeedsPositiveRetainCount, Arg,
2919 BB, Ret, DepInsts, V, PA);
2920 if (DepInsts.size() != 1)
2921 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002922
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002923 CallInst *Autorelease =
2924 dyn_cast_or_null<CallInst>(*DepInsts.begin());
2925 if (!Autorelease)
2926 return 0;
2927 InstructionClass AutoreleaseClass = GetBasicInstructionClass(Autorelease);
2928 if (!IsAutorelease(AutoreleaseClass))
2929 return 0;
2930 if (GetObjCArg(Autorelease) != Arg)
2931 return 0;
Michael Gottesman79249972013-04-05 23:46:45 +00002932
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002933 return Autorelease;
2934}
2935
Michael Gottesman97e3df02013-01-14 00:35:14 +00002936/// Look for this pattern:
Dmitri Gribenko5485acd2012-09-14 14:57:36 +00002937/// \code
John McCalld935e9c2011-06-15 23:37:01 +00002938/// %call = call i8* @something(...)
2939/// %2 = call i8* @objc_retain(i8* %call)
2940/// %3 = call i8* @objc_autorelease(i8* %2)
2941/// ret i8* %3
Dmitri Gribenko5485acd2012-09-14 14:57:36 +00002942/// \endcode
John McCalld935e9c2011-06-15 23:37:01 +00002943/// And delete the retain and autorelease.
John McCalld935e9c2011-06-15 23:37:01 +00002944void ObjCARCOpt::OptimizeReturns(Function &F) {
2945 if (!F.getReturnType()->isPointerTy())
2946 return;
Michael Gottesman79249972013-04-05 23:46:45 +00002947
Michael Gottesman89279f82013-04-05 18:10:41 +00002948 DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeReturns ==\n");
Michael Gottesman79249972013-04-05 23:46:45 +00002949
John McCalld935e9c2011-06-15 23:37:01 +00002950 SmallPtrSet<Instruction *, 4> DependingInstructions;
2951 SmallPtrSet<const BasicBlock *, 4> Visited;
2952 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
2953 BasicBlock *BB = FI;
2954 ReturnInst *Ret = dyn_cast<ReturnInst>(&BB->back());
Michael Gottesman3f146e22013-01-01 16:05:48 +00002955
Michael Gottesman89279f82013-04-05 18:10:41 +00002956 DEBUG(dbgs() << "Visiting: " << *Ret << "\n");
Michael Gottesman3f146e22013-01-01 16:05:48 +00002957
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002958 if (!Ret)
2959 continue;
Michael Gottesman79249972013-04-05 23:46:45 +00002960
John McCalld935e9c2011-06-15 23:37:01 +00002961 const Value *Arg = StripPointerCastsAndObjCCalls(Ret->getOperand(0));
Michael Gottesman79249972013-04-05 23:46:45 +00002962
Michael Gottesmancdb7c152013-04-21 00:25:04 +00002963 // Look for an ``autorelease'' instruction that is a predecessor of Ret and
Michael Gottesman21a4ed32013-04-03 23:39:14 +00002964 // dependent on Arg such that there are no instructions dependent on Arg
2965 // that need a positive ref count in between the autorelease and Ret.
2966 CallInst *Autorelease =
2967 FindPredecessorAutoreleaseWithSafePath(Arg, BB, Ret,
2968 DependingInstructions, Visited,
2969 PA);
John McCalld935e9c2011-06-15 23:37:01 +00002970 DependingInstructions.clear();
2971 Visited.clear();
Michael Gottesmanfb9ece92013-04-21 00:25:01 +00002972
2973 if (!Autorelease)
2974 continue;
2975
2976 CallInst *Retain =
2977 FindPredecessorRetainWithSafePath(Arg, BB, Autorelease,
2978 DependingInstructions, Visited, PA);
2979 DependingInstructions.clear();
2980 Visited.clear();
2981
2982 if (!Retain)
2983 continue;
2984
2985 // Check that there is nothing that can affect the reference count
2986 // between the retain and the call. Note that Retain need not be in BB.
2987 bool HasSafePathToCall = HasSafePathToPredecessorCall(Arg, Retain,
2988 DependingInstructions,
2989 Visited, PA);
2990 DependingInstructions.clear();
2991 Visited.clear();
2992
2993 if (!HasSafePathToCall)
2994 continue;
2995
2996 // If so, we can zap the retain and autorelease.
2997 Changed = true;
2998 ++NumRets;
2999 DEBUG(dbgs() << "Erasing: " << *Retain << "\nErasing: "
3000 << *Autorelease << "\n");
3001 EraseInstruction(Retain);
3002 EraseInstruction(Autorelease);
John McCalld935e9c2011-06-15 23:37:01 +00003003 }
3004}
3005
Michael Gottesman9c118152013-04-29 06:16:57 +00003006#ifndef NDEBUG
3007void
3008ObjCARCOpt::GatherStatistics(Function &F, bool AfterOptimization) {
3009 llvm::Statistic &NumRetains =
3010 AfterOptimization? NumRetainsAfterOpt : NumRetainsBeforeOpt;
3011 llvm::Statistic &NumReleases =
3012 AfterOptimization? NumReleasesAfterOpt : NumReleasesBeforeOpt;
3013
3014 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
3015 Instruction *Inst = &*I++;
3016 switch (GetBasicInstructionClass(Inst)) {
3017 default:
3018 break;
3019 case IC_Retain:
3020 ++NumRetains;
3021 break;
3022 case IC_Release:
3023 ++NumReleases;
3024 break;
3025 }
3026 }
3027}
3028#endif
3029
John McCalld935e9c2011-06-15 23:37:01 +00003030bool ObjCARCOpt::doInitialization(Module &M) {
3031 if (!EnableARCOpts)
3032 return false;
3033
Dan Gohman670f9372012-04-13 18:57:48 +00003034 // If nothing in the Module uses ARC, don't do anything.
Dan Gohmanceaac7c2011-06-20 23:20:43 +00003035 Run = ModuleHasARC(M);
3036 if (!Run)
3037 return false;
3038
John McCalld935e9c2011-06-15 23:37:01 +00003039 // Identify the imprecise release metadata kind.
3040 ImpreciseReleaseMDKind =
3041 M.getContext().getMDKindID("clang.imprecise_release");
Dan Gohmana7107f92011-10-17 22:53:25 +00003042 CopyOnEscapeMDKind =
3043 M.getContext().getMDKindID("clang.arc.copy_on_escape");
Dan Gohman0155f302012-02-17 18:59:53 +00003044 NoObjCARCExceptionsMDKind =
3045 M.getContext().getMDKindID("clang.arc.no_objc_arc_exceptions");
Michael Gottesman81b1d432013-03-26 00:42:04 +00003046#ifdef ARC_ANNOTATIONS
3047 ARCAnnotationBottomUpMDKind =
3048 M.getContext().getMDKindID("llvm.arc.annotation.bottomup");
3049 ARCAnnotationTopDownMDKind =
3050 M.getContext().getMDKindID("llvm.arc.annotation.topdown");
3051 ARCAnnotationProvenanceSourceMDKind =
3052 M.getContext().getMDKindID("llvm.arc.annotation.provenancesource");
3053#endif // ARC_ANNOTATIONS
John McCalld935e9c2011-06-15 23:37:01 +00003054
John McCalld935e9c2011-06-15 23:37:01 +00003055 // Intuitively, objc_retain and others are nocapture, however in practice
3056 // they are not, because they return their argument value. And objc_release
Dan Gohmandae33492012-04-27 18:56:31 +00003057 // calls finalizers which can have arbitrary side effects.
John McCalld935e9c2011-06-15 23:37:01 +00003058
Michael Gottesman14acfac2013-07-06 01:39:23 +00003059 // Initialize our runtime entry point cache.
3060 EP.Initialize(&M);
John McCalld935e9c2011-06-15 23:37:01 +00003061
3062 return false;
3063}
3064
3065bool ObjCARCOpt::runOnFunction(Function &F) {
3066 if (!EnableARCOpts)
3067 return false;
3068
Dan Gohmanceaac7c2011-06-20 23:20:43 +00003069 // If nothing in the Module uses ARC, don't do anything.
3070 if (!Run)
3071 return false;
3072
John McCalld935e9c2011-06-15 23:37:01 +00003073 Changed = false;
3074
Michael Gottesman89279f82013-04-05 18:10:41 +00003075 DEBUG(dbgs() << "<<< ObjCARCOpt: Visiting Function: " << F.getName() << " >>>"
3076 "\n");
Michael Gottesmanb24bdef2013-01-12 02:57:16 +00003077
John McCalld935e9c2011-06-15 23:37:01 +00003078 PA.setAA(&getAnalysis<AliasAnalysis>());
3079
Michael Gottesman9fc50b82013-05-13 18:29:07 +00003080#ifndef NDEBUG
3081 if (AreStatisticsEnabled()) {
3082 GatherStatistics(F, false);
3083 }
3084#endif
3085
John McCalld935e9c2011-06-15 23:37:01 +00003086 // This pass performs several distinct transformations. As a compile-time aid
3087 // when compiling code that isn't ObjC, skip these if the relevant ObjC
3088 // library functions aren't declared.
3089
Michael Gottesmancd5b0272013-04-24 22:18:15 +00003090 // Preliminary optimizations. This also computes UsedInThisFunction.
John McCalld935e9c2011-06-15 23:37:01 +00003091 OptimizeIndividualCalls(F);
3092
3093 // Optimizations for weak pointers.
3094 if (UsedInThisFunction & ((1 << IC_LoadWeak) |
3095 (1 << IC_LoadWeakRetained) |
3096 (1 << IC_StoreWeak) |
3097 (1 << IC_InitWeak) |
3098 (1 << IC_CopyWeak) |
3099 (1 << IC_MoveWeak) |
3100 (1 << IC_DestroyWeak)))
3101 OptimizeWeakCalls(F);
3102
3103 // Optimizations for retain+release pairs.
3104 if (UsedInThisFunction & ((1 << IC_Retain) |
3105 (1 << IC_RetainRV) |
3106 (1 << IC_RetainBlock)))
3107 if (UsedInThisFunction & (1 << IC_Release))
3108 // Run OptimizeSequences until it either stops making changes or
3109 // no retain+release pair nesting is detected.
3110 while (OptimizeSequences(F)) {}
3111
3112 // Optimizations if objc_autorelease is used.
Dan Gohman41375a32012-05-08 23:39:44 +00003113 if (UsedInThisFunction & ((1 << IC_Autorelease) |
3114 (1 << IC_AutoreleaseRV)))
John McCalld935e9c2011-06-15 23:37:01 +00003115 OptimizeReturns(F);
3116
Michael Gottesman9c118152013-04-29 06:16:57 +00003117 // Gather statistics after optimization.
3118#ifndef NDEBUG
3119 if (AreStatisticsEnabled()) {
3120 GatherStatistics(F, true);
3121 }
3122#endif
3123
Michael Gottesmanb24bdef2013-01-12 02:57:16 +00003124 DEBUG(dbgs() << "\n");
3125
John McCalld935e9c2011-06-15 23:37:01 +00003126 return Changed;
3127}
3128
3129void ObjCARCOpt::releaseMemory() {
3130 PA.clear();
3131}
3132
Michael Gottesman97e3df02013-01-14 00:35:14 +00003133/// @}
3134///