1 //===- DependencyAnalysis.cpp - ObjC ARC Optimization ---------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 ///
10 /// This file defines special dependency analysis routines used in Objective C
11 /// ARC Optimizations.
12 ///
13 /// WARNING: This file knows about certain library functions. It recognizes them
14 /// by name, and hardwires knowledge of their semantics.
15 ///
16 /// WARNING: This file knows about how certain Objective-C library functions are
17 /// used. Naive LLVM IR transformations which would otherwise be
18 /// behavior-preserving may break these assumptions.
19 ///
20 //===----------------------------------------------------------------------===//
21 
22 #include "DependencyAnalysis.h"
23 #include "ObjCARC.h"
24 #include "ProvenanceAnalysis.h"
25 #include "llvm/Analysis/AliasAnalysis.h"
26 #include "llvm/IR/CFG.h"
27 
28 using namespace llvm;
29 using namespace llvm::objcarc;
30 
31 #define DEBUG_TYPE "objc-arc-dependency"
32 
33 /// Test whether the given instruction can result in a reference count
34 /// modification (positive or negative) for the pointer's object.
CanAlterRefCount(const Instruction * Inst,const Value * Ptr,ProvenanceAnalysis & PA,ARCInstKind Class)35 bool llvm::objcarc::CanAlterRefCount(const Instruction *Inst, const Value *Ptr,
36                                      ProvenanceAnalysis &PA,
37                                      ARCInstKind Class) {
38   switch (Class) {
39   case ARCInstKind::Autorelease:
40   case ARCInstKind::AutoreleaseRV:
41   case ARCInstKind::IntrinsicUser:
42   case ARCInstKind::User:
43     // These operations never directly modify a reference count.
44     return false;
45   default: break;
46   }
47 
48   const auto *Call = cast<CallBase>(Inst);
49 
50   // See if AliasAnalysis can help us with the call.
51   FunctionModRefBehavior MRB = PA.getAA()->getModRefBehavior(Call);
52   if (AliasAnalysis::onlyReadsMemory(MRB))
53     return false;
54   if (AliasAnalysis::onlyAccessesArgPointees(MRB)) {
55     for (const Value *Op : Call->args()) {
56       if (IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA.related(Ptr, Op))
57         return true;
58     }
59     return false;
60   }
61 
62   // Assume the worst.
63   return true;
64 }
65 
CanDecrementRefCount(const Instruction * Inst,const Value * Ptr,ProvenanceAnalysis & PA,ARCInstKind Class)66 bool llvm::objcarc::CanDecrementRefCount(const Instruction *Inst,
67                                          const Value *Ptr,
68                                          ProvenanceAnalysis &PA,
69                                          ARCInstKind Class) {
70   // First perform a quick check if Class can not touch ref counts.
71   if (!CanDecrementRefCount(Class))
72     return false;
73 
74   // Otherwise, just use CanAlterRefCount for now.
75   return CanAlterRefCount(Inst, Ptr, PA, Class);
76 }
77 
78 /// Test whether the given instruction can "use" the given pointer's object in a
79 /// way that requires the reference count to be positive.
CanUse(const Instruction * Inst,const Value * Ptr,ProvenanceAnalysis & PA,ARCInstKind Class)80 bool llvm::objcarc::CanUse(const Instruction *Inst, const Value *Ptr,
81                            ProvenanceAnalysis &PA, ARCInstKind Class) {
82   // ARCInstKind::Call operations (as opposed to
83   // ARCInstKind::CallOrUser) never "use" objc pointers.
84   if (Class == ARCInstKind::Call)
85     return false;
86 
87   // Consider various instructions which may have pointer arguments which are
88   // not "uses".
89   if (const ICmpInst *ICI = dyn_cast<ICmpInst>(Inst)) {
90     // Comparing a pointer with null, or any other constant, isn't really a use,
91     // because we don't care what the pointer points to, or about the values
92     // of any other dynamic reference-counted pointers.
93     if (!IsPotentialRetainableObjPtr(ICI->getOperand(1), *PA.getAA()))
94       return false;
95   } else if (const auto *CS = dyn_cast<CallBase>(Inst)) {
96     // For calls, just check the arguments (and not the callee operand).
97     for (auto OI = CS->arg_begin(), OE = CS->arg_end(); OI != OE; ++OI) {
98       const Value *Op = *OI;
99       if (IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA.related(Ptr, Op))
100         return true;
101     }
102     return false;
103   } else if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
104     // Special-case stores, because we don't care about the stored value, just
105     // the store address.
106     const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand());
107     // If we can't tell what the underlying object was, assume there is a
108     // dependence.
109     return IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA.related(Op, Ptr);
110   }
111 
112   // Check each operand for a match.
113   for (const Use &U : Inst->operands()) {
114     const Value *Op = U;
115     if (IsPotentialRetainableObjPtr(Op, *PA.getAA()) && PA.related(Ptr, Op))
116       return true;
117   }
118   return false;
119 }
120 
121 /// Test if there can be dependencies on Inst through Arg. This function only
122 /// tests dependencies relevant for removing pairs of calls.
123 bool
Depends(DependenceKind Flavor,Instruction * Inst,const Value * Arg,ProvenanceAnalysis & PA)124 llvm::objcarc::Depends(DependenceKind Flavor, Instruction *Inst,
125                        const Value *Arg, ProvenanceAnalysis &PA) {
126   // If we've reached the definition of Arg, stop.
127   if (Inst == Arg)
128     return true;
129 
130   switch (Flavor) {
131   case NeedsPositiveRetainCount: {
132     ARCInstKind Class = GetARCInstKind(Inst);
133     switch (Class) {
134     case ARCInstKind::AutoreleasepoolPop:
135     case ARCInstKind::AutoreleasepoolPush:
136     case ARCInstKind::None:
137       return false;
138     default:
139       return CanUse(Inst, Arg, PA, Class);
140     }
141   }
142 
143   case AutoreleasePoolBoundary: {
144     ARCInstKind Class = GetARCInstKind(Inst);
145     switch (Class) {
146     case ARCInstKind::AutoreleasepoolPop:
147     case ARCInstKind::AutoreleasepoolPush:
148       // These mark the end and begin of an autorelease pool scope.
149       return true;
150     default:
151       // Nothing else does this.
152       return false;
153     }
154   }
155 
156   case CanChangeRetainCount: {
157     ARCInstKind Class = GetARCInstKind(Inst);
158     switch (Class) {
159     case ARCInstKind::AutoreleasepoolPop:
160       // Conservatively assume this can decrement any count.
161       return true;
162     case ARCInstKind::AutoreleasepoolPush:
163     case ARCInstKind::None:
164       return false;
165     default:
166       return CanAlterRefCount(Inst, Arg, PA, Class);
167     }
168   }
169 
170   case RetainAutoreleaseDep:
171     switch (GetBasicARCInstKind(Inst)) {
172     case ARCInstKind::AutoreleasepoolPop:
173     case ARCInstKind::AutoreleasepoolPush:
174       // Don't merge an objc_autorelease with an objc_retain inside a different
175       // autoreleasepool scope.
176       return true;
177     case ARCInstKind::Retain:
178     case ARCInstKind::RetainRV:
179       // Check for a retain of the same pointer for merging.
180       return GetArgRCIdentityRoot(Inst) == Arg;
181     default:
182       // Nothing else matters for objc_retainAutorelease formation.
183       return false;
184     }
185 
186   case RetainAutoreleaseRVDep: {
187     ARCInstKind Class = GetBasicARCInstKind(Inst);
188     switch (Class) {
189     case ARCInstKind::Retain:
190     case ARCInstKind::RetainRV:
191       // Check for a retain of the same pointer for merging.
192       return GetArgRCIdentityRoot(Inst) == Arg;
193     default:
194       // Anything that can autorelease interrupts
195       // retainAutoreleaseReturnValue formation.
196       return CanInterruptRV(Class);
197     }
198   }
199 
200   case RetainRVDep:
201     return CanInterruptRV(GetBasicARCInstKind(Inst));
202   }
203 
204   llvm_unreachable("Invalid dependence flavor");
205 }
206 
207 /// Walk up the CFG from StartPos (which is in StartBB) and find local and
208 /// non-local dependencies on Arg.
209 ///
210 /// TODO: Cache results?
findDependencies(DependenceKind Flavor,const Value * Arg,BasicBlock * StartBB,Instruction * StartInst,SmallPtrSetImpl<Instruction * > & DependingInsts,ProvenanceAnalysis & PA)211 static bool findDependencies(DependenceKind Flavor, const Value *Arg,
212                              BasicBlock *StartBB, Instruction *StartInst,
213                              SmallPtrSetImpl<Instruction *> &DependingInsts,
214                              ProvenanceAnalysis &PA) {
215   BasicBlock::iterator StartPos = StartInst->getIterator();
216 
217   SmallPtrSet<const BasicBlock *, 4> Visited;
218   SmallVector<std::pair<BasicBlock *, BasicBlock::iterator>, 4> Worklist;
219   Worklist.push_back(std::make_pair(StartBB, StartPos));
220   do {
221     std::pair<BasicBlock *, BasicBlock::iterator> Pair =
222       Worklist.pop_back_val();
223     BasicBlock *LocalStartBB = Pair.first;
224     BasicBlock::iterator LocalStartPos = Pair.second;
225     BasicBlock::iterator StartBBBegin = LocalStartBB->begin();
226     for (;;) {
227       if (LocalStartPos == StartBBBegin) {
228         pred_iterator PI(LocalStartBB), PE(LocalStartBB, false);
229         if (PI == PE)
230           // Return if we've reached the function entry.
231           return false;
232         // Add the predecessors to the worklist.
233         do {
234           BasicBlock *PredBB = *PI;
235           if (Visited.insert(PredBB).second)
236             Worklist.push_back(std::make_pair(PredBB, PredBB->end()));
237         } while (++PI != PE);
238         break;
239       }
240 
241       Instruction *Inst = &*--LocalStartPos;
242       if (Depends(Flavor, Inst, Arg, PA)) {
243         DependingInsts.insert(Inst);
244         break;
245       }
246     }
247   } while (!Worklist.empty());
248 
249   // Determine whether the original StartBB post-dominates all of the blocks we
250   // visited. If not, insert a sentinal indicating that most optimizations are
251   // not safe.
252   for (const BasicBlock *BB : Visited) {
253     if (BB == StartBB)
254       continue;
255     for (const BasicBlock *Succ : successors(BB))
256       if (Succ != StartBB && !Visited.count(Succ))
257         return false;
258   }
259 
260   return true;
261 }
262 
findSingleDependency(DependenceKind Flavor,const Value * Arg,BasicBlock * StartBB,Instruction * StartInst,ProvenanceAnalysis & PA)263 llvm::Instruction *llvm::objcarc::findSingleDependency(DependenceKind Flavor,
264                                                        const Value *Arg,
265                                                        BasicBlock *StartBB,
266                                                        Instruction *StartInst,
267                                                        ProvenanceAnalysis &PA) {
268   SmallPtrSet<Instruction *, 4> DependingInsts;
269 
270   if (!findDependencies(Flavor, Arg, StartBB, StartInst, DependingInsts, PA) ||
271       DependingInsts.size() != 1)
272     return nullptr;
273   return *DependingInsts.begin();
274 }
275