When we strength reduce an objc_retainBlock call to objc_retain, increment NumPeeps...
[oota-llvm.git] / lib / Transforms / ObjCARC / ObjCARCOpts.cpp
1 //===- ObjCARCOpts.cpp - ObjC ARC Optimization ----------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 /// \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
16 /// redundant weak pointer operations, and numerous minor simplifications.
17 ///
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 ///
25 //===----------------------------------------------------------------------===//
26
27 #define DEBUG_TYPE "objc-arc-opts"
28 #include "ObjCARC.h"
29 #include "DependencyAnalysis.h"
30 #include "ObjCARCAliasAnalysis.h"
31 #include "ProvenanceAnalysis.h"
32 #include "llvm/ADT/DenseMap.h"
33 #include "llvm/ADT/STLExtras.h"
34 #include "llvm/ADT/SmallPtrSet.h"
35 #include "llvm/ADT/Statistic.h"
36 #include "llvm/IR/IRBuilder.h"
37 #include "llvm/IR/LLVMContext.h"
38 #include "llvm/Support/CFG.h"
39 #include "llvm/Support/Debug.h"
40 #include "llvm/Support/raw_ostream.h"
41
42 using namespace llvm;
43 using namespace llvm::objcarc;
44
45 /// \defgroup MiscUtils Miscellaneous utilities that are not ARC specific.
46 /// @{
47
48 namespace {
49   /// \brief An associative container with fast insertion-order (deterministic)
50   /// iteration over its elements. Plus the special blot operation.
51   template<class KeyT, class ValueT>
52   class MapVector {
53     /// Map keys to indices in Vector.
54     typedef DenseMap<KeyT, size_t> MapTy;
55     MapTy Map;
56
57     typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
58     /// Keys and values.
59     VectorTy Vector;
60
61   public:
62     typedef typename VectorTy::iterator iterator;
63     typedef typename VectorTy::const_iterator const_iterator;
64     iterator begin() { return Vector.begin(); }
65     iterator end() { return Vector.end(); }
66     const_iterator begin() const { return Vector.begin(); }
67     const_iterator end() const { return Vector.end(); }
68
69 #ifdef XDEBUG
70     ~MapVector() {
71       assert(Vector.size() >= Map.size()); // May differ due to blotting.
72       for (typename MapTy::const_iterator I = Map.begin(), E = Map.end();
73            I != E; ++I) {
74         assert(I->second < Vector.size());
75         assert(Vector[I->second].first == I->first);
76       }
77       for (typename VectorTy::const_iterator I = Vector.begin(),
78            E = Vector.end(); I != E; ++I)
79         assert(!I->first ||
80                (Map.count(I->first) &&
81                 Map[I->first] == size_t(I - Vector.begin())));
82     }
83 #endif
84
85     ValueT &operator[](const KeyT &Arg) {
86       std::pair<typename MapTy::iterator, bool> Pair =
87         Map.insert(std::make_pair(Arg, size_t(0)));
88       if (Pair.second) {
89         size_t Num = Vector.size();
90         Pair.first->second = Num;
91         Vector.push_back(std::make_pair(Arg, ValueT()));
92         return Vector[Num].second;
93       }
94       return Vector[Pair.first->second].second;
95     }
96
97     std::pair<iterator, bool>
98     insert(const std::pair<KeyT, ValueT> &InsertPair) {
99       std::pair<typename MapTy::iterator, bool> Pair =
100         Map.insert(std::make_pair(InsertPair.first, size_t(0)));
101       if (Pair.second) {
102         size_t Num = Vector.size();
103         Pair.first->second = Num;
104         Vector.push_back(InsertPair);
105         return std::make_pair(Vector.begin() + Num, true);
106       }
107       return std::make_pair(Vector.begin() + Pair.first->second, false);
108     }
109
110     const_iterator find(const KeyT &Key) const {
111       typename MapTy::const_iterator It = Map.find(Key);
112       if (It == Map.end()) return Vector.end();
113       return Vector.begin() + It->second;
114     }
115
116     /// This is similar to erase, but instead of removing the element from the
117     /// vector, it just zeros out the key in the vector. This leaves iterators
118     /// intact, but clients must be prepared for zeroed-out keys when iterating.
119     void blot(const KeyT &Key) {
120       typename MapTy::iterator It = Map.find(Key);
121       if (It == Map.end()) return;
122       Vector[It->second].first = KeyT();
123       Map.erase(It);
124     }
125
126     void clear() {
127       Map.clear();
128       Vector.clear();
129     }
130   };
131 }
132
133 /// @}
134 ///
135 /// \defgroup ARCUtilities Utility declarations/definitions specific to ARC.
136 /// @{
137
138 /// \brief This is similar to StripPointerCastsAndObjCCalls but it stops as soon
139 /// as it finds a value with multiple uses.
140 static const Value *FindSingleUseIdentifiedObject(const Value *Arg) {
141   if (Arg->hasOneUse()) {
142     if (const BitCastInst *BC = dyn_cast<BitCastInst>(Arg))
143       return FindSingleUseIdentifiedObject(BC->getOperand(0));
144     if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Arg))
145       if (GEP->hasAllZeroIndices())
146         return FindSingleUseIdentifiedObject(GEP->getPointerOperand());
147     if (IsForwarding(GetBasicInstructionClass(Arg)))
148       return FindSingleUseIdentifiedObject(
149                cast<CallInst>(Arg)->getArgOperand(0));
150     if (!IsObjCIdentifiedObject(Arg))
151       return 0;
152     return Arg;
153   }
154
155   // If we found an identifiable object but it has multiple uses, but they are
156   // trivial uses, we can still consider this to be a single-use value.
157   if (IsObjCIdentifiedObject(Arg)) {
158     for (Value::const_use_iterator UI = Arg->use_begin(), UE = Arg->use_end();
159          UI != UE; ++UI) {
160       const User *U = *UI;
161       if (!U->use_empty() || StripPointerCastsAndObjCCalls(U) != Arg)
162          return 0;
163     }
164
165     return Arg;
166   }
167
168   return 0;
169 }
170
171 /// \brief Test whether the given retainable object pointer escapes.
172 ///
173 /// This differs from regular escape analysis in that a use as an
174 /// argument to a call is not considered an escape.
175 ///
176 static bool DoesRetainableObjPtrEscape(const User *Ptr) {
177   DEBUG(dbgs() << "DoesRetainableObjPtrEscape: Target: " << *Ptr << "\n");
178
179   // Walk the def-use chains.
180   SmallVector<const Value *, 4> Worklist;
181   Worklist.push_back(Ptr);
182   // If Ptr has any operands add them as well.
183   for (User::const_op_iterator I = Ptr->op_begin(), E = Ptr->op_end(); I != E;
184        ++I) {
185     Worklist.push_back(*I);
186   }
187
188   // Ensure we do not visit any value twice.
189   SmallPtrSet<const Value *, 8> VisitedSet;
190
191   do {
192     const Value *V = Worklist.pop_back_val();
193
194     DEBUG(dbgs() << "Visiting: " << *V << "\n");
195
196     for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
197          UI != UE; ++UI) {
198       const User *UUser = *UI;
199
200       DEBUG(dbgs() << "User: " << *UUser << "\n");
201
202       // Special - Use by a call (callee or argument) is not considered
203       // to be an escape.
204       switch (GetBasicInstructionClass(UUser)) {
205       case IC_StoreWeak:
206       case IC_InitWeak:
207       case IC_StoreStrong:
208       case IC_Autorelease:
209       case IC_AutoreleaseRV: {
210         DEBUG(dbgs() << "User copies pointer arguments. Pointer Escapes!\n");
211         // These special functions make copies of their pointer arguments.
212         return true;
213       }
214       case IC_IntrinsicUser:
215         // Use by the use intrinsic is not an escape.
216         continue;
217       case IC_User:
218       case IC_None:
219         // Use by an instruction which copies the value is an escape if the
220         // result is an escape.
221         if (isa<BitCastInst>(UUser) || isa<GetElementPtrInst>(UUser) ||
222             isa<PHINode>(UUser) || isa<SelectInst>(UUser)) {
223
224           if (VisitedSet.insert(UUser)) {
225             DEBUG(dbgs() << "User copies value. Ptr escapes if result escapes."
226                   " Adding to list.\n");
227             Worklist.push_back(UUser);
228           } else {
229             DEBUG(dbgs() << "Already visited node.\n");
230           }
231           continue;
232         }
233         // Use by a load is not an escape.
234         if (isa<LoadInst>(UUser))
235           continue;
236         // Use by a store is not an escape if the use is the address.
237         if (const StoreInst *SI = dyn_cast<StoreInst>(UUser))
238           if (V != SI->getValueOperand())
239             continue;
240         break;
241       default:
242         // Regular calls and other stuff are not considered escapes.
243         continue;
244       }
245       // Otherwise, conservatively assume an escape.
246       DEBUG(dbgs() << "Assuming ptr escapes.\n");
247       return true;
248     }
249   } while (!Worklist.empty());
250
251   // No escapes found.
252   DEBUG(dbgs() << "Ptr does not escape.\n");
253   return false;
254 }
255
256 /// @}
257 ///
258 /// \defgroup ARCOpt ARC Optimization.
259 /// @{
260
261 // TODO: On code like this:
262 //
263 // objc_retain(%x)
264 // stuff_that_cannot_release()
265 // objc_autorelease(%x)
266 // stuff_that_cannot_release()
267 // objc_retain(%x)
268 // stuff_that_cannot_release()
269 // objc_autorelease(%x)
270 //
271 // The second retain and autorelease can be deleted.
272
273 // TODO: It should be possible to delete
274 // objc_autoreleasePoolPush and objc_autoreleasePoolPop
275 // pairs if nothing is actually autoreleased between them. Also, autorelease
276 // calls followed by objc_autoreleasePoolPop calls (perhaps in ObjC++ code
277 // after inlining) can be turned into plain release calls.
278
279 // TODO: Critical-edge splitting. If the optimial insertion point is
280 // a critical edge, the current algorithm has to fail, because it doesn't
281 // know how to split edges. It should be possible to make the optimizer
282 // think in terms of edges, rather than blocks, and then split critical
283 // edges on demand.
284
285 // TODO: OptimizeSequences could generalized to be Interprocedural.
286
287 // TODO: Recognize that a bunch of other objc runtime calls have
288 // non-escaping arguments and non-releasing arguments, and may be
289 // non-autoreleasing.
290
291 // TODO: Sink autorelease calls as far as possible. Unfortunately we
292 // usually can't sink them past other calls, which would be the main
293 // case where it would be useful.
294
295 // TODO: The pointer returned from objc_loadWeakRetained is retained.
296
297 // TODO: Delete release+retain pairs (rare).
298
299 STATISTIC(NumNoops,       "Number of no-op objc calls eliminated");
300 STATISTIC(NumPartialNoops, "Number of partially no-op objc calls eliminated");
301 STATISTIC(NumAutoreleases,"Number of autoreleases converted to releases");
302 STATISTIC(NumRets,        "Number of return value forwarding "
303                           "retain+autoreleaes eliminated");
304 STATISTIC(NumRRs,         "Number of retain+release paths eliminated");
305 STATISTIC(NumPeeps,       "Number of calls peephole-optimized");
306
307 namespace {
308   /// \enum Sequence
309   ///
310   /// \brief A sequence of states that a pointer may go through in which an
311   /// objc_retain and objc_release are actually needed.
312   enum Sequence {
313     S_None,
314     S_Retain,         ///< objc_retain(x).
315     S_CanRelease,     ///< foo(x) -- x could possibly see a ref count decrement.
316     S_Use,            ///< any use of x.
317     S_Stop,           ///< like S_Release, but code motion is stopped.
318     S_Release,        ///< objc_release(x).
319     S_MovableRelease  ///< objc_release(x), !clang.imprecise_release.
320   };
321
322   raw_ostream &operator<<(raw_ostream &OS, const Sequence S)
323     LLVM_ATTRIBUTE_UNUSED;
324   raw_ostream &operator<<(raw_ostream &OS, const Sequence S) {
325     switch (S) {
326     case S_None:
327       return OS << "S_None";
328     case S_Retain:
329       return OS << "S_Retain";
330     case S_CanRelease:
331       return OS << "S_CanRelease";
332     case S_Use:
333       return OS << "S_Use";
334     case S_Release:
335       return OS << "S_Release";
336     case S_MovableRelease:
337       return OS << "S_MovableRelease";
338     case S_Stop:
339       return OS << "S_Stop";
340     }
341     llvm_unreachable("Unknown sequence type.");
342   }
343 }
344
345 static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
346   // The easy cases.
347   if (A == B)
348     return A;
349   if (A == S_None || B == S_None)
350     return S_None;
351
352   if (A > B) std::swap(A, B);
353   if (TopDown) {
354     // Choose the side which is further along in the sequence.
355     if ((A == S_Retain || A == S_CanRelease) &&
356         (B == S_CanRelease || B == S_Use))
357       return B;
358   } else {
359     // Choose the side which is further along in the sequence.
360     if ((A == S_Use || A == S_CanRelease) &&
361         (B == S_Use || B == S_Release || B == S_Stop || B == S_MovableRelease))
362       return A;
363     // If both sides are releases, choose the more conservative one.
364     if (A == S_Stop && (B == S_Release || B == S_MovableRelease))
365       return A;
366     if (A == S_Release && B == S_MovableRelease)
367       return A;
368   }
369
370   return S_None;
371 }
372
373 namespace {
374   /// \brief Unidirectional information about either a
375   /// retain-decrement-use-release sequence or release-use-decrement-retain
376   /// reverse sequence.
377   struct RRInfo {
378     /// After an objc_retain, the reference count of the referenced
379     /// object is known to be positive. Similarly, before an objc_release, the
380     /// reference count of the referenced object is known to be positive. If
381     /// there are retain-release pairs in code regions where the retain count
382     /// is known to be positive, they can be eliminated, regardless of any side
383     /// effects between them.
384     ///
385     /// Also, a retain+release pair nested within another retain+release
386     /// pair all on the known same pointer value can be eliminated, regardless
387     /// of any intervening side effects.
388     ///
389     /// KnownSafe is true when either of these conditions is satisfied.
390     bool KnownSafe;
391
392     /// True of the objc_release calls are all marked with the "tail" keyword.
393     bool IsTailCallRelease;
394
395     /// If the Calls are objc_release calls and they all have a
396     /// clang.imprecise_release tag, this is the metadata tag.
397     MDNode *ReleaseMetadata;
398
399     /// For a top-down sequence, the set of objc_retains or
400     /// objc_retainBlocks. For bottom-up, the set of objc_releases.
401     SmallPtrSet<Instruction *, 2> Calls;
402
403     /// The set of optimal insert positions for moving calls in the opposite
404     /// sequence.
405     SmallPtrSet<Instruction *, 2> ReverseInsertPts;
406
407     RRInfo() :
408       KnownSafe(false), IsTailCallRelease(false), ReleaseMetadata(0) {}
409
410     void clear();
411
412     bool IsTrackingImpreciseReleases() {
413       return ReleaseMetadata != 0;
414     }
415   };
416 }
417
418 void RRInfo::clear() {
419   KnownSafe = false;
420   IsTailCallRelease = false;
421   ReleaseMetadata = 0;
422   Calls.clear();
423   ReverseInsertPts.clear();
424 }
425
426 namespace {
427   /// \brief This class summarizes several per-pointer runtime properties which
428   /// are propogated through the flow graph.
429   class PtrState {
430     /// True if the reference count is known to be incremented.
431     bool KnownPositiveRefCount;
432
433     /// True if we've seen an opportunity for partial RR elimination, such as
434     /// pushing calls into a CFG triangle or into one side of a CFG diamond.
435     bool Partial;
436
437     /// The current position in the sequence.
438     Sequence Seq : 8;
439
440   public:
441     /// Unidirectional information about the current sequence.
442     ///
443     /// TODO: Encapsulate this better.
444     RRInfo RRI;
445
446     PtrState() : KnownPositiveRefCount(false), Partial(false),
447                  Seq(S_None) {}
448
449     void SetKnownPositiveRefCount() {
450       KnownPositiveRefCount = true;
451     }
452
453     void ClearKnownPositiveRefCount() {
454       KnownPositiveRefCount = false;
455     }
456
457     bool HasKnownPositiveRefCount() const {
458       return KnownPositiveRefCount;
459     }
460
461     void SetSeq(Sequence NewSeq) {
462       DEBUG(dbgs() << "Old: " << Seq << "; New: " << NewSeq << "\n");
463       Seq = NewSeq;
464     }
465
466     Sequence GetSeq() const {
467       return Seq;
468     }
469
470     void ClearSequenceProgress() {
471       ResetSequenceProgress(S_None);
472     }
473
474     void ResetSequenceProgress(Sequence NewSeq) {
475       DEBUG(dbgs() << "Resetting sequence progress.\n");
476       SetSeq(NewSeq);
477       Partial = false;
478       RRI.clear();
479     }
480
481     void Merge(const PtrState &Other, bool TopDown);
482   };
483 }
484
485 void
486 PtrState::Merge(const PtrState &Other, bool TopDown) {
487   Seq = MergeSeqs(Seq, Other.Seq, TopDown);
488   KnownPositiveRefCount = KnownPositiveRefCount && Other.KnownPositiveRefCount;
489
490   // If we're not in a sequence (anymore), drop all associated state.
491   if (Seq == S_None) {
492     Partial = false;
493     RRI.clear();
494   } else if (Partial || Other.Partial) {
495     // If we're doing a merge on a path that's previously seen a partial
496     // merge, conservatively drop the sequence, to avoid doing partial
497     // RR elimination. If the branch predicates for the two merge differ,
498     // mixing them is unsafe.
499     ClearSequenceProgress();
500   } else {
501     // Conservatively merge the ReleaseMetadata information.
502     if (RRI.ReleaseMetadata != Other.RRI.ReleaseMetadata)
503       RRI.ReleaseMetadata = 0;
504
505     RRI.KnownSafe = RRI.KnownSafe && Other.RRI.KnownSafe;
506     RRI.IsTailCallRelease = RRI.IsTailCallRelease &&
507                             Other.RRI.IsTailCallRelease;
508     RRI.Calls.insert(Other.RRI.Calls.begin(), Other.RRI.Calls.end());
509
510     // Merge the insert point sets. If there are any differences,
511     // that makes this a partial merge.
512     Partial = RRI.ReverseInsertPts.size() != Other.RRI.ReverseInsertPts.size();
513     for (SmallPtrSet<Instruction *, 2>::const_iterator
514          I = Other.RRI.ReverseInsertPts.begin(),
515          E = Other.RRI.ReverseInsertPts.end(); I != E; ++I)
516       Partial |= RRI.ReverseInsertPts.insert(*I);
517   }
518 }
519
520 namespace {
521   /// \brief Per-BasicBlock state.
522   class BBState {
523     /// The number of unique control paths from the entry which can reach this
524     /// block.
525     unsigned TopDownPathCount;
526
527     /// The number of unique control paths to exits from this block.
528     unsigned BottomUpPathCount;
529
530     /// A type for PerPtrTopDown and PerPtrBottomUp.
531     typedef MapVector<const Value *, PtrState> MapTy;
532
533     /// The top-down traversal uses this to record information known about a
534     /// pointer at the bottom of each block.
535     MapTy PerPtrTopDown;
536
537     /// The bottom-up traversal uses this to record information known about a
538     /// pointer at the top of each block.
539     MapTy PerPtrBottomUp;
540
541     /// Effective predecessors of the current block ignoring ignorable edges and
542     /// ignored backedges.
543     SmallVector<BasicBlock *, 2> Preds;
544     /// Effective successors of the current block ignoring ignorable edges and
545     /// ignored backedges.
546     SmallVector<BasicBlock *, 2> Succs;
547
548   public:
549     BBState() : TopDownPathCount(0), BottomUpPathCount(0) {}
550
551     typedef MapTy::iterator ptr_iterator;
552     typedef MapTy::const_iterator ptr_const_iterator;
553
554     ptr_iterator top_down_ptr_begin() { return PerPtrTopDown.begin(); }
555     ptr_iterator top_down_ptr_end() { return PerPtrTopDown.end(); }
556     ptr_const_iterator top_down_ptr_begin() const {
557       return PerPtrTopDown.begin();
558     }
559     ptr_const_iterator top_down_ptr_end() const {
560       return PerPtrTopDown.end();
561     }
562
563     ptr_iterator bottom_up_ptr_begin() { return PerPtrBottomUp.begin(); }
564     ptr_iterator bottom_up_ptr_end() { return PerPtrBottomUp.end(); }
565     ptr_const_iterator bottom_up_ptr_begin() const {
566       return PerPtrBottomUp.begin();
567     }
568     ptr_const_iterator bottom_up_ptr_end() const {
569       return PerPtrBottomUp.end();
570     }
571
572     /// Mark this block as being an entry block, which has one path from the
573     /// entry by definition.
574     void SetAsEntry() { TopDownPathCount = 1; }
575
576     /// Mark this block as being an exit block, which has one path to an exit by
577     /// definition.
578     void SetAsExit()  { BottomUpPathCount = 1; }
579
580     PtrState &getPtrTopDownState(const Value *Arg) {
581       return PerPtrTopDown[Arg];
582     }
583
584     PtrState &getPtrBottomUpState(const Value *Arg) {
585       return PerPtrBottomUp[Arg];
586     }
587
588     void clearBottomUpPointers() {
589       PerPtrBottomUp.clear();
590     }
591
592     void clearTopDownPointers() {
593       PerPtrTopDown.clear();
594     }
595
596     void InitFromPred(const BBState &Other);
597     void InitFromSucc(const BBState &Other);
598     void MergePred(const BBState &Other);
599     void MergeSucc(const BBState &Other);
600
601     /// Return the number of possible unique paths from an entry to an exit
602     /// which pass through this block. This is only valid after both the
603     /// top-down and bottom-up traversals are complete.
604     unsigned GetAllPathCount() const {
605       assert(TopDownPathCount != 0);
606       assert(BottomUpPathCount != 0);
607       return TopDownPathCount * BottomUpPathCount;
608     }
609
610     // Specialized CFG utilities.
611     typedef SmallVectorImpl<BasicBlock *>::const_iterator edge_iterator;
612     edge_iterator pred_begin() { return Preds.begin(); }
613     edge_iterator pred_end() { return Preds.end(); }
614     edge_iterator succ_begin() { return Succs.begin(); }
615     edge_iterator succ_end() { return Succs.end(); }
616
617     void addSucc(BasicBlock *Succ) { Succs.push_back(Succ); }
618     void addPred(BasicBlock *Pred) { Preds.push_back(Pred); }
619
620     bool isExit() const { return Succs.empty(); }
621   };
622 }
623
624 void BBState::InitFromPred(const BBState &Other) {
625   PerPtrTopDown = Other.PerPtrTopDown;
626   TopDownPathCount = Other.TopDownPathCount;
627 }
628
629 void BBState::InitFromSucc(const BBState &Other) {
630   PerPtrBottomUp = Other.PerPtrBottomUp;
631   BottomUpPathCount = Other.BottomUpPathCount;
632 }
633
634 /// The top-down traversal uses this to merge information about predecessors to
635 /// form the initial state for a new block.
636 void BBState::MergePred(const BBState &Other) {
637   // Other.TopDownPathCount can be 0, in which case it is either dead or a
638   // loop backedge. Loop backedges are special.
639   TopDownPathCount += Other.TopDownPathCount;
640
641   // Check for overflow. If we have overflow, fall back to conservative
642   // behavior.
643   if (TopDownPathCount < Other.TopDownPathCount) {
644     clearTopDownPointers();
645     return;
646   }
647
648   // For each entry in the other set, if our set has an entry with the same key,
649   // merge the entries. Otherwise, copy the entry and merge it with an empty
650   // entry.
651   for (ptr_const_iterator MI = Other.top_down_ptr_begin(),
652        ME = Other.top_down_ptr_end(); MI != ME; ++MI) {
653     std::pair<ptr_iterator, bool> Pair = PerPtrTopDown.insert(*MI);
654     Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
655                              /*TopDown=*/true);
656   }
657
658   // For each entry in our set, if the other set doesn't have an entry with the
659   // same key, force it to merge with an empty entry.
660   for (ptr_iterator MI = top_down_ptr_begin(),
661        ME = top_down_ptr_end(); MI != ME; ++MI)
662     if (Other.PerPtrTopDown.find(MI->first) == Other.PerPtrTopDown.end())
663       MI->second.Merge(PtrState(), /*TopDown=*/true);
664 }
665
666 /// The bottom-up traversal uses this to merge information about successors to
667 /// form the initial state for a new block.
668 void BBState::MergeSucc(const BBState &Other) {
669   // Other.BottomUpPathCount can be 0, in which case it is either dead or a
670   // loop backedge. Loop backedges are special.
671   BottomUpPathCount += Other.BottomUpPathCount;
672
673   // Check for overflow. If we have overflow, fall back to conservative
674   // behavior.
675   if (BottomUpPathCount < Other.BottomUpPathCount) {
676     clearBottomUpPointers();
677     return;
678   }
679
680   // For each entry in the other set, if our set has an entry with the
681   // same key, merge the entries. Otherwise, copy the entry and merge
682   // it with an empty entry.
683   for (ptr_const_iterator MI = Other.bottom_up_ptr_begin(),
684        ME = Other.bottom_up_ptr_end(); MI != ME; ++MI) {
685     std::pair<ptr_iterator, bool> Pair = PerPtrBottomUp.insert(*MI);
686     Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
687                              /*TopDown=*/false);
688   }
689
690   // For each entry in our set, if the other set doesn't have an entry
691   // with the same key, force it to merge with an empty entry.
692   for (ptr_iterator MI = bottom_up_ptr_begin(),
693        ME = bottom_up_ptr_end(); MI != ME; ++MI)
694     if (Other.PerPtrBottomUp.find(MI->first) == Other.PerPtrBottomUp.end())
695       MI->second.Merge(PtrState(), /*TopDown=*/false);
696 }
697
698 // Only enable ARC Annotations if we are building a debug version of
699 // libObjCARCOpts.
700 #ifndef NDEBUG
701 #define ARC_ANNOTATIONS
702 #endif
703
704 // Define some macros along the lines of DEBUG and some helper functions to make
705 // it cleaner to create annotations in the source code and to no-op when not
706 // building in debug mode.
707 #ifdef ARC_ANNOTATIONS
708
709 #include "llvm/Support/CommandLine.h"
710
711 /// Enable/disable ARC sequence annotations.
712 static cl::opt<bool>
713 EnableARCAnnotations("enable-objc-arc-annotations", cl::init(false),
714                      cl::desc("Enable emission of arc data flow analysis "
715                               "annotations"));
716 static cl::opt<bool>
717 DisableCheckForCFGHazards("disable-objc-arc-checkforcfghazards", cl::init(false),
718                           cl::desc("Disable check for cfg hazards when "
719                                    "annotating"));
720 static cl::opt<std::string>
721 ARCAnnotationTargetIdentifier("objc-arc-annotation-target-identifier",
722                               cl::init(""),
723                               cl::desc("filter out all data flow annotations "
724                                        "but those that apply to the given "
725                                        "target llvm identifier."));
726
727 /// This function appends a unique ARCAnnotationProvenanceSourceMDKind id to an
728 /// instruction so that we can track backwards when post processing via the llvm
729 /// arc annotation processor tool. If the function is an
730 static MDString *AppendMDNodeToSourcePtr(unsigned NodeId,
731                                          Value *Ptr) {
732   MDString *Hash = 0;
733
734   // If pointer is a result of an instruction and it does not have a source
735   // MDNode it, attach a new MDNode onto it. If pointer is a result of
736   // an instruction and does have a source MDNode attached to it, return a
737   // reference to said Node. Otherwise just return 0.
738   if (Instruction *Inst = dyn_cast<Instruction>(Ptr)) {
739     MDNode *Node;
740     if (!(Node = Inst->getMetadata(NodeId))) {
741       // We do not have any node. Generate and attatch the hash MDString to the
742       // instruction.
743
744       // We just use an MDString to ensure that this metadata gets written out
745       // of line at the module level and to provide a very simple format
746       // encoding the information herein. Both of these makes it simpler to
747       // parse the annotations by a simple external program.
748       std::string Str;
749       raw_string_ostream os(Str);
750       os << "(" << Inst->getParent()->getParent()->getName() << ",%"
751          << Inst->getName() << ")";
752
753       Hash = MDString::get(Inst->getContext(), os.str());
754       Inst->setMetadata(NodeId, MDNode::get(Inst->getContext(),Hash));
755     } else {
756       // We have a node. Grab its hash and return it.
757       assert(Node->getNumOperands() == 1 &&
758         "An ARCAnnotationProvenanceSourceMDKind can only have 1 operand.");
759       Hash = cast<MDString>(Node->getOperand(0));
760     }
761   } else if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
762     std::string str;
763     raw_string_ostream os(str);
764     os << "(" << Arg->getParent()->getName() << ",%" << Arg->getName()
765        << ")";
766     Hash = MDString::get(Arg->getContext(), os.str());
767   }
768
769   return Hash;
770 }
771
772 static std::string SequenceToString(Sequence A) {
773   std::string str;
774   raw_string_ostream os(str);
775   os << A;
776   return os.str();
777 }
778
779 /// Helper function to change a Sequence into a String object using our overload
780 /// for raw_ostream so we only have printing code in one location.
781 static MDString *SequenceToMDString(LLVMContext &Context,
782                                     Sequence A) {
783   return MDString::get(Context, SequenceToString(A));
784 }
785
786 /// A simple function to generate a MDNode which describes the change in state
787 /// for Value *Ptr caused by Instruction *Inst.
788 static void AppendMDNodeToInstForPtr(unsigned NodeId,
789                                      Instruction *Inst,
790                                      Value *Ptr,
791                                      MDString *PtrSourceMDNodeID,
792                                      Sequence OldSeq,
793                                      Sequence NewSeq) {
794   MDNode *Node = 0;
795   Value *tmp[3] = {PtrSourceMDNodeID,
796                    SequenceToMDString(Inst->getContext(),
797                                       OldSeq),
798                    SequenceToMDString(Inst->getContext(),
799                                       NewSeq)};
800   Node = MDNode::get(Inst->getContext(),
801                      ArrayRef<Value*>(tmp, 3));
802
803   Inst->setMetadata(NodeId, Node);
804 }
805
806 /// Add to the beginning of the basic block llvm.ptr.annotations which show the
807 /// state of a pointer at the entrance to a basic block.
808 static void GenerateARCBBEntranceAnnotation(const char *Name, BasicBlock *BB,
809                                             Value *Ptr, Sequence Seq) {
810   // If we have a target identifier, make sure that we match it before
811   // continuing.
812   if(!ARCAnnotationTargetIdentifier.empty() &&
813      !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
814     return;
815
816   Module *M = BB->getParent()->getParent();
817   LLVMContext &C = M->getContext();
818   Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
819   Type *I8XX = PointerType::getUnqual(I8X);
820   Type *Params[] = {I8XX, I8XX};
821   FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
822                                         ArrayRef<Type*>(Params, 2),
823                                         /*isVarArg=*/false);
824   Constant *Callee = M->getOrInsertFunction(Name, FTy);
825
826   IRBuilder<> Builder(BB, BB->getFirstInsertionPt());
827
828   Value *PtrName;
829   StringRef Tmp = Ptr->getName();
830   if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
831     Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
832                                                          Tmp + "_STR");
833     PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
834                                  cast<Constant>(ActualPtrName), Tmp);
835   }
836
837   Value *S;
838   std::string SeqStr = SequenceToString(Seq);
839   if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
840     Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
841                                                          SeqStr + "_STR");
842     S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
843                            cast<Constant>(ActualPtrName), SeqStr);
844   }
845
846   Builder.CreateCall2(Callee, PtrName, S);
847 }
848
849 /// Add to the end of the basic block llvm.ptr.annotations which show the state
850 /// of the pointer at the bottom of the basic block.
851 static void GenerateARCBBTerminatorAnnotation(const char *Name, BasicBlock *BB,
852                                               Value *Ptr, Sequence Seq) {
853   // If we have a target identifier, make sure that we match it before emitting
854   // an annotation.
855   if(!ARCAnnotationTargetIdentifier.empty() &&
856      !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
857     return;
858
859   Module *M = BB->getParent()->getParent();
860   LLVMContext &C = M->getContext();
861   Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
862   Type *I8XX = PointerType::getUnqual(I8X);
863   Type *Params[] = {I8XX, I8XX};
864   FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
865                                         ArrayRef<Type*>(Params, 2),
866                                         /*isVarArg=*/false);
867   Constant *Callee = M->getOrInsertFunction(Name, FTy);
868
869   IRBuilder<> Builder(BB, llvm::prior(BB->end()));
870
871   Value *PtrName;
872   StringRef Tmp = Ptr->getName();
873   if (0 == (PtrName = M->getGlobalVariable(Tmp, true))) {
874     Value *ActualPtrName = Builder.CreateGlobalStringPtr(Tmp,
875                                                          Tmp + "_STR");
876     PtrName = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
877                                  cast<Constant>(ActualPtrName), Tmp);
878   }
879
880   Value *S;
881   std::string SeqStr = SequenceToString(Seq);
882   if (0 == (S = M->getGlobalVariable(SeqStr, true))) {
883     Value *ActualPtrName = Builder.CreateGlobalStringPtr(SeqStr,
884                                                          SeqStr + "_STR");
885     S = new GlobalVariable(*M, I8X, true, GlobalVariable::InternalLinkage,
886                            cast<Constant>(ActualPtrName), SeqStr);
887   }
888   Builder.CreateCall2(Callee, PtrName, S);
889 }
890
891 /// Adds a source annotation to pointer and a state change annotation to Inst
892 /// referencing the source annotation and the old/new state of pointer.
893 static void GenerateARCAnnotation(unsigned InstMDId,
894                                   unsigned PtrMDId,
895                                   Instruction *Inst,
896                                   Value *Ptr,
897                                   Sequence OldSeq,
898                                   Sequence NewSeq) {
899   if (EnableARCAnnotations) {
900     // If we have a target identifier, make sure that we match it before
901     // emitting an annotation.
902     if(!ARCAnnotationTargetIdentifier.empty() &&
903        !Ptr->getName().equals(ARCAnnotationTargetIdentifier))
904       return;
905
906     // First generate the source annotation on our pointer. This will return an
907     // MDString* if Ptr actually comes from an instruction implying we can put
908     // in a source annotation. If AppendMDNodeToSourcePtr returns 0 (i.e. NULL),
909     // then we know that our pointer is from an Argument so we put a reference
910     // to the argument number.
911     //
912     // The point of this is to make it easy for the
913     // llvm-arc-annotation-processor tool to cross reference where the source
914     // pointer is in the LLVM IR since the LLVM IR parser does not submit such
915     // information via debug info for backends to use (since why would anyone
916     // need such a thing from LLVM IR besides in non standard cases
917     // [i.e. this]).
918     MDString *SourcePtrMDNode =
919       AppendMDNodeToSourcePtr(PtrMDId, Ptr);
920     AppendMDNodeToInstForPtr(InstMDId, Inst, Ptr, SourcePtrMDNode, OldSeq,
921                              NewSeq);
922   }
923 }
924
925 // The actual interface for accessing the above functionality is defined via
926 // some simple macros which are defined below. We do this so that the user does
927 // not need to pass in what metadata id is needed resulting in cleaner code and
928 // additionally since it provides an easy way to conditionally no-op all
929 // annotation support in a non-debug build.
930
931 /// Use this macro to annotate a sequence state change when processing
932 /// instructions bottom up,
933 #define ANNOTATE_BOTTOMUP(inst, ptr, old, new)                          \
934   GenerateARCAnnotation(ARCAnnotationBottomUpMDKind,                    \
935                         ARCAnnotationProvenanceSourceMDKind, (inst),    \
936                         const_cast<Value*>(ptr), (old), (new))
937 /// Use this macro to annotate a sequence state change when processing
938 /// instructions top down.
939 #define ANNOTATE_TOPDOWN(inst, ptr, old, new)                           \
940   GenerateARCAnnotation(ARCAnnotationTopDownMDKind,                     \
941                         ARCAnnotationProvenanceSourceMDKind, (inst),    \
942                         const_cast<Value*>(ptr), (old), (new))
943
944 #define ANNOTATE_BB(_states, _bb, _name, _type, _direction)                   \
945   do {                                                                        \
946     if (EnableARCAnnotations) {                                               \
947       for(BBState::ptr_const_iterator I = (_states)._direction##_ptr_begin(), \
948           E = (_states)._direction##_ptr_end(); I != E; ++I) {                \
949         Value *Ptr = const_cast<Value*>(I->first);                            \
950         Sequence Seq = I->second.GetSeq();                                    \
951         GenerateARCBB ## _type ## Annotation(_name, (_bb), Ptr, Seq);         \
952       }                                                                       \
953     }                                                                         \
954   } while (0)
955
956 #define ANNOTATE_BOTTOMUP_BBSTART(_states, _basicblock)                       \
957     ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbstart", \
958                 Entrance, bottom_up)
959 #define ANNOTATE_BOTTOMUP_BBEND(_states, _basicblock)                         \
960     ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.bottomup.bbend",   \
961                 Terminator, bottom_up)
962 #define ANNOTATE_TOPDOWN_BBSTART(_states, _basicblock)                        \
963     ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbstart",  \
964                 Entrance, top_down)
965 #define ANNOTATE_TOPDOWN_BBEND(_states, _basicblock)                          \
966     ANNOTATE_BB(_states, _basicblock, "llvm.arc.annotation.topdown.bbend",    \
967                 Terminator, top_down)
968
969 #else // !ARC_ANNOTATION
970 // If annotations are off, noop.
971 #define ANNOTATE_BOTTOMUP(inst, ptr, old, new)
972 #define ANNOTATE_TOPDOWN(inst, ptr, old, new)
973 #define ANNOTATE_BOTTOMUP_BBSTART(states, basicblock)
974 #define ANNOTATE_BOTTOMUP_BBEND(states, basicblock)
975 #define ANNOTATE_TOPDOWN_BBSTART(states, basicblock)
976 #define ANNOTATE_TOPDOWN_BBEND(states, basicblock)
977 #endif // !ARC_ANNOTATION
978
979 namespace {
980   /// \brief The main ARC optimization pass.
981   class ObjCARCOpt : public FunctionPass {
982     bool Changed;
983     ProvenanceAnalysis PA;
984
985     /// A flag indicating whether this optimization pass should run.
986     bool Run;
987
988     /// Declarations for ObjC runtime functions, for use in creating calls to
989     /// them. These are initialized lazily to avoid cluttering up the Module
990     /// with unused declarations.
991
992     /// Declaration for ObjC runtime function
993     /// objc_retainAutoreleasedReturnValue.
994     Constant *RetainRVCallee;
995     /// Declaration for ObjC runtime function objc_autoreleaseReturnValue.
996     Constant *AutoreleaseRVCallee;
997     /// Declaration for ObjC runtime function objc_release.
998     Constant *ReleaseCallee;
999     /// Declaration for ObjC runtime function objc_retain.
1000     Constant *RetainCallee;
1001     /// Declaration for ObjC runtime function objc_retainBlock.
1002     Constant *RetainBlockCallee;
1003     /// Declaration for ObjC runtime function objc_autorelease.
1004     Constant *AutoreleaseCallee;
1005
1006     /// Flags which determine whether each of the interesting runtine functions
1007     /// is in fact used in the current function.
1008     unsigned UsedInThisFunction;
1009
1010     /// The Metadata Kind for clang.imprecise_release metadata.
1011     unsigned ImpreciseReleaseMDKind;
1012
1013     /// The Metadata Kind for clang.arc.copy_on_escape metadata.
1014     unsigned CopyOnEscapeMDKind;
1015
1016     /// The Metadata Kind for clang.arc.no_objc_arc_exceptions metadata.
1017     unsigned NoObjCARCExceptionsMDKind;
1018
1019 #ifdef ARC_ANNOTATIONS
1020     /// The Metadata Kind for llvm.arc.annotation.bottomup metadata.
1021     unsigned ARCAnnotationBottomUpMDKind;
1022     /// The Metadata Kind for llvm.arc.annotation.topdown metadata.
1023     unsigned ARCAnnotationTopDownMDKind;
1024     /// The Metadata Kind for llvm.arc.annotation.provenancesource metadata.
1025     unsigned ARCAnnotationProvenanceSourceMDKind;
1026 #endif // ARC_ANNOATIONS
1027
1028     Constant *getRetainRVCallee(Module *M);
1029     Constant *getAutoreleaseRVCallee(Module *M);
1030     Constant *getReleaseCallee(Module *M);
1031     Constant *getRetainCallee(Module *M);
1032     Constant *getRetainBlockCallee(Module *M);
1033     Constant *getAutoreleaseCallee(Module *M);
1034
1035     bool IsRetainBlockOptimizable(const Instruction *Inst);
1036
1037     void OptimizeRetainCall(Function &F, Instruction *Retain);
1038     bool OptimizeRetainRVCall(Function &F, Instruction *RetainRV);
1039     void OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1040                                    InstructionClass &Class);
1041     bool OptimizeRetainBlockCall(Function &F, Instruction *RetainBlock,
1042                                  InstructionClass &Class);
1043     void OptimizeIndividualCalls(Function &F);
1044
1045     void CheckForCFGHazards(const BasicBlock *BB,
1046                             DenseMap<const BasicBlock *, BBState> &BBStates,
1047                             BBState &MyStates) const;
1048     bool VisitInstructionBottomUp(Instruction *Inst,
1049                                   BasicBlock *BB,
1050                                   MapVector<Value *, RRInfo> &Retains,
1051                                   BBState &MyStates);
1052     bool VisitBottomUp(BasicBlock *BB,
1053                        DenseMap<const BasicBlock *, BBState> &BBStates,
1054                        MapVector<Value *, RRInfo> &Retains);
1055     bool VisitInstructionTopDown(Instruction *Inst,
1056                                  DenseMap<Value *, RRInfo> &Releases,
1057                                  BBState &MyStates);
1058     bool VisitTopDown(BasicBlock *BB,
1059                       DenseMap<const BasicBlock *, BBState> &BBStates,
1060                       DenseMap<Value *, RRInfo> &Releases);
1061     bool Visit(Function &F,
1062                DenseMap<const BasicBlock *, BBState> &BBStates,
1063                MapVector<Value *, RRInfo> &Retains,
1064                DenseMap<Value *, RRInfo> &Releases);
1065
1066     void MoveCalls(Value *Arg, RRInfo &RetainsToMove, RRInfo &ReleasesToMove,
1067                    MapVector<Value *, RRInfo> &Retains,
1068                    DenseMap<Value *, RRInfo> &Releases,
1069                    SmallVectorImpl<Instruction *> &DeadInsts,
1070                    Module *M);
1071
1072     bool ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState> &BBStates,
1073                                MapVector<Value *, RRInfo> &Retains,
1074                                DenseMap<Value *, RRInfo> &Releases,
1075                                Module *M,
1076                                SmallVector<Instruction *, 4> &NewRetains,
1077                                SmallVector<Instruction *, 4> &NewReleases,
1078                                SmallVector<Instruction *, 8> &DeadInsts,
1079                                RRInfo &RetainsToMove,
1080                                RRInfo &ReleasesToMove,
1081                                Value *Arg,
1082                                bool KnownSafe,
1083                                bool &AnyPairsCompletelyEliminated);
1084
1085     bool PerformCodePlacement(DenseMap<const BasicBlock *, BBState> &BBStates,
1086                               MapVector<Value *, RRInfo> &Retains,
1087                               DenseMap<Value *, RRInfo> &Releases,
1088                               Module *M);
1089
1090     void OptimizeWeakCalls(Function &F);
1091
1092     bool OptimizeSequences(Function &F);
1093
1094     void OptimizeReturns(Function &F);
1095
1096     virtual void getAnalysisUsage(AnalysisUsage &AU) const;
1097     virtual bool doInitialization(Module &M);
1098     virtual bool runOnFunction(Function &F);
1099     virtual void releaseMemory();
1100
1101   public:
1102     static char ID;
1103     ObjCARCOpt() : FunctionPass(ID) {
1104       initializeObjCARCOptPass(*PassRegistry::getPassRegistry());
1105     }
1106   };
1107 }
1108
1109 char ObjCARCOpt::ID = 0;
1110 INITIALIZE_PASS_BEGIN(ObjCARCOpt,
1111                       "objc-arc", "ObjC ARC optimization", false, false)
1112 INITIALIZE_PASS_DEPENDENCY(ObjCARCAliasAnalysis)
1113 INITIALIZE_PASS_END(ObjCARCOpt,
1114                     "objc-arc", "ObjC ARC optimization", false, false)
1115
1116 Pass *llvm::createObjCARCOptPass() {
1117   return new ObjCARCOpt();
1118 }
1119
1120 void ObjCARCOpt::getAnalysisUsage(AnalysisUsage &AU) const {
1121   AU.addRequired<ObjCARCAliasAnalysis>();
1122   AU.addRequired<AliasAnalysis>();
1123   // ARC optimization doesn't currently split critical edges.
1124   AU.setPreservesCFG();
1125 }
1126
1127 bool ObjCARCOpt::IsRetainBlockOptimizable(const Instruction *Inst) {
1128   // Without the magic metadata tag, we have to assume this might be an
1129   // objc_retainBlock call inserted to convert a block pointer to an id,
1130   // in which case it really is needed.
1131   if (!Inst->getMetadata(CopyOnEscapeMDKind))
1132     return false;
1133
1134   // If the pointer "escapes" (not including being used in a call),
1135   // the copy may be needed.
1136   if (DoesRetainableObjPtrEscape(Inst))
1137     return false;
1138
1139   // Otherwise, it's not needed.
1140   return true;
1141 }
1142
1143 Constant *ObjCARCOpt::getRetainRVCallee(Module *M) {
1144   if (!RetainRVCallee) {
1145     LLVMContext &C = M->getContext();
1146     Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
1147     Type *Params[] = { I8X };
1148     FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
1149     AttributeSet Attribute =
1150       AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1151                                   Attribute::NoUnwind);
1152     RetainRVCallee =
1153       M->getOrInsertFunction("objc_retainAutoreleasedReturnValue", FTy,
1154                              Attribute);
1155   }
1156   return RetainRVCallee;
1157 }
1158
1159 Constant *ObjCARCOpt::getAutoreleaseRVCallee(Module *M) {
1160   if (!AutoreleaseRVCallee) {
1161     LLVMContext &C = M->getContext();
1162     Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
1163     Type *Params[] = { I8X };
1164     FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
1165     AttributeSet Attribute =
1166       AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1167                                   Attribute::NoUnwind);
1168     AutoreleaseRVCallee =
1169       M->getOrInsertFunction("objc_autoreleaseReturnValue", FTy,
1170                              Attribute);
1171   }
1172   return AutoreleaseRVCallee;
1173 }
1174
1175 Constant *ObjCARCOpt::getReleaseCallee(Module *M) {
1176   if (!ReleaseCallee) {
1177     LLVMContext &C = M->getContext();
1178     Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
1179     AttributeSet Attribute =
1180       AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1181                                   Attribute::NoUnwind);
1182     ReleaseCallee =
1183       M->getOrInsertFunction(
1184         "objc_release",
1185         FunctionType::get(Type::getVoidTy(C), Params, /*isVarArg=*/false),
1186         Attribute);
1187   }
1188   return ReleaseCallee;
1189 }
1190
1191 Constant *ObjCARCOpt::getRetainCallee(Module *M) {
1192   if (!RetainCallee) {
1193     LLVMContext &C = M->getContext();
1194     Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
1195     AttributeSet Attribute =
1196       AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1197                                   Attribute::NoUnwind);
1198     RetainCallee =
1199       M->getOrInsertFunction(
1200         "objc_retain",
1201         FunctionType::get(Params[0], Params, /*isVarArg=*/false),
1202         Attribute);
1203   }
1204   return RetainCallee;
1205 }
1206
1207 Constant *ObjCARCOpt::getRetainBlockCallee(Module *M) {
1208   if (!RetainBlockCallee) {
1209     LLVMContext &C = M->getContext();
1210     Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
1211     // objc_retainBlock is not nounwind because it calls user copy constructors
1212     // which could theoretically throw.
1213     RetainBlockCallee =
1214       M->getOrInsertFunction(
1215         "objc_retainBlock",
1216         FunctionType::get(Params[0], Params, /*isVarArg=*/false),
1217         AttributeSet());
1218   }
1219   return RetainBlockCallee;
1220 }
1221
1222 Constant *ObjCARCOpt::getAutoreleaseCallee(Module *M) {
1223   if (!AutoreleaseCallee) {
1224     LLVMContext &C = M->getContext();
1225     Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
1226     AttributeSet Attribute =
1227       AttributeSet().addAttribute(M->getContext(), AttributeSet::FunctionIndex,
1228                                   Attribute::NoUnwind);
1229     AutoreleaseCallee =
1230       M->getOrInsertFunction(
1231         "objc_autorelease",
1232         FunctionType::get(Params[0], Params, /*isVarArg=*/false),
1233         Attribute);
1234   }
1235   return AutoreleaseCallee;
1236 }
1237
1238 /// Turn objc_retain into objc_retainAutoreleasedReturnValue if the operand is a
1239 /// return value.
1240 void
1241 ObjCARCOpt::OptimizeRetainCall(Function &F, Instruction *Retain) {
1242   ImmutableCallSite CS(GetObjCArg(Retain));
1243   const Instruction *Call = CS.getInstruction();
1244   if (!Call) return;
1245   if (Call->getParent() != Retain->getParent()) return;
1246
1247   // Check that the call is next to the retain.
1248   BasicBlock::const_iterator I = Call;
1249   ++I;
1250   while (IsNoopInstruction(I)) ++I;
1251   if (&*I != Retain)
1252     return;
1253
1254   // Turn it to an objc_retainAutoreleasedReturnValue..
1255   Changed = true;
1256   ++NumPeeps;
1257
1258   DEBUG(dbgs() << "Transforming objc_retain => "
1259                   "objc_retainAutoreleasedReturnValue since the operand is a "
1260                   "return value.\nOld: "<< *Retain << "\n");
1261
1262   cast<CallInst>(Retain)->setCalledFunction(getRetainRVCallee(F.getParent()));
1263
1264   DEBUG(dbgs() << "New: " << *Retain << "\n");
1265 }
1266
1267 /// Turn objc_retainAutoreleasedReturnValue into objc_retain if the operand is
1268 /// not a return value.  Or, if it can be paired with an
1269 /// objc_autoreleaseReturnValue, delete the pair and return true.
1270 bool
1271 ObjCARCOpt::OptimizeRetainRVCall(Function &F, Instruction *RetainRV) {
1272   // Check for the argument being from an immediately preceding call or invoke.
1273   const Value *Arg = GetObjCArg(RetainRV);
1274   ImmutableCallSite CS(Arg);
1275   if (const Instruction *Call = CS.getInstruction()) {
1276     if (Call->getParent() == RetainRV->getParent()) {
1277       BasicBlock::const_iterator I = Call;
1278       ++I;
1279       while (IsNoopInstruction(I)) ++I;
1280       if (&*I == RetainRV)
1281         return false;
1282     } else if (const InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
1283       BasicBlock *RetainRVParent = RetainRV->getParent();
1284       if (II->getNormalDest() == RetainRVParent) {
1285         BasicBlock::const_iterator I = RetainRVParent->begin();
1286         while (IsNoopInstruction(I)) ++I;
1287         if (&*I == RetainRV)
1288           return false;
1289       }
1290     }
1291   }
1292
1293   // Check for being preceded by an objc_autoreleaseReturnValue on the same
1294   // pointer. In this case, we can delete the pair.
1295   BasicBlock::iterator I = RetainRV, Begin = RetainRV->getParent()->begin();
1296   if (I != Begin) {
1297     do --I; while (I != Begin && IsNoopInstruction(I));
1298     if (GetBasicInstructionClass(I) == IC_AutoreleaseRV &&
1299         GetObjCArg(I) == Arg) {
1300       Changed = true;
1301       ++NumPeeps;
1302
1303       DEBUG(dbgs() << "Erasing autoreleaseRV,retainRV pair: " << *I << "\n"
1304                    << "Erasing " << *RetainRV << "\n");
1305
1306       EraseInstruction(I);
1307       EraseInstruction(RetainRV);
1308       return true;
1309     }
1310   }
1311
1312   // Turn it to a plain objc_retain.
1313   Changed = true;
1314   ++NumPeeps;
1315
1316   DEBUG(dbgs() << "Transforming objc_retainAutoreleasedReturnValue => "
1317                   "objc_retain since the operand is not a return value.\n"
1318                   "Old = " << *RetainRV << "\n");
1319
1320   cast<CallInst>(RetainRV)->setCalledFunction(getRetainCallee(F.getParent()));
1321
1322   DEBUG(dbgs() << "New = " << *RetainRV << "\n");
1323
1324   return false;
1325 }
1326
1327 /// Turn objc_autoreleaseReturnValue into objc_autorelease if the result is not
1328 /// used as a return value.
1329 void
1330 ObjCARCOpt::OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV,
1331                                       InstructionClass &Class) {
1332   // Check for a return of the pointer value.
1333   const Value *Ptr = GetObjCArg(AutoreleaseRV);
1334   SmallVector<const Value *, 2> Users;
1335   Users.push_back(Ptr);
1336   do {
1337     Ptr = Users.pop_back_val();
1338     for (Value::const_use_iterator UI = Ptr->use_begin(), UE = Ptr->use_end();
1339          UI != UE; ++UI) {
1340       const User *I = *UI;
1341       if (isa<ReturnInst>(I) || GetBasicInstructionClass(I) == IC_RetainRV)
1342         return;
1343       if (isa<BitCastInst>(I))
1344         Users.push_back(I);
1345     }
1346   } while (!Users.empty());
1347
1348   Changed = true;
1349   ++NumPeeps;
1350
1351   DEBUG(dbgs() << "Transforming objc_autoreleaseReturnValue => "
1352                   "objc_autorelease since its operand is not used as a return "
1353                   "value.\n"
1354                   "Old = " << *AutoreleaseRV << "\n");
1355
1356   CallInst *AutoreleaseRVCI = cast<CallInst>(AutoreleaseRV);
1357   AutoreleaseRVCI->
1358     setCalledFunction(getAutoreleaseCallee(F.getParent()));
1359   AutoreleaseRVCI->setTailCall(false); // Never tail call objc_autorelease.
1360   Class = IC_Autorelease;
1361
1362   DEBUG(dbgs() << "New: " << *AutoreleaseRV << "\n");
1363
1364 }
1365
1366 // \brief Attempt to strength reduce objc_retainBlock calls to objc_retain
1367 // calls.
1368 //
1369 // Specifically: If an objc_retainBlock call has the copy_on_escape metadata and
1370 // does not escape (following the rules of block escaping), strength reduce the
1371 // objc_retainBlock to an objc_retain.
1372 //
1373 // TODO: If an objc_retainBlock call is dominated period by a previous
1374 // objc_retainBlock call, strength reduce the objc_retainBlock to an
1375 // objc_retain.
1376 bool
1377 ObjCARCOpt::OptimizeRetainBlockCall(Function &F, Instruction *Inst,
1378                                     InstructionClass &Class) {
1379   assert(GetBasicInstructionClass(Inst) == Class);
1380   assert(IC_RetainBlock == Class);
1381
1382   // If we can not optimize Inst, return false.
1383   if (!IsRetainBlockOptimizable(Inst))
1384     return false;
1385
1386   Changed = true;
1387   ++NumPeeps;
1388
1389   DEBUG(dbgs() << "Strength reduced retainBlock => retain.\n");
1390   DEBUG(dbgs() << "Old: " << *Inst << "\n");
1391   CallInst *RetainBlock = cast<CallInst>(Inst);
1392   RetainBlock->setCalledFunction(getRetainCallee(F.getParent()));
1393   // Remove copy_on_escape metadata.
1394   RetainBlock->setMetadata(CopyOnEscapeMDKind, 0);
1395   Class = IC_Retain;
1396   DEBUG(dbgs() << "New: " << *Inst << "\n");
1397   return true;
1398 }
1399
1400 /// Visit each call, one at a time, and make simplifications without doing any
1401 /// additional analysis.
1402 void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
1403   DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeIndividualCalls ==\n");
1404   // Reset all the flags in preparation for recomputing them.
1405   UsedInThisFunction = 0;
1406
1407   // Visit all objc_* calls in F.
1408   for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
1409     Instruction *Inst = &*I++;
1410
1411     InstructionClass Class = GetBasicInstructionClass(Inst);
1412
1413     DEBUG(dbgs() << "Visiting: Class: " << Class << "; " << *Inst << "\n");
1414
1415     switch (Class) {
1416     default: break;
1417
1418     // Delete no-op casts. These function calls have special semantics, but
1419     // the semantics are entirely implemented via lowering in the front-end,
1420     // so by the time they reach the optimizer, they are just no-op calls
1421     // which return their argument.
1422     //
1423     // There are gray areas here, as the ability to cast reference-counted
1424     // pointers to raw void* and back allows code to break ARC assumptions,
1425     // however these are currently considered to be unimportant.
1426     case IC_NoopCast:
1427       Changed = true;
1428       ++NumNoops;
1429       DEBUG(dbgs() << "Erasing no-op cast: " << *Inst << "\n");
1430       EraseInstruction(Inst);
1431       continue;
1432
1433     // If the pointer-to-weak-pointer is null, it's undefined behavior.
1434     case IC_StoreWeak:
1435     case IC_LoadWeak:
1436     case IC_LoadWeakRetained:
1437     case IC_InitWeak:
1438     case IC_DestroyWeak: {
1439       CallInst *CI = cast<CallInst>(Inst);
1440       if (IsNullOrUndef(CI->getArgOperand(0))) {
1441         Changed = true;
1442         Type *Ty = CI->getArgOperand(0)->getType();
1443         new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1444                       Constant::getNullValue(Ty),
1445                       CI);
1446         llvm::Value *NewValue = UndefValue::get(CI->getType());
1447         DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1448                        "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
1449         CI->replaceAllUsesWith(NewValue);
1450         CI->eraseFromParent();
1451         continue;
1452       }
1453       break;
1454     }
1455     case IC_CopyWeak:
1456     case IC_MoveWeak: {
1457       CallInst *CI = cast<CallInst>(Inst);
1458       if (IsNullOrUndef(CI->getArgOperand(0)) ||
1459           IsNullOrUndef(CI->getArgOperand(1))) {
1460         Changed = true;
1461         Type *Ty = CI->getArgOperand(0)->getType();
1462         new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
1463                       Constant::getNullValue(Ty),
1464                       CI);
1465
1466         llvm::Value *NewValue = UndefValue::get(CI->getType());
1467         DEBUG(dbgs() << "A null pointer-to-weak-pointer is undefined behavior."
1468                         "\nOld = " << *CI << "\nNew = " << *NewValue << "\n");
1469
1470         CI->replaceAllUsesWith(NewValue);
1471         CI->eraseFromParent();
1472         continue;
1473       }
1474       break;
1475     }
1476     case IC_RetainBlock:
1477       // If we strength reduce an objc_retainBlock to an objc_retain, continue
1478       // onto the objc_retain peephole optimizations. Otherwise break.
1479       if (!OptimizeRetainBlockCall(F, Inst, Class))
1480         break;
1481       // FALLTHROUGH
1482     case IC_Retain:
1483       OptimizeRetainCall(F, Inst);
1484       break;
1485     case IC_RetainRV:
1486       if (OptimizeRetainRVCall(F, Inst))
1487         continue;
1488       break;
1489     case IC_AutoreleaseRV:
1490       OptimizeAutoreleaseRVCall(F, Inst, Class);
1491       break;
1492     }
1493
1494     // objc_autorelease(x) -> objc_release(x) if x is otherwise unused.
1495     if (IsAutorelease(Class) && Inst->use_empty()) {
1496       CallInst *Call = cast<CallInst>(Inst);
1497       const Value *Arg = Call->getArgOperand(0);
1498       Arg = FindSingleUseIdentifiedObject(Arg);
1499       if (Arg) {
1500         Changed = true;
1501         ++NumAutoreleases;
1502
1503         // Create the declaration lazily.
1504         LLVMContext &C = Inst->getContext();
1505         CallInst *NewCall =
1506           CallInst::Create(getReleaseCallee(F.getParent()),
1507                            Call->getArgOperand(0), "", Call);
1508         NewCall->setMetadata(ImpreciseReleaseMDKind,
1509                              MDNode::get(C, ArrayRef<Value *>()));
1510
1511         DEBUG(dbgs() << "Replacing autorelease{,RV}(x) with objc_release(x) "
1512               "since x is otherwise unused.\nOld: " << *Call << "\nNew: "
1513               << *NewCall << "\n");
1514
1515         EraseInstruction(Call);
1516         Inst = NewCall;
1517         Class = IC_Release;
1518       }
1519     }
1520
1521     // For functions which can never be passed stack arguments, add
1522     // a tail keyword.
1523     if (IsAlwaysTail(Class)) {
1524       Changed = true;
1525       DEBUG(dbgs() << "Adding tail keyword to function since it can never be "
1526                       "passed stack args: " << *Inst << "\n");
1527       cast<CallInst>(Inst)->setTailCall();
1528     }
1529
1530     // Ensure that functions that can never have a "tail" keyword due to the
1531     // semantics of ARC truly do not do so.
1532     if (IsNeverTail(Class)) {
1533       Changed = true;
1534       DEBUG(dbgs() << "Removing tail keyword from function: " << *Inst <<
1535             "\n");
1536       cast<CallInst>(Inst)->setTailCall(false);
1537     }
1538
1539     // Set nounwind as needed.
1540     if (IsNoThrow(Class)) {
1541       Changed = true;
1542       DEBUG(dbgs() << "Found no throw class. Setting nounwind on: " << *Inst
1543                    << "\n");
1544       cast<CallInst>(Inst)->setDoesNotThrow();
1545     }
1546
1547     if (!IsNoopOnNull(Class)) {
1548       UsedInThisFunction |= 1 << Class;
1549       continue;
1550     }
1551
1552     const Value *Arg = GetObjCArg(Inst);
1553
1554     // ARC calls with null are no-ops. Delete them.
1555     if (IsNullOrUndef(Arg)) {
1556       Changed = true;
1557       ++NumNoops;
1558       DEBUG(dbgs() << "ARC calls with  null are no-ops. Erasing: " << *Inst
1559             << "\n");
1560       EraseInstruction(Inst);
1561       continue;
1562     }
1563
1564     // Keep track of which of retain, release, autorelease, and retain_block
1565     // are actually present in this function.
1566     UsedInThisFunction |= 1 << Class;
1567
1568     // If Arg is a PHI, and one or more incoming values to the
1569     // PHI are null, and the call is control-equivalent to the PHI, and there
1570     // are no relevant side effects between the PHI and the call, the call
1571     // could be pushed up to just those paths with non-null incoming values.
1572     // For now, don't bother splitting critical edges for this.
1573     SmallVector<std::pair<Instruction *, const Value *>, 4> Worklist;
1574     Worklist.push_back(std::make_pair(Inst, Arg));
1575     do {
1576       std::pair<Instruction *, const Value *> Pair = Worklist.pop_back_val();
1577       Inst = Pair.first;
1578       Arg = Pair.second;
1579
1580       const PHINode *PN = dyn_cast<PHINode>(Arg);
1581       if (!PN) continue;
1582
1583       // Determine if the PHI has any null operands, or any incoming
1584       // critical edges.
1585       bool HasNull = false;
1586       bool HasCriticalEdges = false;
1587       for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1588         Value *Incoming =
1589           StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
1590         if (IsNullOrUndef(Incoming))
1591           HasNull = true;
1592         else if (cast<TerminatorInst>(PN->getIncomingBlock(i)->back())
1593                    .getNumSuccessors() != 1) {
1594           HasCriticalEdges = true;
1595           break;
1596         }
1597       }
1598       // If we have null operands and no critical edges, optimize.
1599       if (!HasCriticalEdges && HasNull) {
1600         SmallPtrSet<Instruction *, 4> DependingInstructions;
1601         SmallPtrSet<const BasicBlock *, 4> Visited;
1602
1603         // Check that there is nothing that cares about the reference
1604         // count between the call and the phi.
1605         switch (Class) {
1606         case IC_Retain:
1607         case IC_RetainBlock:
1608           // These can always be moved up.
1609           break;
1610         case IC_Release:
1611           // These can't be moved across things that care about the retain
1612           // count.
1613           FindDependencies(NeedsPositiveRetainCount, Arg,
1614                            Inst->getParent(), Inst,
1615                            DependingInstructions, Visited, PA);
1616           break;
1617         case IC_Autorelease:
1618           // These can't be moved across autorelease pool scope boundaries.
1619           FindDependencies(AutoreleasePoolBoundary, Arg,
1620                            Inst->getParent(), Inst,
1621                            DependingInstructions, Visited, PA);
1622           break;
1623         case IC_RetainRV:
1624         case IC_AutoreleaseRV:
1625           // Don't move these; the RV optimization depends on the autoreleaseRV
1626           // being tail called, and the retainRV being immediately after a call
1627           // (which might still happen if we get lucky with codegen layout, but
1628           // it's not worth taking the chance).
1629           continue;
1630         default:
1631           llvm_unreachable("Invalid dependence flavor");
1632         }
1633
1634         if (DependingInstructions.size() == 1 &&
1635             *DependingInstructions.begin() == PN) {
1636           Changed = true;
1637           ++NumPartialNoops;
1638           // Clone the call into each predecessor that has a non-null value.
1639           CallInst *CInst = cast<CallInst>(Inst);
1640           Type *ParamTy = CInst->getArgOperand(0)->getType();
1641           for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1642             Value *Incoming =
1643               StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
1644             if (!IsNullOrUndef(Incoming)) {
1645               CallInst *Clone = cast<CallInst>(CInst->clone());
1646               Value *Op = PN->getIncomingValue(i);
1647               Instruction *InsertPos = &PN->getIncomingBlock(i)->back();
1648               if (Op->getType() != ParamTy)
1649                 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
1650               Clone->setArgOperand(0, Op);
1651               Clone->insertBefore(InsertPos);
1652
1653               DEBUG(dbgs() << "Cloning "
1654                            << *CInst << "\n"
1655                            "And inserting clone at " << *InsertPos << "\n");
1656               Worklist.push_back(std::make_pair(Clone, Incoming));
1657             }
1658           }
1659           // Erase the original call.
1660           DEBUG(dbgs() << "Erasing: " << *CInst << "\n");
1661           EraseInstruction(CInst);
1662           continue;
1663         }
1664       }
1665     } while (!Worklist.empty());
1666   }
1667 }
1668
1669 /// If we have a top down pointer in the S_Use state, make sure that there are
1670 /// no CFG hazards by checking the states of various bottom up pointers.
1671 static void CheckForUseCFGHazard(const Sequence SuccSSeq,
1672                                  const bool SuccSRRIKnownSafe,
1673                                  PtrState &S,
1674                                  bool &SomeSuccHasSame,
1675                                  bool &AllSuccsHaveSame,
1676                                  bool &ShouldContinue) {
1677   switch (SuccSSeq) {
1678   case S_CanRelease: {
1679     if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe) {
1680       S.ClearSequenceProgress();
1681       break;
1682     }
1683     ShouldContinue = true;
1684     break;
1685   }
1686   case S_Use:
1687     SomeSuccHasSame = true;
1688     break;
1689   case S_Stop:
1690   case S_Release:
1691   case S_MovableRelease:
1692     if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
1693       AllSuccsHaveSame = false;
1694     break;
1695   case S_Retain:
1696     llvm_unreachable("bottom-up pointer in retain state!");
1697   case S_None:
1698     llvm_unreachable("This should have been handled earlier.");
1699   }
1700 }
1701
1702 /// If we have a Top Down pointer in the S_CanRelease state, make sure that
1703 /// there are no CFG hazards by checking the states of various bottom up
1704 /// pointers.
1705 static void CheckForCanReleaseCFGHazard(const Sequence SuccSSeq,
1706                                         const bool SuccSRRIKnownSafe,
1707                                         PtrState &S,
1708                                         bool &SomeSuccHasSame,
1709                                         bool &AllSuccsHaveSame) {
1710   switch (SuccSSeq) {
1711   case S_CanRelease:
1712     SomeSuccHasSame = true;
1713     break;
1714   case S_Stop:
1715   case S_Release:
1716   case S_MovableRelease:
1717   case S_Use:
1718     if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
1719       AllSuccsHaveSame = false;
1720     break;
1721   case S_Retain:
1722     llvm_unreachable("bottom-up pointer in retain state!");
1723   case S_None:
1724     llvm_unreachable("This should have been handled earlier.");
1725   }
1726 }
1727
1728 /// Check for critical edges, loop boundaries, irreducible control flow, or
1729 /// other CFG structures where moving code across the edge would result in it
1730 /// being executed more.
1731 void
1732 ObjCARCOpt::CheckForCFGHazards(const BasicBlock *BB,
1733                                DenseMap<const BasicBlock *, BBState> &BBStates,
1734                                BBState &MyStates) const {
1735   // If any top-down local-use or possible-dec has a succ which is earlier in
1736   // the sequence, forget it.
1737   for (BBState::ptr_iterator I = MyStates.top_down_ptr_begin(),
1738          E = MyStates.top_down_ptr_end(); I != E; ++I) {
1739     PtrState &S = I->second;
1740     const Sequence Seq = I->second.GetSeq();
1741
1742     // We only care about S_Retain, S_CanRelease, and S_Use.
1743     if (Seq == S_None)
1744       continue;
1745
1746     // Make sure that if extra top down states are added in the future that this
1747     // code is updated to handle it.
1748     assert((Seq == S_Retain || Seq == S_CanRelease || Seq == S_Use) &&
1749            "Unknown top down sequence state.");
1750
1751     const Value *Arg = I->first;
1752     const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
1753     bool SomeSuccHasSame = false;
1754     bool AllSuccsHaveSame = true;
1755
1756     succ_const_iterator SI(TI), SE(TI, false);
1757
1758     for (; SI != SE; ++SI) {
1759       // If VisitBottomUp has pointer information for this successor, take
1760       // what we know about it.
1761       const DenseMap<const BasicBlock *, BBState>::iterator BBI =
1762         BBStates.find(*SI);
1763       assert(BBI != BBStates.end());
1764       const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
1765       const Sequence SuccSSeq = SuccS.GetSeq();
1766
1767       // If bottom up, the pointer is in an S_None state, clear the sequence
1768       // progress since the sequence in the bottom up state finished
1769       // suggesting a mismatch in between retains/releases. This is true for
1770       // all three cases that we are handling here: S_Retain, S_Use, and
1771       // S_CanRelease.
1772       if (SuccSSeq == S_None) {
1773         S.ClearSequenceProgress();
1774         continue;
1775       }
1776
1777       // If we have S_Use or S_CanRelease, perform our check for cfg hazard
1778       // checks.
1779       const bool SuccSRRIKnownSafe = SuccS.RRI.KnownSafe;
1780
1781       // *NOTE* We do not use Seq from above here since we are allowing for
1782       // S.GetSeq() to change while we are visiting basic blocks.
1783       switch(S.GetSeq()) {
1784       case S_Use: {
1785         bool ShouldContinue = false;
1786         CheckForUseCFGHazard(SuccSSeq, SuccSRRIKnownSafe, S,
1787                              SomeSuccHasSame, AllSuccsHaveSame,
1788                              ShouldContinue);
1789         if (ShouldContinue)
1790           continue;
1791         break;
1792       }
1793       case S_CanRelease: {
1794         CheckForCanReleaseCFGHazard(SuccSSeq, SuccSRRIKnownSafe,
1795                                     S, SomeSuccHasSame,
1796                                     AllSuccsHaveSame);
1797         break;
1798       }
1799       case S_Retain:
1800       case S_None:
1801       case S_Stop:
1802       case S_Release:
1803       case S_MovableRelease:
1804         break;
1805       }
1806     }
1807
1808     // If the state at the other end of any of the successor edges
1809     // matches the current state, require all edges to match. This
1810     // guards against loops in the middle of a sequence.
1811     if (SomeSuccHasSame && !AllSuccsHaveSame)
1812       S.ClearSequenceProgress();
1813   }
1814 }
1815
1816 bool
1817 ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
1818                                      BasicBlock *BB,
1819                                      MapVector<Value *, RRInfo> &Retains,
1820                                      BBState &MyStates) {
1821   bool NestingDetected = false;
1822   InstructionClass Class = GetInstructionClass(Inst);
1823   const Value *Arg = 0;
1824
1825   DEBUG(dbgs() << "Class: " << Class << "\n");
1826
1827   switch (Class) {
1828   case IC_Release: {
1829     Arg = GetObjCArg(Inst);
1830
1831     PtrState &S = MyStates.getPtrBottomUpState(Arg);
1832
1833     // If we see two releases in a row on the same pointer. If so, make
1834     // a note, and we'll cicle back to revisit it after we've
1835     // hopefully eliminated the second release, which may allow us to
1836     // eliminate the first release too.
1837     // Theoretically we could implement removal of nested retain+release
1838     // pairs by making PtrState hold a stack of states, but this is
1839     // simple and avoids adding overhead for the non-nested case.
1840     if (S.GetSeq() == S_Release || S.GetSeq() == S_MovableRelease) {
1841       DEBUG(dbgs() << "Found nested releases (i.e. a release pair)\n");
1842       NestingDetected = true;
1843     }
1844
1845     MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
1846     Sequence NewSeq = ReleaseMetadata ? S_MovableRelease : S_Release;
1847     ANNOTATE_BOTTOMUP(Inst, Arg, S.GetSeq(), NewSeq);
1848     S.ResetSequenceProgress(NewSeq);
1849     S.RRI.ReleaseMetadata = ReleaseMetadata;
1850     S.RRI.KnownSafe = S.HasKnownPositiveRefCount();
1851     S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
1852     S.RRI.Calls.insert(Inst);
1853     S.SetKnownPositiveRefCount();
1854     break;
1855   }
1856   case IC_RetainBlock:
1857     // In OptimizeIndividualCalls, we have strength reduced all optimizable
1858     // objc_retainBlocks to objc_retains. Thus at this point any
1859     // objc_retainBlocks that we see are not optimizable.
1860     break;
1861   case IC_Retain:
1862   case IC_RetainRV: {
1863     Arg = GetObjCArg(Inst);
1864
1865     PtrState &S = MyStates.getPtrBottomUpState(Arg);
1866     S.SetKnownPositiveRefCount();
1867
1868     Sequence OldSeq = S.GetSeq();
1869     switch (OldSeq) {
1870     case S_Stop:
1871     case S_Release:
1872     case S_MovableRelease:
1873     case S_Use:
1874       // If OldSeq is not S_Use or OldSeq is S_Use and we are tracking an
1875       // imprecise release, clear our reverse insertion points.
1876       if (OldSeq != S_Use || S.RRI.IsTrackingImpreciseReleases())
1877         S.RRI.ReverseInsertPts.clear();
1878       // FALL THROUGH
1879     case S_CanRelease:
1880       // Don't do retain+release tracking for IC_RetainRV, because it's
1881       // better to let it remain as the first instruction after a call.
1882       if (Class != IC_RetainRV)
1883         Retains[Inst] = S.RRI;
1884       S.ClearSequenceProgress();
1885       break;
1886     case S_None:
1887       break;
1888     case S_Retain:
1889       llvm_unreachable("bottom-up pointer in retain state!");
1890     }
1891     ANNOTATE_BOTTOMUP(Inst, Arg, OldSeq, S.GetSeq());
1892     // A retain moving bottom up can be a use.
1893     break;
1894   }
1895   case IC_AutoreleasepoolPop:
1896     // Conservatively, clear MyStates for all known pointers.
1897     MyStates.clearBottomUpPointers();
1898     return NestingDetected;
1899   case IC_AutoreleasepoolPush:
1900   case IC_None:
1901     // These are irrelevant.
1902     return NestingDetected;
1903   default:
1904     break;
1905   }
1906
1907   // Consider any other possible effects of this instruction on each
1908   // pointer being tracked.
1909   for (BBState::ptr_iterator MI = MyStates.bottom_up_ptr_begin(),
1910        ME = MyStates.bottom_up_ptr_end(); MI != ME; ++MI) {
1911     const Value *Ptr = MI->first;
1912     if (Ptr == Arg)
1913       continue; // Handled above.
1914     PtrState &S = MI->second;
1915     Sequence Seq = S.GetSeq();
1916
1917     // Check for possible releases.
1918     if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
1919       DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
1920             << "\n");
1921       S.ClearKnownPositiveRefCount();
1922       switch (Seq) {
1923       case S_Use:
1924         S.SetSeq(S_CanRelease);
1925         ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S.GetSeq());
1926         continue;
1927       case S_CanRelease:
1928       case S_Release:
1929       case S_MovableRelease:
1930       case S_Stop:
1931       case S_None:
1932         break;
1933       case S_Retain:
1934         llvm_unreachable("bottom-up pointer in retain state!");
1935       }
1936     }
1937
1938     // Check for possible direct uses.
1939     switch (Seq) {
1940     case S_Release:
1941     case S_MovableRelease:
1942       if (CanUse(Inst, Ptr, PA, Class)) {
1943         DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
1944               << "\n");
1945         assert(S.RRI.ReverseInsertPts.empty());
1946         // If this is an invoke instruction, we're scanning it as part of
1947         // one of its successor blocks, since we can't insert code after it
1948         // in its own block, and we don't want to split critical edges.
1949         if (isa<InvokeInst>(Inst))
1950           S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
1951         else
1952           S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
1953         S.SetSeq(S_Use);
1954         ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
1955       } else if (Seq == S_Release && IsUser(Class)) {
1956         DEBUG(dbgs() << "PreciseReleaseUse: Seq: " << Seq << "; " << *Ptr
1957               << "\n");
1958         // Non-movable releases depend on any possible objc pointer use.
1959         S.SetSeq(S_Stop);
1960         ANNOTATE_BOTTOMUP(Inst, Ptr, S_Release, S_Stop);
1961         assert(S.RRI.ReverseInsertPts.empty());
1962         // As above; handle invoke specially.
1963         if (isa<InvokeInst>(Inst))
1964           S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
1965         else
1966           S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
1967       }
1968       break;
1969     case S_Stop:
1970       if (CanUse(Inst, Ptr, PA, Class)) {
1971         DEBUG(dbgs() << "PreciseStopUse: Seq: " << Seq << "; " << *Ptr
1972               << "\n");
1973         S.SetSeq(S_Use);
1974         ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
1975       }
1976       break;
1977     case S_CanRelease:
1978     case S_Use:
1979     case S_None:
1980       break;
1981     case S_Retain:
1982       llvm_unreachable("bottom-up pointer in retain state!");
1983     }
1984   }
1985
1986   return NestingDetected;
1987 }
1988
1989 bool
1990 ObjCARCOpt::VisitBottomUp(BasicBlock *BB,
1991                           DenseMap<const BasicBlock *, BBState> &BBStates,
1992                           MapVector<Value *, RRInfo> &Retains) {
1993
1994   DEBUG(dbgs() << "\n== ObjCARCOpt::VisitBottomUp ==\n");
1995
1996   bool NestingDetected = false;
1997   BBState &MyStates = BBStates[BB];
1998
1999   // Merge the states from each successor to compute the initial state
2000   // for the current block.
2001   BBState::edge_iterator SI(MyStates.succ_begin()),
2002                          SE(MyStates.succ_end());
2003   if (SI != SE) {
2004     const BasicBlock *Succ = *SI;
2005     DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Succ);
2006     assert(I != BBStates.end());
2007     MyStates.InitFromSucc(I->second);
2008     ++SI;
2009     for (; SI != SE; ++SI) {
2010       Succ = *SI;
2011       I = BBStates.find(Succ);
2012       assert(I != BBStates.end());
2013       MyStates.MergeSucc(I->second);
2014     }
2015   }
2016
2017   // If ARC Annotations are enabled, output the current state of pointers at the
2018   // bottom of the basic block.
2019   ANNOTATE_BOTTOMUP_BBEND(MyStates, BB);
2020
2021   // Visit all the instructions, bottom-up.
2022   for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; --I) {
2023     Instruction *Inst = llvm::prior(I);
2024
2025     // Invoke instructions are visited as part of their successors (below).
2026     if (isa<InvokeInst>(Inst))
2027       continue;
2028
2029     DEBUG(dbgs() << "Visiting " << *Inst << "\n");
2030
2031     NestingDetected |= VisitInstructionBottomUp(Inst, BB, Retains, MyStates);
2032   }
2033
2034   // If there's a predecessor with an invoke, visit the invoke as if it were
2035   // part of this block, since we can't insert code after an invoke in its own
2036   // block, and we don't want to split critical edges.
2037   for (BBState::edge_iterator PI(MyStates.pred_begin()),
2038        PE(MyStates.pred_end()); PI != PE; ++PI) {
2039     BasicBlock *Pred = *PI;
2040     if (InvokeInst *II = dyn_cast<InvokeInst>(&Pred->back()))
2041       NestingDetected |= VisitInstructionBottomUp(II, BB, Retains, MyStates);
2042   }
2043
2044   // If ARC Annotations are enabled, output the current state of pointers at the
2045   // top of the basic block.
2046   ANNOTATE_BOTTOMUP_BBSTART(MyStates, BB);
2047
2048   return NestingDetected;
2049 }
2050
2051 bool
2052 ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
2053                                     DenseMap<Value *, RRInfo> &Releases,
2054                                     BBState &MyStates) {
2055   bool NestingDetected = false;
2056   InstructionClass Class = GetInstructionClass(Inst);
2057   const Value *Arg = 0;
2058
2059   switch (Class) {
2060   case IC_RetainBlock:
2061     // In OptimizeIndividualCalls, we have strength reduced all optimizable
2062     // objc_retainBlocks to objc_retains. Thus at this point any
2063     // objc_retainBlocks that we see are not optimizable.
2064     break;
2065   case IC_Retain:
2066   case IC_RetainRV: {
2067     Arg = GetObjCArg(Inst);
2068
2069     PtrState &S = MyStates.getPtrTopDownState(Arg);
2070
2071     // Don't do retain+release tracking for IC_RetainRV, because it's
2072     // better to let it remain as the first instruction after a call.
2073     if (Class != IC_RetainRV) {
2074       // If we see two retains in a row on the same pointer. If so, make
2075       // a note, and we'll cicle back to revisit it after we've
2076       // hopefully eliminated the second retain, which may allow us to
2077       // eliminate the first retain too.
2078       // Theoretically we could implement removal of nested retain+release
2079       // pairs by making PtrState hold a stack of states, but this is
2080       // simple and avoids adding overhead for the non-nested case.
2081       if (S.GetSeq() == S_Retain)
2082         NestingDetected = true;
2083
2084       ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_Retain);
2085       S.ResetSequenceProgress(S_Retain);
2086       S.RRI.KnownSafe = S.HasKnownPositiveRefCount();
2087       S.RRI.Calls.insert(Inst);
2088     }
2089
2090     S.SetKnownPositiveRefCount();
2091
2092     // A retain can be a potential use; procede to the generic checking
2093     // code below.
2094     break;
2095   }
2096   case IC_Release: {
2097     Arg = GetObjCArg(Inst);
2098
2099     PtrState &S = MyStates.getPtrTopDownState(Arg);
2100     S.ClearKnownPositiveRefCount();
2101
2102     Sequence OldSeq = S.GetSeq();
2103
2104     MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
2105
2106     switch (OldSeq) {
2107     case S_Retain:
2108     case S_CanRelease:
2109       if (OldSeq == S_Retain || ReleaseMetadata != 0)
2110         S.RRI.ReverseInsertPts.clear();
2111       // FALL THROUGH
2112     case S_Use:
2113       S.RRI.ReleaseMetadata = ReleaseMetadata;
2114       S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
2115       Releases[Inst] = S.RRI;
2116       ANNOTATE_TOPDOWN(Inst, Arg, S.GetSeq(), S_None);
2117       S.ClearSequenceProgress();
2118       break;
2119     case S_None:
2120       break;
2121     case S_Stop:
2122     case S_Release:
2123     case S_MovableRelease:
2124       llvm_unreachable("top-down pointer in release state!");
2125     }
2126     break;
2127   }
2128   case IC_AutoreleasepoolPop:
2129     // Conservatively, clear MyStates for all known pointers.
2130     MyStates.clearTopDownPointers();
2131     return NestingDetected;
2132   case IC_AutoreleasepoolPush:
2133   case IC_None:
2134     // These are irrelevant.
2135     return NestingDetected;
2136   default:
2137     break;
2138   }
2139
2140   // Consider any other possible effects of this instruction on each
2141   // pointer being tracked.
2142   for (BBState::ptr_iterator MI = MyStates.top_down_ptr_begin(),
2143        ME = MyStates.top_down_ptr_end(); MI != ME; ++MI) {
2144     const Value *Ptr = MI->first;
2145     if (Ptr == Arg)
2146       continue; // Handled above.
2147     PtrState &S = MI->second;
2148     Sequence Seq = S.GetSeq();
2149
2150     // Check for possible releases.
2151     if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
2152       DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
2153             << "\n");
2154       S.ClearKnownPositiveRefCount();
2155       switch (Seq) {
2156       case S_Retain:
2157         S.SetSeq(S_CanRelease);
2158         ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_CanRelease);
2159         assert(S.RRI.ReverseInsertPts.empty());
2160         S.RRI.ReverseInsertPts.insert(Inst);
2161
2162         // One call can't cause a transition from S_Retain to S_CanRelease
2163         // and S_CanRelease to S_Use. If we've made the first transition,
2164         // we're done.
2165         continue;
2166       case S_Use:
2167       case S_CanRelease:
2168       case S_None:
2169         break;
2170       case S_Stop:
2171       case S_Release:
2172       case S_MovableRelease:
2173         llvm_unreachable("top-down pointer in release state!");
2174       }
2175     }
2176
2177     // Check for possible direct uses.
2178     switch (Seq) {
2179     case S_CanRelease:
2180       if (CanUse(Inst, Ptr, PA, Class)) {
2181         DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
2182               << "\n");
2183         S.SetSeq(S_Use);
2184         ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_Use);
2185       }
2186       break;
2187     case S_Retain:
2188     case S_Use:
2189     case S_None:
2190       break;
2191     case S_Stop:
2192     case S_Release:
2193     case S_MovableRelease:
2194       llvm_unreachable("top-down pointer in release state!");
2195     }
2196   }
2197
2198   return NestingDetected;
2199 }
2200
2201 bool
2202 ObjCARCOpt::VisitTopDown(BasicBlock *BB,
2203                          DenseMap<const BasicBlock *, BBState> &BBStates,
2204                          DenseMap<Value *, RRInfo> &Releases) {
2205   DEBUG(dbgs() << "\n== ObjCARCOpt::VisitTopDown ==\n");
2206   bool NestingDetected = false;
2207   BBState &MyStates = BBStates[BB];
2208
2209   // Merge the states from each predecessor to compute the initial state
2210   // for the current block.
2211   BBState::edge_iterator PI(MyStates.pred_begin()),
2212                          PE(MyStates.pred_end());
2213   if (PI != PE) {
2214     const BasicBlock *Pred = *PI;
2215     DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Pred);
2216     assert(I != BBStates.end());
2217     MyStates.InitFromPred(I->second);
2218     ++PI;
2219     for (; PI != PE; ++PI) {
2220       Pred = *PI;
2221       I = BBStates.find(Pred);
2222       assert(I != BBStates.end());
2223       MyStates.MergePred(I->second);
2224     }
2225   }
2226
2227   // If ARC Annotations are enabled, output the current state of pointers at the
2228   // top of the basic block.
2229   ANNOTATE_TOPDOWN_BBSTART(MyStates, BB);
2230
2231   // Visit all the instructions, top-down.
2232   for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
2233     Instruction *Inst = I;
2234
2235     DEBUG(dbgs() << "Visiting " << *Inst << "\n");
2236
2237     NestingDetected |= VisitInstructionTopDown(Inst, Releases, MyStates);
2238   }
2239
2240   // If ARC Annotations are enabled, output the current state of pointers at the
2241   // bottom of the basic block.
2242   ANNOTATE_TOPDOWN_BBEND(MyStates, BB);
2243
2244 #ifdef ARC_ANNOTATIONS
2245   if (!(EnableARCAnnotations && DisableCheckForCFGHazards))
2246 #endif
2247   CheckForCFGHazards(BB, BBStates, MyStates);
2248   return NestingDetected;
2249 }
2250
2251 static void
2252 ComputePostOrders(Function &F,
2253                   SmallVectorImpl<BasicBlock *> &PostOrder,
2254                   SmallVectorImpl<BasicBlock *> &ReverseCFGPostOrder,
2255                   unsigned NoObjCARCExceptionsMDKind,
2256                   DenseMap<const BasicBlock *, BBState> &BBStates) {
2257   /// The visited set, for doing DFS walks.
2258   SmallPtrSet<BasicBlock *, 16> Visited;
2259
2260   // Do DFS, computing the PostOrder.
2261   SmallPtrSet<BasicBlock *, 16> OnStack;
2262   SmallVector<std::pair<BasicBlock *, succ_iterator>, 16> SuccStack;
2263
2264   // Functions always have exactly one entry block, and we don't have
2265   // any other block that we treat like an entry block.
2266   BasicBlock *EntryBB = &F.getEntryBlock();
2267   BBState &MyStates = BBStates[EntryBB];
2268   MyStates.SetAsEntry();
2269   TerminatorInst *EntryTI = cast<TerminatorInst>(&EntryBB->back());
2270   SuccStack.push_back(std::make_pair(EntryBB, succ_iterator(EntryTI)));
2271   Visited.insert(EntryBB);
2272   OnStack.insert(EntryBB);
2273   do {
2274   dfs_next_succ:
2275     BasicBlock *CurrBB = SuccStack.back().first;
2276     TerminatorInst *TI = cast<TerminatorInst>(&CurrBB->back());
2277     succ_iterator SE(TI, false);
2278
2279     while (SuccStack.back().second != SE) {
2280       BasicBlock *SuccBB = *SuccStack.back().second++;
2281       if (Visited.insert(SuccBB)) {
2282         TerminatorInst *TI = cast<TerminatorInst>(&SuccBB->back());
2283         SuccStack.push_back(std::make_pair(SuccBB, succ_iterator(TI)));
2284         BBStates[CurrBB].addSucc(SuccBB);
2285         BBState &SuccStates = BBStates[SuccBB];
2286         SuccStates.addPred(CurrBB);
2287         OnStack.insert(SuccBB);
2288         goto dfs_next_succ;
2289       }
2290
2291       if (!OnStack.count(SuccBB)) {
2292         BBStates[CurrBB].addSucc(SuccBB);
2293         BBStates[SuccBB].addPred(CurrBB);
2294       }
2295     }
2296     OnStack.erase(CurrBB);
2297     PostOrder.push_back(CurrBB);
2298     SuccStack.pop_back();
2299   } while (!SuccStack.empty());
2300
2301   Visited.clear();
2302
2303   // Do reverse-CFG DFS, computing the reverse-CFG PostOrder.
2304   // Functions may have many exits, and there also blocks which we treat
2305   // as exits due to ignored edges.
2306   SmallVector<std::pair<BasicBlock *, BBState::edge_iterator>, 16> PredStack;
2307   for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
2308     BasicBlock *ExitBB = I;
2309     BBState &MyStates = BBStates[ExitBB];
2310     if (!MyStates.isExit())
2311       continue;
2312
2313     MyStates.SetAsExit();
2314
2315     PredStack.push_back(std::make_pair(ExitBB, MyStates.pred_begin()));
2316     Visited.insert(ExitBB);
2317     while (!PredStack.empty()) {
2318     reverse_dfs_next_succ:
2319       BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end();
2320       while (PredStack.back().second != PE) {
2321         BasicBlock *BB = *PredStack.back().second++;
2322         if (Visited.insert(BB)) {
2323           PredStack.push_back(std::make_pair(BB, BBStates[BB].pred_begin()));
2324           goto reverse_dfs_next_succ;
2325         }
2326       }
2327       ReverseCFGPostOrder.push_back(PredStack.pop_back_val().first);
2328     }
2329   }
2330 }
2331
2332 // Visit the function both top-down and bottom-up.
2333 bool
2334 ObjCARCOpt::Visit(Function &F,
2335                   DenseMap<const BasicBlock *, BBState> &BBStates,
2336                   MapVector<Value *, RRInfo> &Retains,
2337                   DenseMap<Value *, RRInfo> &Releases) {
2338
2339   // Use reverse-postorder traversals, because we magically know that loops
2340   // will be well behaved, i.e. they won't repeatedly call retain on a single
2341   // pointer without doing a release. We can't use the ReversePostOrderTraversal
2342   // class here because we want the reverse-CFG postorder to consider each
2343   // function exit point, and we want to ignore selected cycle edges.
2344   SmallVector<BasicBlock *, 16> PostOrder;
2345   SmallVector<BasicBlock *, 16> ReverseCFGPostOrder;
2346   ComputePostOrders(F, PostOrder, ReverseCFGPostOrder,
2347                     NoObjCARCExceptionsMDKind,
2348                     BBStates);
2349
2350   // Use reverse-postorder on the reverse CFG for bottom-up.
2351   bool BottomUpNestingDetected = false;
2352   for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
2353        ReverseCFGPostOrder.rbegin(), E = ReverseCFGPostOrder.rend();
2354        I != E; ++I)
2355     BottomUpNestingDetected |= VisitBottomUp(*I, BBStates, Retains);
2356
2357   // Use reverse-postorder for top-down.
2358   bool TopDownNestingDetected = false;
2359   for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
2360        PostOrder.rbegin(), E = PostOrder.rend();
2361        I != E; ++I)
2362     TopDownNestingDetected |= VisitTopDown(*I, BBStates, Releases);
2363
2364   return TopDownNestingDetected && BottomUpNestingDetected;
2365 }
2366
2367 /// Move the calls in RetainsToMove and ReleasesToMove.
2368 void ObjCARCOpt::MoveCalls(Value *Arg,
2369                            RRInfo &RetainsToMove,
2370                            RRInfo &ReleasesToMove,
2371                            MapVector<Value *, RRInfo> &Retains,
2372                            DenseMap<Value *, RRInfo> &Releases,
2373                            SmallVectorImpl<Instruction *> &DeadInsts,
2374                            Module *M) {
2375   Type *ArgTy = Arg->getType();
2376   Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext()));
2377
2378   DEBUG(dbgs() << "== ObjCARCOpt::MoveCalls ==\n");
2379
2380   // Insert the new retain and release calls.
2381   for (SmallPtrSet<Instruction *, 2>::const_iterator
2382        PI = ReleasesToMove.ReverseInsertPts.begin(),
2383        PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2384     Instruction *InsertPt = *PI;
2385     Value *MyArg = ArgTy == ParamTy ? Arg :
2386                    new BitCastInst(Arg, ParamTy, "", InsertPt);
2387     CallInst *Call =
2388       CallInst::Create(getRetainCallee(M), MyArg, "", InsertPt);
2389     Call->setDoesNotThrow();
2390     Call->setTailCall();
2391
2392     DEBUG(dbgs() << "Inserting new Retain: " << *Call << "\n"
2393                     "At insertion point: " << *InsertPt << "\n");
2394   }
2395   for (SmallPtrSet<Instruction *, 2>::const_iterator
2396        PI = RetainsToMove.ReverseInsertPts.begin(),
2397        PE = RetainsToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
2398     Instruction *InsertPt = *PI;
2399     Value *MyArg = ArgTy == ParamTy ? Arg :
2400                    new BitCastInst(Arg, ParamTy, "", InsertPt);
2401     CallInst *Call = CallInst::Create(getReleaseCallee(M), MyArg,
2402                                       "", InsertPt);
2403     // Attach a clang.imprecise_release metadata tag, if appropriate.
2404     if (MDNode *M = ReleasesToMove.ReleaseMetadata)
2405       Call->setMetadata(ImpreciseReleaseMDKind, M);
2406     Call->setDoesNotThrow();
2407     if (ReleasesToMove.IsTailCallRelease)
2408       Call->setTailCall();
2409
2410     DEBUG(dbgs() << "Inserting new Release: " << *Call << "\n"
2411                     "At insertion point: " << *InsertPt << "\n");
2412   }
2413
2414   // Delete the original retain and release calls.
2415   for (SmallPtrSet<Instruction *, 2>::const_iterator
2416        AI = RetainsToMove.Calls.begin(),
2417        AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
2418     Instruction *OrigRetain = *AI;
2419     Retains.blot(OrigRetain);
2420     DeadInsts.push_back(OrigRetain);
2421     DEBUG(dbgs() << "Deleting retain: " << *OrigRetain << "\n");
2422   }
2423   for (SmallPtrSet<Instruction *, 2>::const_iterator
2424        AI = ReleasesToMove.Calls.begin(),
2425        AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) {
2426     Instruction *OrigRelease = *AI;
2427     Releases.erase(OrigRelease);
2428     DeadInsts.push_back(OrigRelease);
2429     DEBUG(dbgs() << "Deleting release: " << *OrigRelease << "\n");
2430   }
2431
2432 }
2433
2434 bool
2435 ObjCARCOpt::ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState>
2436                                     &BBStates,
2437                                   MapVector<Value *, RRInfo> &Retains,
2438                                   DenseMap<Value *, RRInfo> &Releases,
2439                                   Module *M,
2440                                   SmallVector<Instruction *, 4> &NewRetains,
2441                                   SmallVector<Instruction *, 4> &NewReleases,
2442                                   SmallVector<Instruction *, 8> &DeadInsts,
2443                                   RRInfo &RetainsToMove,
2444                                   RRInfo &ReleasesToMove,
2445                                   Value *Arg,
2446                                   bool KnownSafe,
2447                                   bool &AnyPairsCompletelyEliminated) {
2448   // If a pair happens in a region where it is known that the reference count
2449   // is already incremented, we can similarly ignore possible decrements.
2450   bool KnownSafeTD = true, KnownSafeBU = true;
2451
2452   // Connect the dots between the top-down-collected RetainsToMove and
2453   // bottom-up-collected ReleasesToMove to form sets of related calls.
2454   // This is an iterative process so that we connect multiple releases
2455   // to multiple retains if needed.
2456   unsigned OldDelta = 0;
2457   unsigned NewDelta = 0;
2458   unsigned OldCount = 0;
2459   unsigned NewCount = 0;
2460   bool FirstRelease = true;
2461   for (;;) {
2462     for (SmallVectorImpl<Instruction *>::const_iterator
2463            NI = NewRetains.begin(), NE = NewRetains.end(); NI != NE; ++NI) {
2464       Instruction *NewRetain = *NI;
2465       MapVector<Value *, RRInfo>::const_iterator It = Retains.find(NewRetain);
2466       assert(It != Retains.end());
2467       const RRInfo &NewRetainRRI = It->second;
2468       KnownSafeTD &= NewRetainRRI.KnownSafe;
2469       for (SmallPtrSet<Instruction *, 2>::const_iterator
2470              LI = NewRetainRRI.Calls.begin(),
2471              LE = NewRetainRRI.Calls.end(); LI != LE; ++LI) {
2472         Instruction *NewRetainRelease = *LI;
2473         DenseMap<Value *, RRInfo>::const_iterator Jt =
2474           Releases.find(NewRetainRelease);
2475         if (Jt == Releases.end())
2476           return false;
2477         const RRInfo &NewRetainReleaseRRI = Jt->second;
2478         assert(NewRetainReleaseRRI.Calls.count(NewRetain));
2479         if (ReleasesToMove.Calls.insert(NewRetainRelease)) {
2480           OldDelta -=
2481             BBStates[NewRetainRelease->getParent()].GetAllPathCount();
2482
2483           // Merge the ReleaseMetadata and IsTailCallRelease values.
2484           if (FirstRelease) {
2485             ReleasesToMove.ReleaseMetadata =
2486               NewRetainReleaseRRI.ReleaseMetadata;
2487             ReleasesToMove.IsTailCallRelease =
2488               NewRetainReleaseRRI.IsTailCallRelease;
2489             FirstRelease = false;
2490           } else {
2491             if (ReleasesToMove.ReleaseMetadata !=
2492                 NewRetainReleaseRRI.ReleaseMetadata)
2493               ReleasesToMove.ReleaseMetadata = 0;
2494             if (ReleasesToMove.IsTailCallRelease !=
2495                 NewRetainReleaseRRI.IsTailCallRelease)
2496               ReleasesToMove.IsTailCallRelease = false;
2497           }
2498
2499           // Collect the optimal insertion points.
2500           if (!KnownSafe)
2501             for (SmallPtrSet<Instruction *, 2>::const_iterator
2502                    RI = NewRetainReleaseRRI.ReverseInsertPts.begin(),
2503                    RE = NewRetainReleaseRRI.ReverseInsertPts.end();
2504                  RI != RE; ++RI) {
2505               Instruction *RIP = *RI;
2506               if (ReleasesToMove.ReverseInsertPts.insert(RIP))
2507                 NewDelta -= BBStates[RIP->getParent()].GetAllPathCount();
2508             }
2509           NewReleases.push_back(NewRetainRelease);
2510         }
2511       }
2512     }
2513     NewRetains.clear();
2514     if (NewReleases.empty()) break;
2515
2516     // Back the other way.
2517     for (SmallVectorImpl<Instruction *>::const_iterator
2518            NI = NewReleases.begin(), NE = NewReleases.end(); NI != NE; ++NI) {
2519       Instruction *NewRelease = *NI;
2520       DenseMap<Value *, RRInfo>::const_iterator It =
2521         Releases.find(NewRelease);
2522       assert(It != Releases.end());
2523       const RRInfo &NewReleaseRRI = It->second;
2524       KnownSafeBU &= NewReleaseRRI.KnownSafe;
2525       for (SmallPtrSet<Instruction *, 2>::const_iterator
2526              LI = NewReleaseRRI.Calls.begin(),
2527              LE = NewReleaseRRI.Calls.end(); LI != LE; ++LI) {
2528         Instruction *NewReleaseRetain = *LI;
2529         MapVector<Value *, RRInfo>::const_iterator Jt =
2530           Retains.find(NewReleaseRetain);
2531         if (Jt == Retains.end())
2532           return false;
2533         const RRInfo &NewReleaseRetainRRI = Jt->second;
2534         assert(NewReleaseRetainRRI.Calls.count(NewRelease));
2535         if (RetainsToMove.Calls.insert(NewReleaseRetain)) {
2536           unsigned PathCount =
2537             BBStates[NewReleaseRetain->getParent()].GetAllPathCount();
2538           OldDelta += PathCount;
2539           OldCount += PathCount;
2540
2541           // Collect the optimal insertion points.
2542           if (!KnownSafe)
2543             for (SmallPtrSet<Instruction *, 2>::const_iterator
2544                    RI = NewReleaseRetainRRI.ReverseInsertPts.begin(),
2545                    RE = NewReleaseRetainRRI.ReverseInsertPts.end();
2546                  RI != RE; ++RI) {
2547               Instruction *RIP = *RI;
2548               if (RetainsToMove.ReverseInsertPts.insert(RIP)) {
2549                 PathCount = BBStates[RIP->getParent()].GetAllPathCount();
2550                 NewDelta += PathCount;
2551                 NewCount += PathCount;
2552               }
2553             }
2554           NewRetains.push_back(NewReleaseRetain);
2555         }
2556       }
2557     }
2558     NewReleases.clear();
2559     if (NewRetains.empty()) break;
2560   }
2561
2562   // If the pointer is known incremented or nested, we can safely delete the
2563   // pair regardless of what's between them.
2564   if (KnownSafeTD || KnownSafeBU) {
2565     RetainsToMove.ReverseInsertPts.clear();
2566     ReleasesToMove.ReverseInsertPts.clear();
2567     NewCount = 0;
2568   } else {
2569     // Determine whether the new insertion points we computed preserve the
2570     // balance of retain and release calls through the program.
2571     // TODO: If the fully aggressive solution isn't valid, try to find a
2572     // less aggressive solution which is.
2573     if (NewDelta != 0)
2574       return false;
2575   }
2576
2577   // Determine whether the original call points are balanced in the retain and
2578   // release calls through the program. If not, conservatively don't touch
2579   // them.
2580   // TODO: It's theoretically possible to do code motion in this case, as
2581   // long as the existing imbalances are maintained.
2582   if (OldDelta != 0)
2583     return false;
2584
2585   Changed = true;
2586   assert(OldCount != 0 && "Unreachable code?");
2587   NumRRs += OldCount - NewCount;
2588   // Set to true if we completely removed any RR pairs.
2589   AnyPairsCompletelyEliminated = NewCount == 0;
2590
2591   // We can move calls!
2592   return true;
2593 }
2594
2595 /// Identify pairings between the retains and releases, and delete and/or move
2596 /// them.
2597 bool
2598 ObjCARCOpt::PerformCodePlacement(DenseMap<const BasicBlock *, BBState>
2599                                    &BBStates,
2600                                  MapVector<Value *, RRInfo> &Retains,
2601                                  DenseMap<Value *, RRInfo> &Releases,
2602                                  Module *M) {
2603   DEBUG(dbgs() << "\n== ObjCARCOpt::PerformCodePlacement ==\n");
2604
2605   bool AnyPairsCompletelyEliminated = false;
2606   RRInfo RetainsToMove;
2607   RRInfo ReleasesToMove;
2608   SmallVector<Instruction *, 4> NewRetains;
2609   SmallVector<Instruction *, 4> NewReleases;
2610   SmallVector<Instruction *, 8> DeadInsts;
2611
2612   // Visit each retain.
2613   for (MapVector<Value *, RRInfo>::const_iterator I = Retains.begin(),
2614        E = Retains.end(); I != E; ++I) {
2615     Value *V = I->first;
2616     if (!V) continue; // blotted
2617
2618     Instruction *Retain = cast<Instruction>(V);
2619
2620     DEBUG(dbgs() << "Visiting: " << *Retain << "\n");
2621
2622     Value *Arg = GetObjCArg(Retain);
2623
2624     // If the object being released is in static or stack storage, we know it's
2625     // not being managed by ObjC reference counting, so we can delete pairs
2626     // regardless of what possible decrements or uses lie between them.
2627     bool KnownSafe = isa<Constant>(Arg) || isa<AllocaInst>(Arg);
2628
2629     // A constant pointer can't be pointing to an object on the heap. It may
2630     // be reference-counted, but it won't be deleted.
2631     if (const LoadInst *LI = dyn_cast<LoadInst>(Arg))
2632       if (const GlobalVariable *GV =
2633             dyn_cast<GlobalVariable>(
2634               StripPointerCastsAndObjCCalls(LI->getPointerOperand())))
2635         if (GV->isConstant())
2636           KnownSafe = true;
2637
2638     // Connect the dots between the top-down-collected RetainsToMove and
2639     // bottom-up-collected ReleasesToMove to form sets of related calls.
2640     NewRetains.push_back(Retain);
2641     bool PerformMoveCalls =
2642       ConnectTDBUTraversals(BBStates, Retains, Releases, M, NewRetains,
2643                             NewReleases, DeadInsts, RetainsToMove,
2644                             ReleasesToMove, Arg, KnownSafe,
2645                             AnyPairsCompletelyEliminated);
2646
2647 #ifdef ARC_ANNOTATIONS
2648     // Do not move calls if ARC annotations are requested. If we were to move
2649     // calls in this case, we would not be able
2650     PerformMoveCalls = PerformMoveCalls && !EnableARCAnnotations;
2651 #endif // ARC_ANNOTATIONS
2652
2653     if (PerformMoveCalls) {
2654       // Ok, everything checks out and we're all set. Let's move/delete some
2655       // code!
2656       MoveCalls(Arg, RetainsToMove, ReleasesToMove,
2657                 Retains, Releases, DeadInsts, M);
2658     }
2659
2660     // Clean up state for next retain.
2661     NewReleases.clear();
2662     NewRetains.clear();
2663     RetainsToMove.clear();
2664     ReleasesToMove.clear();
2665   }
2666
2667   // Now that we're done moving everything, we can delete the newly dead
2668   // instructions, as we no longer need them as insert points.
2669   while (!DeadInsts.empty())
2670     EraseInstruction(DeadInsts.pop_back_val());
2671
2672   return AnyPairsCompletelyEliminated;
2673 }
2674
2675 /// Weak pointer optimizations.
2676 void ObjCARCOpt::OptimizeWeakCalls(Function &F) {
2677   DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeWeakCalls ==\n");
2678
2679   // First, do memdep-style RLE and S2L optimizations. We can't use memdep
2680   // itself because it uses AliasAnalysis and we need to do provenance
2681   // queries instead.
2682   for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2683     Instruction *Inst = &*I++;
2684
2685     DEBUG(dbgs() << "Visiting: " << *Inst << "\n");
2686
2687     InstructionClass Class = GetBasicInstructionClass(Inst);
2688     if (Class != IC_LoadWeak && Class != IC_LoadWeakRetained)
2689       continue;
2690
2691     // Delete objc_loadWeak calls with no users.
2692     if (Class == IC_LoadWeak && Inst->use_empty()) {
2693       Inst->eraseFromParent();
2694       continue;
2695     }
2696
2697     // TODO: For now, just look for an earlier available version of this value
2698     // within the same block. Theoretically, we could do memdep-style non-local
2699     // analysis too, but that would want caching. A better approach would be to
2700     // use the technique that EarlyCSE uses.
2701     inst_iterator Current = llvm::prior(I);
2702     BasicBlock *CurrentBB = Current.getBasicBlockIterator();
2703     for (BasicBlock::iterator B = CurrentBB->begin(),
2704                               J = Current.getInstructionIterator();
2705          J != B; --J) {
2706       Instruction *EarlierInst = &*llvm::prior(J);
2707       InstructionClass EarlierClass = GetInstructionClass(EarlierInst);
2708       switch (EarlierClass) {
2709       case IC_LoadWeak:
2710       case IC_LoadWeakRetained: {
2711         // If this is loading from the same pointer, replace this load's value
2712         // with that one.
2713         CallInst *Call = cast<CallInst>(Inst);
2714         CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2715         Value *Arg = Call->getArgOperand(0);
2716         Value *EarlierArg = EarlierCall->getArgOperand(0);
2717         switch (PA.getAA()->alias(Arg, EarlierArg)) {
2718         case AliasAnalysis::MustAlias:
2719           Changed = true;
2720           // If the load has a builtin retain, insert a plain retain for it.
2721           if (Class == IC_LoadWeakRetained) {
2722             CallInst *CI =
2723               CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
2724                                "", Call);
2725             CI->setTailCall();
2726           }
2727           // Zap the fully redundant load.
2728           Call->replaceAllUsesWith(EarlierCall);
2729           Call->eraseFromParent();
2730           goto clobbered;
2731         case AliasAnalysis::MayAlias:
2732         case AliasAnalysis::PartialAlias:
2733           goto clobbered;
2734         case AliasAnalysis::NoAlias:
2735           break;
2736         }
2737         break;
2738       }
2739       case IC_StoreWeak:
2740       case IC_InitWeak: {
2741         // If this is storing to the same pointer and has the same size etc.
2742         // replace this load's value with the stored value.
2743         CallInst *Call = cast<CallInst>(Inst);
2744         CallInst *EarlierCall = cast<CallInst>(EarlierInst);
2745         Value *Arg = Call->getArgOperand(0);
2746         Value *EarlierArg = EarlierCall->getArgOperand(0);
2747         switch (PA.getAA()->alias(Arg, EarlierArg)) {
2748         case AliasAnalysis::MustAlias:
2749           Changed = true;
2750           // If the load has a builtin retain, insert a plain retain for it.
2751           if (Class == IC_LoadWeakRetained) {
2752             CallInst *CI =
2753               CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
2754                                "", Call);
2755             CI->setTailCall();
2756           }
2757           // Zap the fully redundant load.
2758           Call->replaceAllUsesWith(EarlierCall->getArgOperand(1));
2759           Call->eraseFromParent();
2760           goto clobbered;
2761         case AliasAnalysis::MayAlias:
2762         case AliasAnalysis::PartialAlias:
2763           goto clobbered;
2764         case AliasAnalysis::NoAlias:
2765           break;
2766         }
2767         break;
2768       }
2769       case IC_MoveWeak:
2770       case IC_CopyWeak:
2771         // TOOD: Grab the copied value.
2772         goto clobbered;
2773       case IC_AutoreleasepoolPush:
2774       case IC_None:
2775       case IC_IntrinsicUser:
2776       case IC_User:
2777         // Weak pointers are only modified through the weak entry points
2778         // (and arbitrary calls, which could call the weak entry points).
2779         break;
2780       default:
2781         // Anything else could modify the weak pointer.
2782         goto clobbered;
2783       }
2784     }
2785   clobbered:;
2786   }
2787
2788   // Then, for each destroyWeak with an alloca operand, check to see if
2789   // the alloca and all its users can be zapped.
2790   for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2791     Instruction *Inst = &*I++;
2792     InstructionClass Class = GetBasicInstructionClass(Inst);
2793     if (Class != IC_DestroyWeak)
2794       continue;
2795
2796     CallInst *Call = cast<CallInst>(Inst);
2797     Value *Arg = Call->getArgOperand(0);
2798     if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
2799       for (Value::use_iterator UI = Alloca->use_begin(),
2800            UE = Alloca->use_end(); UI != UE; ++UI) {
2801         const Instruction *UserInst = cast<Instruction>(*UI);
2802         switch (GetBasicInstructionClass(UserInst)) {
2803         case IC_InitWeak:
2804         case IC_StoreWeak:
2805         case IC_DestroyWeak:
2806           continue;
2807         default:
2808           goto done;
2809         }
2810       }
2811       Changed = true;
2812       for (Value::use_iterator UI = Alloca->use_begin(),
2813            UE = Alloca->use_end(); UI != UE; ) {
2814         CallInst *UserInst = cast<CallInst>(*UI++);
2815         switch (GetBasicInstructionClass(UserInst)) {
2816         case IC_InitWeak:
2817         case IC_StoreWeak:
2818           // These functions return their second argument.
2819           UserInst->replaceAllUsesWith(UserInst->getArgOperand(1));
2820           break;
2821         case IC_DestroyWeak:
2822           // No return value.
2823           break;
2824         default:
2825           llvm_unreachable("alloca really is used!");
2826         }
2827         UserInst->eraseFromParent();
2828       }
2829       Alloca->eraseFromParent();
2830     done:;
2831     }
2832   }
2833 }
2834
2835 /// Identify program paths which execute sequences of retains and releases which
2836 /// can be eliminated.
2837 bool ObjCARCOpt::OptimizeSequences(Function &F) {
2838   /// Releases, Retains - These are used to store the results of the main flow
2839   /// analysis. These use Value* as the key instead of Instruction* so that the
2840   /// map stays valid when we get around to rewriting code and calls get
2841   /// replaced by arguments.
2842   DenseMap<Value *, RRInfo> Releases;
2843   MapVector<Value *, RRInfo> Retains;
2844
2845   /// This is used during the traversal of the function to track the
2846   /// states for each identified object at each block.
2847   DenseMap<const BasicBlock *, BBState> BBStates;
2848
2849   // Analyze the CFG of the function, and all instructions.
2850   bool NestingDetected = Visit(F, BBStates, Retains, Releases);
2851
2852   // Transform.
2853   return PerformCodePlacement(BBStates, Retains, Releases, F.getParent()) &&
2854          NestingDetected;
2855 }
2856
2857 /// Check if there is a dependent call earlier that does not have anything in
2858 /// between the Retain and the call that can affect the reference count of their
2859 /// shared pointer argument. Note that Retain need not be in BB.
2860 static bool
2861 HasSafePathToPredecessorCall(const Value *Arg, Instruction *Retain,
2862                              SmallPtrSet<Instruction *, 4> &DepInsts,
2863                              SmallPtrSet<const BasicBlock *, 4> &Visited,
2864                              ProvenanceAnalysis &PA) {
2865   FindDependencies(CanChangeRetainCount, Arg, Retain->getParent(), Retain,
2866                    DepInsts, Visited, PA);
2867   if (DepInsts.size() != 1)
2868     return false;
2869
2870   CallInst *Call =
2871     dyn_cast_or_null<CallInst>(*DepInsts.begin());
2872
2873   // Check that the pointer is the return value of the call.
2874   if (!Call || Arg != Call)
2875     return false;
2876
2877   // Check that the call is a regular call.
2878   InstructionClass Class = GetBasicInstructionClass(Call);
2879   if (Class != IC_CallOrUser && Class != IC_Call)
2880     return false;
2881
2882   return true;
2883 }
2884
2885 /// Find a dependent retain that precedes the given autorelease for which there
2886 /// is nothing in between the two instructions that can affect the ref count of
2887 /// Arg.
2888 static CallInst *
2889 FindPredecessorRetainWithSafePath(const Value *Arg, BasicBlock *BB,
2890                                   Instruction *Autorelease,
2891                                   SmallPtrSet<Instruction *, 4> &DepInsts,
2892                                   SmallPtrSet<const BasicBlock *, 4> &Visited,
2893                                   ProvenanceAnalysis &PA) {
2894   FindDependencies(CanChangeRetainCount, Arg,
2895                    BB, Autorelease, DepInsts, Visited, PA);
2896   if (DepInsts.size() != 1)
2897     return 0;
2898
2899   CallInst *Retain =
2900     dyn_cast_or_null<CallInst>(*DepInsts.begin());
2901
2902   // Check that we found a retain with the same argument.
2903   if (!Retain ||
2904       !IsRetain(GetBasicInstructionClass(Retain)) ||
2905       GetObjCArg(Retain) != Arg) {
2906     return 0;
2907   }
2908
2909   return Retain;
2910 }
2911
2912 /// Look for an ``autorelease'' instruction dependent on Arg such that there are
2913 /// no instructions dependent on Arg that need a positive ref count in between
2914 /// the autorelease and the ret.
2915 static CallInst *
2916 FindPredecessorAutoreleaseWithSafePath(const Value *Arg, BasicBlock *BB,
2917                                        ReturnInst *Ret,
2918                                        SmallPtrSet<Instruction *, 4> &DepInsts,
2919                                        SmallPtrSet<const BasicBlock *, 4> &V,
2920                                        ProvenanceAnalysis &PA) {
2921   FindDependencies(NeedsPositiveRetainCount, Arg,
2922                    BB, Ret, DepInsts, V, PA);
2923   if (DepInsts.size() != 1)
2924     return 0;
2925
2926   CallInst *Autorelease =
2927     dyn_cast_or_null<CallInst>(*DepInsts.begin());
2928   if (!Autorelease)
2929     return 0;
2930   InstructionClass AutoreleaseClass = GetBasicInstructionClass(Autorelease);
2931   if (!IsAutorelease(AutoreleaseClass))
2932     return 0;
2933   if (GetObjCArg(Autorelease) != Arg)
2934     return 0;
2935
2936   return Autorelease;
2937 }
2938
2939 /// Look for this pattern:
2940 /// \code
2941 ///    %call = call i8* @something(...)
2942 ///    %2 = call i8* @objc_retain(i8* %call)
2943 ///    %3 = call i8* @objc_autorelease(i8* %2)
2944 ///    ret i8* %3
2945 /// \endcode
2946 /// And delete the retain and autorelease.
2947 void ObjCARCOpt::OptimizeReturns(Function &F) {
2948   if (!F.getReturnType()->isPointerTy())
2949     return;
2950
2951   DEBUG(dbgs() << "\n== ObjCARCOpt::OptimizeReturns ==\n");
2952
2953   SmallPtrSet<Instruction *, 4> DependingInstructions;
2954   SmallPtrSet<const BasicBlock *, 4> Visited;
2955   for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
2956     BasicBlock *BB = FI;
2957     ReturnInst *Ret = dyn_cast<ReturnInst>(&BB->back());
2958
2959     DEBUG(dbgs() << "Visiting: " << *Ret << "\n");
2960
2961     if (!Ret)
2962       continue;
2963
2964     const Value *Arg = StripPointerCastsAndObjCCalls(Ret->getOperand(0));
2965
2966     // Look for an ``autorelease'' instruction that is a predecessor of Ret and
2967     // dependent on Arg such that there are no instructions dependent on Arg
2968     // that need a positive ref count in between the autorelease and Ret.
2969     CallInst *Autorelease =
2970       FindPredecessorAutoreleaseWithSafePath(Arg, BB, Ret,
2971                                              DependingInstructions, Visited,
2972                                              PA);
2973     DependingInstructions.clear();
2974     Visited.clear();
2975
2976     if (!Autorelease)
2977       continue;
2978
2979     CallInst *Retain =
2980       FindPredecessorRetainWithSafePath(Arg, BB, Autorelease,
2981                                         DependingInstructions, Visited, PA);
2982     DependingInstructions.clear();
2983     Visited.clear();
2984
2985     if (!Retain)
2986       continue;
2987
2988     // Check that there is nothing that can affect the reference count
2989     // between the retain and the call.  Note that Retain need not be in BB.
2990     bool HasSafePathToCall = HasSafePathToPredecessorCall(Arg, Retain,
2991                                                           DependingInstructions,
2992                                                           Visited, PA);
2993     DependingInstructions.clear();
2994     Visited.clear();
2995
2996     if (!HasSafePathToCall)
2997       continue;
2998
2999     // If so, we can zap the retain and autorelease.
3000     Changed = true;
3001     ++NumRets;
3002     DEBUG(dbgs() << "Erasing: " << *Retain << "\nErasing: "
3003           << *Autorelease << "\n");
3004     EraseInstruction(Retain);
3005     EraseInstruction(Autorelease);
3006   }
3007 }
3008
3009 bool ObjCARCOpt::doInitialization(Module &M) {
3010   if (!EnableARCOpts)
3011     return false;
3012
3013   // If nothing in the Module uses ARC, don't do anything.
3014   Run = ModuleHasARC(M);
3015   if (!Run)
3016     return false;
3017
3018   // Identify the imprecise release metadata kind.
3019   ImpreciseReleaseMDKind =
3020     M.getContext().getMDKindID("clang.imprecise_release");
3021   CopyOnEscapeMDKind =
3022     M.getContext().getMDKindID("clang.arc.copy_on_escape");
3023   NoObjCARCExceptionsMDKind =
3024     M.getContext().getMDKindID("clang.arc.no_objc_arc_exceptions");
3025 #ifdef ARC_ANNOTATIONS
3026   ARCAnnotationBottomUpMDKind =
3027     M.getContext().getMDKindID("llvm.arc.annotation.bottomup");
3028   ARCAnnotationTopDownMDKind =
3029     M.getContext().getMDKindID("llvm.arc.annotation.topdown");
3030   ARCAnnotationProvenanceSourceMDKind =
3031     M.getContext().getMDKindID("llvm.arc.annotation.provenancesource");
3032 #endif // ARC_ANNOTATIONS
3033
3034   // Intuitively, objc_retain and others are nocapture, however in practice
3035   // they are not, because they return their argument value. And objc_release
3036   // calls finalizers which can have arbitrary side effects.
3037
3038   // These are initialized lazily.
3039   RetainRVCallee = 0;
3040   AutoreleaseRVCallee = 0;
3041   ReleaseCallee = 0;
3042   RetainCallee = 0;
3043   RetainBlockCallee = 0;
3044   AutoreleaseCallee = 0;
3045
3046   return false;
3047 }
3048
3049 bool ObjCARCOpt::runOnFunction(Function &F) {
3050   if (!EnableARCOpts)
3051     return false;
3052
3053   // If nothing in the Module uses ARC, don't do anything.
3054   if (!Run)
3055     return false;
3056
3057   Changed = false;
3058
3059   DEBUG(dbgs() << "<<< ObjCARCOpt: Visiting Function: " << F.getName() << " >>>"
3060         "\n");
3061
3062   PA.setAA(&getAnalysis<AliasAnalysis>());
3063
3064   // This pass performs several distinct transformations. As a compile-time aid
3065   // when compiling code that isn't ObjC, skip these if the relevant ObjC
3066   // library functions aren't declared.
3067
3068   // Preliminary optimizations. This also computs UsedInThisFunction.
3069   OptimizeIndividualCalls(F);
3070
3071   // Optimizations for weak pointers.
3072   if (UsedInThisFunction & ((1 << IC_LoadWeak) |
3073                             (1 << IC_LoadWeakRetained) |
3074                             (1 << IC_StoreWeak) |
3075                             (1 << IC_InitWeak) |
3076                             (1 << IC_CopyWeak) |
3077                             (1 << IC_MoveWeak) |
3078                             (1 << IC_DestroyWeak)))
3079     OptimizeWeakCalls(F);
3080
3081   // Optimizations for retain+release pairs.
3082   if (UsedInThisFunction & ((1 << IC_Retain) |
3083                             (1 << IC_RetainRV) |
3084                             (1 << IC_RetainBlock)))
3085     if (UsedInThisFunction & (1 << IC_Release))
3086       // Run OptimizeSequences until it either stops making changes or
3087       // no retain+release pair nesting is detected.
3088       while (OptimizeSequences(F)) {}
3089
3090   // Optimizations if objc_autorelease is used.
3091   if (UsedInThisFunction & ((1 << IC_Autorelease) |
3092                             (1 << IC_AutoreleaseRV)))
3093     OptimizeReturns(F);
3094
3095   DEBUG(dbgs() << "\n");
3096
3097   return Changed;
3098 }
3099
3100 void ObjCARCOpt::releaseMemory() {
3101   PA.clear();
3102 }
3103
3104 /// @}
3105 ///