blob: c280cf43583e474b885af39f1994bfb430f87467 [file] [log] [blame]
John McCall9fbd3182011-06-15 23:37:01 +00001//===- ObjCARC.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//
10// This file defines ObjC ARC optimizations. ARC stands for
11// Automatic Reference Counting and is a system for managing reference counts
12// for objects 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, pattern-matching and replacement of
17// low-level operations into higher-level operations, and numerous minor
18// simplifications.
19//
20// This file also defines a simple ARC-aware AliasAnalysis.
21//
22// WARNING: This file knows about certain library functions. It recognizes them
Chris Lattner55dc5c72012-05-27 19:37:05 +000023// by name, and hardwires knowledge of their semantics.
John McCall9fbd3182011-06-15 23:37:01 +000024//
25// WARNING: This file knows about how certain Objective-C library functions are
26// used. Naive LLVM IR transformations which would otherwise be
27// behavior-preserving may break these assumptions.
28//
29//===----------------------------------------------------------------------===//
30
31#define DEBUG_TYPE "objc-arc"
John McCall9fbd3182011-06-15 23:37:01 +000032#include "llvm/ADT/DenseMap.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000033#include "llvm/Support/CommandLine.h"
Chandler Carruth58a2cbe2013-01-02 10:22:59 +000034#include "llvm/Support/Debug.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Support/raw_ostream.h"
John McCall9fbd3182011-06-15 23:37:01 +000036using namespace llvm;
37
38// A handy option to enable/disable all optimizations in this file.
39static cl::opt<bool> EnableARCOpts("enable-objc-arc-opts", cl::init(true));
40
41//===----------------------------------------------------------------------===//
42// Misc. Utilities
43//===----------------------------------------------------------------------===//
44
45namespace {
46 /// MapVector - An associative container with fast insertion-order
47 /// (deterministic) iteration over its elements. Plus the special
48 /// blot operation.
49 template<class KeyT, class ValueT>
50 class MapVector {
51 /// Map - Map keys to indices in Vector.
52 typedef DenseMap<KeyT, size_t> MapTy;
53 MapTy Map;
54
55 /// Vector - Keys and values.
56 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
57 VectorTy Vector;
58
59 public:
60 typedef typename VectorTy::iterator iterator;
61 typedef typename VectorTy::const_iterator const_iterator;
62 iterator begin() { return Vector.begin(); }
63 iterator end() { return Vector.end(); }
64 const_iterator begin() const { return Vector.begin(); }
65 const_iterator end() const { return Vector.end(); }
66
67#ifdef XDEBUG
68 ~MapVector() {
69 assert(Vector.size() >= Map.size()); // May differ due to blotting.
70 for (typename MapTy::const_iterator I = Map.begin(), E = Map.end();
71 I != E; ++I) {
72 assert(I->second < Vector.size());
73 assert(Vector[I->second].first == I->first);
74 }
75 for (typename VectorTy::const_iterator I = Vector.begin(),
76 E = Vector.end(); I != E; ++I)
77 assert(!I->first ||
78 (Map.count(I->first) &&
79 Map[I->first] == size_t(I - Vector.begin())));
80 }
81#endif
82
Dan Gohman22cc4cc2012-03-02 01:13:53 +000083 ValueT &operator[](const KeyT &Arg) {
John McCall9fbd3182011-06-15 23:37:01 +000084 std::pair<typename MapTy::iterator, bool> Pair =
85 Map.insert(std::make_pair(Arg, size_t(0)));
86 if (Pair.second) {
Dan Gohman22cc4cc2012-03-02 01:13:53 +000087 size_t Num = Vector.size();
88 Pair.first->second = Num;
John McCall9fbd3182011-06-15 23:37:01 +000089 Vector.push_back(std::make_pair(Arg, ValueT()));
Dan Gohman22cc4cc2012-03-02 01:13:53 +000090 return Vector[Num].second;
John McCall9fbd3182011-06-15 23:37:01 +000091 }
92 return Vector[Pair.first->second].second;
93 }
94
95 std::pair<iterator, bool>
96 insert(const std::pair<KeyT, ValueT> &InsertPair) {
97 std::pair<typename MapTy::iterator, bool> Pair =
98 Map.insert(std::make_pair(InsertPair.first, size_t(0)));
99 if (Pair.second) {
Dan Gohman22cc4cc2012-03-02 01:13:53 +0000100 size_t Num = Vector.size();
101 Pair.first->second = Num;
John McCall9fbd3182011-06-15 23:37:01 +0000102 Vector.push_back(InsertPair);
Dan Gohman22cc4cc2012-03-02 01:13:53 +0000103 return std::make_pair(Vector.begin() + Num, true);
John McCall9fbd3182011-06-15 23:37:01 +0000104 }
105 return std::make_pair(Vector.begin() + Pair.first->second, false);
106 }
107
Dan Gohman22cc4cc2012-03-02 01:13:53 +0000108 const_iterator find(const KeyT &Key) const {
John McCall9fbd3182011-06-15 23:37:01 +0000109 typename MapTy::const_iterator It = Map.find(Key);
110 if (It == Map.end()) return Vector.end();
111 return Vector.begin() + It->second;
112 }
113
114 /// blot - This is similar to erase, but instead of removing the element
115 /// from the vector, it just zeros out the key in the vector. This leaves
116 /// iterators intact, but clients must be prepared for zeroed-out keys when
117 /// iterating.
Dan Gohman22cc4cc2012-03-02 01:13:53 +0000118 void blot(const KeyT &Key) {
John McCall9fbd3182011-06-15 23:37:01 +0000119 typename MapTy::iterator It = Map.find(Key);
120 if (It == Map.end()) return;
121 Vector[It->second].first = KeyT();
122 Map.erase(It);
123 }
124
125 void clear() {
126 Map.clear();
127 Vector.clear();
128 }
129 };
130}
131
132//===----------------------------------------------------------------------===//
133// ARC Utilities.
134//===----------------------------------------------------------------------===//
135
Chandler Carruthd04a8d42012-12-03 16:50:05 +0000136#include "llvm/ADT/StringSwitch.h"
137#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +0000138#include "llvm/IR/Intrinsics.h"
139#include "llvm/IR/Module.h"
Dan Gohman0daef3d2012-05-08 23:39:44 +0000140#include "llvm/Support/CallSite.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +0000141#include "llvm/Transforms/Utils/Local.h"
Dan Gohman0daef3d2012-05-08 23:39:44 +0000142
John McCall9fbd3182011-06-15 23:37:01 +0000143namespace {
144 /// InstructionClass - A simple classification for instructions.
145 enum InstructionClass {
146 IC_Retain, ///< objc_retain
147 IC_RetainRV, ///< objc_retainAutoreleasedReturnValue
148 IC_RetainBlock, ///< objc_retainBlock
149 IC_Release, ///< objc_release
150 IC_Autorelease, ///< objc_autorelease
151 IC_AutoreleaseRV, ///< objc_autoreleaseReturnValue
152 IC_AutoreleasepoolPush, ///< objc_autoreleasePoolPush
153 IC_AutoreleasepoolPop, ///< objc_autoreleasePoolPop
154 IC_NoopCast, ///< objc_retainedObject, etc.
155 IC_FusedRetainAutorelease, ///< objc_retainAutorelease
156 IC_FusedRetainAutoreleaseRV, ///< objc_retainAutoreleaseReturnValue
157 IC_LoadWeakRetained, ///< objc_loadWeakRetained (primitive)
158 IC_StoreWeak, ///< objc_storeWeak (primitive)
159 IC_InitWeak, ///< objc_initWeak (derived)
160 IC_LoadWeak, ///< objc_loadWeak (derived)
161 IC_MoveWeak, ///< objc_moveWeak (derived)
162 IC_CopyWeak, ///< objc_copyWeak (derived)
163 IC_DestroyWeak, ///< objc_destroyWeak (derived)
Dan Gohman44234772012-04-13 18:28:58 +0000164 IC_StoreStrong, ///< objc_storeStrong (derived)
John McCall9fbd3182011-06-15 23:37:01 +0000165 IC_CallOrUser, ///< could call objc_release and/or "use" pointers
166 IC_Call, ///< could call objc_release
167 IC_User, ///< could "use" a pointer
168 IC_None ///< anything else
169 };
170}
171
172/// IsPotentialUse - Test whether the given value is possible a
173/// reference-counted pointer.
174static bool IsPotentialUse(const Value *Op) {
175 // Pointers to static or stack storage are not reference-counted pointers.
176 if (isa<Constant>(Op) || isa<AllocaInst>(Op))
177 return false;
178 // Special arguments are not reference-counted.
179 if (const Argument *Arg = dyn_cast<Argument>(Op))
180 if (Arg->hasByValAttr() ||
181 Arg->hasNestAttr() ||
182 Arg->hasStructRetAttr())
183 return false;
Dan Gohmanf9096e42011-12-14 19:10:53 +0000184 // Only consider values with pointer types.
185 // It seemes intuitive to exclude function pointer types as well, since
186 // functions are never reference-counted, however clang occasionally
187 // bitcasts reference-counted pointers to function-pointer type
188 // temporarily.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000189 PointerType *Ty = dyn_cast<PointerType>(Op->getType());
Dan Gohmanf9096e42011-12-14 19:10:53 +0000190 if (!Ty)
John McCall9fbd3182011-06-15 23:37:01 +0000191 return false;
192 // Conservatively assume anything else is a potential use.
193 return true;
194}
195
196/// GetCallSiteClass - Helper for GetInstructionClass. Determines what kind
197/// of construct CS is.
198static InstructionClass GetCallSiteClass(ImmutableCallSite CS) {
199 for (ImmutableCallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
200 I != E; ++I)
201 if (IsPotentialUse(*I))
202 return CS.onlyReadsMemory() ? IC_User : IC_CallOrUser;
203
204 return CS.onlyReadsMemory() ? IC_None : IC_Call;
205}
206
207/// GetFunctionClass - Determine if F is one of the special known Functions.
208/// If it isn't, return IC_CallOrUser.
209static InstructionClass GetFunctionClass(const Function *F) {
210 Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
211
212 // No arguments.
213 if (AI == AE)
214 return StringSwitch<InstructionClass>(F->getName())
215 .Case("objc_autoreleasePoolPush", IC_AutoreleasepoolPush)
216 .Default(IC_CallOrUser);
217
218 // One argument.
219 const Argument *A0 = AI++;
220 if (AI == AE)
221 // Argument is a pointer.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000222 if (PointerType *PTy = dyn_cast<PointerType>(A0->getType())) {
223 Type *ETy = PTy->getElementType();
John McCall9fbd3182011-06-15 23:37:01 +0000224 // Argument is i8*.
225 if (ETy->isIntegerTy(8))
226 return StringSwitch<InstructionClass>(F->getName())
227 .Case("objc_retain", IC_Retain)
228 .Case("objc_retainAutoreleasedReturnValue", IC_RetainRV)
229 .Case("objc_retainBlock", IC_RetainBlock)
230 .Case("objc_release", IC_Release)
231 .Case("objc_autorelease", IC_Autorelease)
232 .Case("objc_autoreleaseReturnValue", IC_AutoreleaseRV)
233 .Case("objc_autoreleasePoolPop", IC_AutoreleasepoolPop)
234 .Case("objc_retainedObject", IC_NoopCast)
235 .Case("objc_unretainedObject", IC_NoopCast)
236 .Case("objc_unretainedPointer", IC_NoopCast)
237 .Case("objc_retain_autorelease", IC_FusedRetainAutorelease)
238 .Case("objc_retainAutorelease", IC_FusedRetainAutorelease)
239 .Case("objc_retainAutoreleaseReturnValue",IC_FusedRetainAutoreleaseRV)
240 .Default(IC_CallOrUser);
241
242 // Argument is i8**
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000243 if (PointerType *Pte = dyn_cast<PointerType>(ETy))
John McCall9fbd3182011-06-15 23:37:01 +0000244 if (Pte->getElementType()->isIntegerTy(8))
245 return StringSwitch<InstructionClass>(F->getName())
246 .Case("objc_loadWeakRetained", IC_LoadWeakRetained)
247 .Case("objc_loadWeak", IC_LoadWeak)
248 .Case("objc_destroyWeak", IC_DestroyWeak)
249 .Default(IC_CallOrUser);
250 }
251
252 // Two arguments, first is i8**.
253 const Argument *A1 = AI++;
254 if (AI == AE)
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000255 if (PointerType *PTy = dyn_cast<PointerType>(A0->getType()))
256 if (PointerType *Pte = dyn_cast<PointerType>(PTy->getElementType()))
John McCall9fbd3182011-06-15 23:37:01 +0000257 if (Pte->getElementType()->isIntegerTy(8))
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000258 if (PointerType *PTy1 = dyn_cast<PointerType>(A1->getType())) {
259 Type *ETy1 = PTy1->getElementType();
John McCall9fbd3182011-06-15 23:37:01 +0000260 // Second argument is i8*
261 if (ETy1->isIntegerTy(8))
262 return StringSwitch<InstructionClass>(F->getName())
263 .Case("objc_storeWeak", IC_StoreWeak)
264 .Case("objc_initWeak", IC_InitWeak)
Dan Gohman44234772012-04-13 18:28:58 +0000265 .Case("objc_storeStrong", IC_StoreStrong)
John McCall9fbd3182011-06-15 23:37:01 +0000266 .Default(IC_CallOrUser);
267 // Second argument is i8**.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000268 if (PointerType *Pte1 = dyn_cast<PointerType>(ETy1))
John McCall9fbd3182011-06-15 23:37:01 +0000269 if (Pte1->getElementType()->isIntegerTy(8))
270 return StringSwitch<InstructionClass>(F->getName())
271 .Case("objc_moveWeak", IC_MoveWeak)
272 .Case("objc_copyWeak", IC_CopyWeak)
273 .Default(IC_CallOrUser);
274 }
275
276 // Anything else.
277 return IC_CallOrUser;
278}
279
280/// GetInstructionClass - Determine what kind of construct V is.
281static InstructionClass GetInstructionClass(const Value *V) {
282 if (const Instruction *I = dyn_cast<Instruction>(V)) {
283 // Any instruction other than bitcast and gep with a pointer operand have a
284 // use of an objc pointer. Bitcasts, GEPs, Selects, PHIs transfer a pointer
285 // to a subsequent use, rather than using it themselves, in this sense.
286 // As a short cut, several other opcodes are known to have no pointer
287 // operands of interest. And ret is never followed by a release, so it's
288 // not interesting to examine.
289 switch (I->getOpcode()) {
290 case Instruction::Call: {
291 const CallInst *CI = cast<CallInst>(I);
292 // Check for calls to special functions.
293 if (const Function *F = CI->getCalledFunction()) {
294 InstructionClass Class = GetFunctionClass(F);
295 if (Class != IC_CallOrUser)
296 return Class;
297
298 // None of the intrinsic functions do objc_release. For intrinsics, the
299 // only question is whether or not they may be users.
300 switch (F->getIntrinsicID()) {
John McCall9fbd3182011-06-15 23:37:01 +0000301 case Intrinsic::returnaddress: case Intrinsic::frameaddress:
302 case Intrinsic::stacksave: case Intrinsic::stackrestore:
303 case Intrinsic::vastart: case Intrinsic::vacopy: case Intrinsic::vaend:
Dan Gohman0daef3d2012-05-08 23:39:44 +0000304 case Intrinsic::objectsize: case Intrinsic::prefetch:
305 case Intrinsic::stackprotector:
306 case Intrinsic::eh_return_i32: case Intrinsic::eh_return_i64:
307 case Intrinsic::eh_typeid_for: case Intrinsic::eh_dwarf_cfa:
308 case Intrinsic::eh_sjlj_lsda: case Intrinsic::eh_sjlj_functioncontext:
309 case Intrinsic::init_trampoline: case Intrinsic::adjust_trampoline:
310 case Intrinsic::lifetime_start: case Intrinsic::lifetime_end:
311 case Intrinsic::invariant_start: case Intrinsic::invariant_end:
John McCall9fbd3182011-06-15 23:37:01 +0000312 // Don't let dbg info affect our results.
313 case Intrinsic::dbg_declare: case Intrinsic::dbg_value:
314 // Short cut: Some intrinsics obviously don't use ObjC pointers.
315 return IC_None;
316 default:
Dan Gohman0daef3d2012-05-08 23:39:44 +0000317 break;
John McCall9fbd3182011-06-15 23:37:01 +0000318 }
319 }
320 return GetCallSiteClass(CI);
321 }
322 case Instruction::Invoke:
323 return GetCallSiteClass(cast<InvokeInst>(I));
324 case Instruction::BitCast:
325 case Instruction::GetElementPtr:
326 case Instruction::Select: case Instruction::PHI:
327 case Instruction::Ret: case Instruction::Br:
328 case Instruction::Switch: case Instruction::IndirectBr:
329 case Instruction::Alloca: case Instruction::VAArg:
330 case Instruction::Add: case Instruction::FAdd:
331 case Instruction::Sub: case Instruction::FSub:
332 case Instruction::Mul: case Instruction::FMul:
333 case Instruction::SDiv: case Instruction::UDiv: case Instruction::FDiv:
334 case Instruction::SRem: case Instruction::URem: case Instruction::FRem:
335 case Instruction::Shl: case Instruction::LShr: case Instruction::AShr:
336 case Instruction::And: case Instruction::Or: case Instruction::Xor:
337 case Instruction::SExt: case Instruction::ZExt: case Instruction::Trunc:
338 case Instruction::IntToPtr: case Instruction::FCmp:
339 case Instruction::FPTrunc: case Instruction::FPExt:
340 case Instruction::FPToUI: case Instruction::FPToSI:
341 case Instruction::UIToFP: case Instruction::SIToFP:
342 case Instruction::InsertElement: case Instruction::ExtractElement:
343 case Instruction::ShuffleVector:
344 case Instruction::ExtractValue:
345 break;
346 case Instruction::ICmp:
347 // Comparing a pointer with null, or any other constant, isn't an
348 // interesting use, because we don't care what the pointer points to, or
349 // about the values of any other dynamic reference-counted pointers.
350 if (IsPotentialUse(I->getOperand(1)))
351 return IC_User;
352 break;
353 default:
354 // For anything else, check all the operands.
Dan Gohmand4464602011-08-22 17:29:37 +0000355 // Note that this includes both operands of a Store: while the first
356 // operand isn't actually being dereferenced, it is being stored to
357 // memory where we can no longer track who might read it and dereference
358 // it, so we have to consider it potentially used.
John McCall9fbd3182011-06-15 23:37:01 +0000359 for (User::const_op_iterator OI = I->op_begin(), OE = I->op_end();
360 OI != OE; ++OI)
361 if (IsPotentialUse(*OI))
362 return IC_User;
363 }
364 }
365
366 // Otherwise, it's totally inert for ARC purposes.
367 return IC_None;
368}
369
370/// GetBasicInstructionClass - Determine what kind of construct V is. This is
371/// similar to GetInstructionClass except that it only detects objc runtine
372/// calls. This allows it to be faster.
373static InstructionClass GetBasicInstructionClass(const Value *V) {
374 if (const CallInst *CI = dyn_cast<CallInst>(V)) {
375 if (const Function *F = CI->getCalledFunction())
376 return GetFunctionClass(F);
377 // Otherwise, be conservative.
378 return IC_CallOrUser;
379 }
380
381 // Otherwise, be conservative.
Dan Gohman2f6263c2012-01-17 20:52:24 +0000382 return isa<InvokeInst>(V) ? IC_CallOrUser : IC_User;
John McCall9fbd3182011-06-15 23:37:01 +0000383}
384
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +0000385/// IsRetain - Test if the given class is objc_retain or
John McCall9fbd3182011-06-15 23:37:01 +0000386/// equivalent.
387static bool IsRetain(InstructionClass Class) {
388 return Class == IC_Retain ||
389 Class == IC_RetainRV;
390}
391
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +0000392/// IsAutorelease - Test if the given class is objc_autorelease or
John McCall9fbd3182011-06-15 23:37:01 +0000393/// equivalent.
394static bool IsAutorelease(InstructionClass Class) {
395 return Class == IC_Autorelease ||
396 Class == IC_AutoreleaseRV;
397}
398
399/// IsForwarding - Test if the given class represents instructions which return
400/// their argument verbatim.
401static bool IsForwarding(InstructionClass Class) {
402 // objc_retainBlock technically doesn't always return its argument
403 // verbatim, but it doesn't matter for our purposes here.
404 return Class == IC_Retain ||
405 Class == IC_RetainRV ||
406 Class == IC_Autorelease ||
407 Class == IC_AutoreleaseRV ||
408 Class == IC_RetainBlock ||
409 Class == IC_NoopCast;
410}
411
412/// IsNoopOnNull - Test if the given class represents instructions which do
413/// nothing if passed a null pointer.
414static bool IsNoopOnNull(InstructionClass Class) {
415 return Class == IC_Retain ||
416 Class == IC_RetainRV ||
417 Class == IC_Release ||
418 Class == IC_Autorelease ||
419 Class == IC_AutoreleaseRV ||
420 Class == IC_RetainBlock;
421}
422
423/// IsAlwaysTail - Test if the given class represents instructions which are
424/// always safe to mark with the "tail" keyword.
425static bool IsAlwaysTail(InstructionClass Class) {
426 // IC_RetainBlock may be given a stack argument.
427 return Class == IC_Retain ||
428 Class == IC_RetainRV ||
429 Class == IC_Autorelease ||
430 Class == IC_AutoreleaseRV;
431}
432
433/// IsNoThrow - Test if the given class represents instructions which are always
434/// safe to mark with the nounwind attribute..
435static bool IsNoThrow(InstructionClass Class) {
Dan Gohman1d2fd752011-09-14 18:33:34 +0000436 // objc_retainBlock is not nounwind because it calls user copy constructors
437 // which could theoretically throw.
John McCall9fbd3182011-06-15 23:37:01 +0000438 return Class == IC_Retain ||
439 Class == IC_RetainRV ||
John McCall9fbd3182011-06-15 23:37:01 +0000440 Class == IC_Release ||
441 Class == IC_Autorelease ||
442 Class == IC_AutoreleaseRV ||
443 Class == IC_AutoreleasepoolPush ||
444 Class == IC_AutoreleasepoolPop;
445}
446
Dan Gohman447989c2012-04-27 18:56:31 +0000447/// EraseInstruction - Erase the given instruction. Many ObjC calls return their
John McCall9fbd3182011-06-15 23:37:01 +0000448/// argument verbatim, so if it's such a call and the return value has users,
449/// replace them with the argument value.
450static void EraseInstruction(Instruction *CI) {
451 Value *OldArg = cast<CallInst>(CI)->getArgOperand(0);
452
453 bool Unused = CI->use_empty();
454
455 if (!Unused) {
456 // Replace the return value with the argument.
457 assert(IsForwarding(GetBasicInstructionClass(CI)) &&
458 "Can't delete non-forwarding instruction with users!");
459 CI->replaceAllUsesWith(OldArg);
460 }
461
462 CI->eraseFromParent();
463
464 if (Unused)
465 RecursivelyDeleteTriviallyDeadInstructions(OldArg);
466}
467
468/// GetUnderlyingObjCPtr - This is a wrapper around getUnderlyingObject which
469/// also knows how to look through objc_retain and objc_autorelease calls, which
470/// we know to return their argument verbatim.
471static const Value *GetUnderlyingObjCPtr(const Value *V) {
472 for (;;) {
473 V = GetUnderlyingObject(V);
474 if (!IsForwarding(GetBasicInstructionClass(V)))
475 break;
476 V = cast<CallInst>(V)->getArgOperand(0);
477 }
478
479 return V;
480}
481
482/// StripPointerCastsAndObjCCalls - This is a wrapper around
483/// Value::stripPointerCasts which also knows how to look through objc_retain
484/// and objc_autorelease calls, which we know to return their argument verbatim.
485static const Value *StripPointerCastsAndObjCCalls(const Value *V) {
486 for (;;) {
487 V = V->stripPointerCasts();
488 if (!IsForwarding(GetBasicInstructionClass(V)))
489 break;
490 V = cast<CallInst>(V)->getArgOperand(0);
491 }
492 return V;
493}
494
495/// StripPointerCastsAndObjCCalls - This is a wrapper around
496/// Value::stripPointerCasts which also knows how to look through objc_retain
497/// and objc_autorelease calls, which we know to return their argument verbatim.
498static Value *StripPointerCastsAndObjCCalls(Value *V) {
499 for (;;) {
500 V = V->stripPointerCasts();
501 if (!IsForwarding(GetBasicInstructionClass(V)))
502 break;
503 V = cast<CallInst>(V)->getArgOperand(0);
504 }
505 return V;
506}
507
508/// GetObjCArg - Assuming the given instruction is one of the special calls such
509/// as objc_retain or objc_release, return the argument value, stripped of no-op
510/// casts and forwarding calls.
511static Value *GetObjCArg(Value *Inst) {
512 return StripPointerCastsAndObjCCalls(cast<CallInst>(Inst)->getArgOperand(0));
513}
514
515/// IsObjCIdentifiedObject - This is similar to AliasAnalysis'
516/// isObjCIdentifiedObject, except that it uses special knowledge of
517/// ObjC conventions...
518static bool IsObjCIdentifiedObject(const Value *V) {
519 // Assume that call results and arguments have their own "provenance".
520 // Constants (including GlobalVariables) and Allocas are never
521 // reference-counted.
522 if (isa<CallInst>(V) || isa<InvokeInst>(V) ||
523 isa<Argument>(V) || isa<Constant>(V) ||
524 isa<AllocaInst>(V))
525 return true;
526
527 if (const LoadInst *LI = dyn_cast<LoadInst>(V)) {
528 const Value *Pointer =
529 StripPointerCastsAndObjCCalls(LI->getPointerOperand());
530 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(Pointer)) {
Dan Gohman1b31ea82011-08-22 17:29:11 +0000531 // A constant pointer can't be pointing to an object on the heap. It may
532 // be reference-counted, but it won't be deleted.
533 if (GV->isConstant())
534 return true;
John McCall9fbd3182011-06-15 23:37:01 +0000535 StringRef Name = GV->getName();
536 // These special variables are known to hold values which are not
537 // reference-counted pointers.
538 if (Name.startswith("\01L_OBJC_SELECTOR_REFERENCES_") ||
539 Name.startswith("\01L_OBJC_CLASSLIST_REFERENCES_") ||
540 Name.startswith("\01L_OBJC_CLASSLIST_SUP_REFS_$_") ||
541 Name.startswith("\01L_OBJC_METH_VAR_NAME_") ||
542 Name.startswith("\01l_objc_msgSend_fixup_"))
543 return true;
544 }
545 }
546
547 return false;
548}
549
550/// FindSingleUseIdentifiedObject - This is similar to
551/// StripPointerCastsAndObjCCalls but it stops as soon as it finds a value
552/// with multiple uses.
553static const Value *FindSingleUseIdentifiedObject(const Value *Arg) {
554 if (Arg->hasOneUse()) {
555 if (const BitCastInst *BC = dyn_cast<BitCastInst>(Arg))
556 return FindSingleUseIdentifiedObject(BC->getOperand(0));
557 if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Arg))
558 if (GEP->hasAllZeroIndices())
559 return FindSingleUseIdentifiedObject(GEP->getPointerOperand());
560 if (IsForwarding(GetBasicInstructionClass(Arg)))
561 return FindSingleUseIdentifiedObject(
562 cast<CallInst>(Arg)->getArgOperand(0));
563 if (!IsObjCIdentifiedObject(Arg))
564 return 0;
565 return Arg;
566 }
567
Dan Gohman0daef3d2012-05-08 23:39:44 +0000568 // If we found an identifiable object but it has multiple uses, but they are
569 // trivial uses, we can still consider this to be a single-use value.
John McCall9fbd3182011-06-15 23:37:01 +0000570 if (IsObjCIdentifiedObject(Arg)) {
571 for (Value::const_use_iterator UI = Arg->use_begin(), UE = Arg->use_end();
572 UI != UE; ++UI) {
573 const User *U = *UI;
574 if (!U->use_empty() || StripPointerCastsAndObjCCalls(U) != Arg)
575 return 0;
576 }
577
578 return Arg;
579 }
580
581 return 0;
582}
583
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +0000584/// ModuleHasARC - Test if the given module looks interesting to run ARC
585/// optimization on.
586static bool ModuleHasARC(const Module &M) {
587 return
588 M.getNamedValue("objc_retain") ||
589 M.getNamedValue("objc_release") ||
590 M.getNamedValue("objc_autorelease") ||
591 M.getNamedValue("objc_retainAutoreleasedReturnValue") ||
592 M.getNamedValue("objc_retainBlock") ||
593 M.getNamedValue("objc_autoreleaseReturnValue") ||
594 M.getNamedValue("objc_autoreleasePoolPush") ||
595 M.getNamedValue("objc_loadWeakRetained") ||
596 M.getNamedValue("objc_loadWeak") ||
597 M.getNamedValue("objc_destroyWeak") ||
598 M.getNamedValue("objc_storeWeak") ||
599 M.getNamedValue("objc_initWeak") ||
600 M.getNamedValue("objc_moveWeak") ||
601 M.getNamedValue("objc_copyWeak") ||
602 M.getNamedValue("objc_retainedObject") ||
603 M.getNamedValue("objc_unretainedObject") ||
604 M.getNamedValue("objc_unretainedPointer");
605}
606
Dan Gohman79522dc2012-01-13 00:39:07 +0000607/// DoesObjCBlockEscape - Test whether the given pointer, which is an
608/// Objective C block pointer, does not "escape". This differs from regular
609/// escape analysis in that a use as an argument to a call is not considered
610/// an escape.
611static bool DoesObjCBlockEscape(const Value *BlockPtr) {
612 // Walk the def-use chains.
613 SmallVector<const Value *, 4> Worklist;
614 Worklist.push_back(BlockPtr);
615 do {
616 const Value *V = Worklist.pop_back_val();
617 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
618 UI != UE; ++UI) {
619 const User *UUser = *UI;
620 // Special - Use by a call (callee or argument) is not considered
621 // to be an escape.
Dan Gohman44234772012-04-13 18:28:58 +0000622 switch (GetBasicInstructionClass(UUser)) {
623 case IC_StoreWeak:
624 case IC_InitWeak:
625 case IC_StoreStrong:
626 case IC_Autorelease:
627 case IC_AutoreleaseRV:
628 // These special functions make copies of their pointer arguments.
629 return true;
630 case IC_User:
631 case IC_None:
632 // Use by an instruction which copies the value is an escape if the
633 // result is an escape.
634 if (isa<BitCastInst>(UUser) || isa<GetElementPtrInst>(UUser) ||
635 isa<PHINode>(UUser) || isa<SelectInst>(UUser)) {
636 Worklist.push_back(UUser);
637 continue;
638 }
639 // Use by a load is not an escape.
640 if (isa<LoadInst>(UUser))
641 continue;
642 // Use by a store is not an escape if the use is the address.
643 if (const StoreInst *SI = dyn_cast<StoreInst>(UUser))
644 if (V != SI->getValueOperand())
645 continue;
646 break;
647 default:
648 // Regular calls and other stuff are not considered escapes.
Dan Gohman79522dc2012-01-13 00:39:07 +0000649 continue;
650 }
Dan Gohmana3b08d62012-02-13 22:57:02 +0000651 // Otherwise, conservatively assume an escape.
Dan Gohman79522dc2012-01-13 00:39:07 +0000652 return true;
653 }
654 } while (!Worklist.empty());
655
656 // No escapes found.
657 return false;
658}
659
John McCall9fbd3182011-06-15 23:37:01 +0000660//===----------------------------------------------------------------------===//
661// ARC AliasAnalysis.
662//===----------------------------------------------------------------------===//
663
John McCall9fbd3182011-06-15 23:37:01 +0000664#include "llvm/Analysis/AliasAnalysis.h"
665#include "llvm/Analysis/Passes.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +0000666#include "llvm/Pass.h"
John McCall9fbd3182011-06-15 23:37:01 +0000667
668namespace {
669 /// ObjCARCAliasAnalysis - This is a simple alias analysis
670 /// implementation that uses knowledge of ARC constructs to answer queries.
671 ///
672 /// TODO: This class could be generalized to know about other ObjC-specific
673 /// tricks. Such as knowing that ivars in the non-fragile ABI are non-aliasing
674 /// even though their offsets are dynamic.
675 class ObjCARCAliasAnalysis : public ImmutablePass,
676 public AliasAnalysis {
677 public:
678 static char ID; // Class identification, replacement for typeinfo
679 ObjCARCAliasAnalysis() : ImmutablePass(ID) {
680 initializeObjCARCAliasAnalysisPass(*PassRegistry::getPassRegistry());
681 }
682
683 private:
684 virtual void initializePass() {
685 InitializeAliasAnalysis(this);
686 }
687
688 /// getAdjustedAnalysisPointer - This method is used when a pass implements
689 /// an analysis interface through multiple inheritance. If needed, it
690 /// should override this to adjust the this pointer as needed for the
691 /// specified pass info.
692 virtual void *getAdjustedAnalysisPointer(const void *PI) {
693 if (PI == &AliasAnalysis::ID)
Dan Gohman447989c2012-04-27 18:56:31 +0000694 return static_cast<AliasAnalysis *>(this);
John McCall9fbd3182011-06-15 23:37:01 +0000695 return this;
696 }
697
698 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
699 virtual AliasResult alias(const Location &LocA, const Location &LocB);
700 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
701 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS);
702 virtual ModRefBehavior getModRefBehavior(const Function *F);
703 virtual ModRefResult getModRefInfo(ImmutableCallSite CS,
704 const Location &Loc);
705 virtual ModRefResult getModRefInfo(ImmutableCallSite CS1,
706 ImmutableCallSite CS2);
707 };
708} // End of anonymous namespace
709
710// Register this pass...
711char ObjCARCAliasAnalysis::ID = 0;
712INITIALIZE_AG_PASS(ObjCARCAliasAnalysis, AliasAnalysis, "objc-arc-aa",
713 "ObjC-ARC-Based Alias Analysis", false, true, false)
714
715ImmutablePass *llvm::createObjCARCAliasAnalysisPass() {
716 return new ObjCARCAliasAnalysis();
717}
718
719void
720ObjCARCAliasAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
721 AU.setPreservesAll();
722 AliasAnalysis::getAnalysisUsage(AU);
723}
724
725AliasAnalysis::AliasResult
726ObjCARCAliasAnalysis::alias(const Location &LocA, const Location &LocB) {
727 if (!EnableARCOpts)
728 return AliasAnalysis::alias(LocA, LocB);
729
730 // First, strip off no-ops, including ObjC-specific no-ops, and try making a
731 // precise alias query.
732 const Value *SA = StripPointerCastsAndObjCCalls(LocA.Ptr);
733 const Value *SB = StripPointerCastsAndObjCCalls(LocB.Ptr);
734 AliasResult Result =
735 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.TBAATag),
736 Location(SB, LocB.Size, LocB.TBAATag));
737 if (Result != MayAlias)
738 return Result;
739
740 // If that failed, climb to the underlying object, including climbing through
741 // ObjC-specific no-ops, and try making an imprecise alias query.
742 const Value *UA = GetUnderlyingObjCPtr(SA);
743 const Value *UB = GetUnderlyingObjCPtr(SB);
744 if (UA != SA || UB != SB) {
745 Result = AliasAnalysis::alias(Location(UA), Location(UB));
746 // We can't use MustAlias or PartialAlias results here because
747 // GetUnderlyingObjCPtr may return an offsetted pointer value.
748 if (Result == NoAlias)
749 return NoAlias;
750 }
751
752 // If that failed, fail. We don't need to chain here, since that's covered
753 // by the earlier precise query.
754 return MayAlias;
755}
756
757bool
758ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
759 bool OrLocal) {
760 if (!EnableARCOpts)
761 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
762
763 // First, strip off no-ops, including ObjC-specific no-ops, and try making
764 // a precise alias query.
765 const Value *S = StripPointerCastsAndObjCCalls(Loc.Ptr);
766 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
767 OrLocal))
768 return true;
769
770 // If that failed, climb to the underlying object, including climbing through
771 // ObjC-specific no-ops, and try making an imprecise alias query.
772 const Value *U = GetUnderlyingObjCPtr(S);
773 if (U != S)
774 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
775
776 // If that failed, fail. We don't need to chain here, since that's covered
777 // by the earlier precise query.
778 return false;
779}
780
781AliasAnalysis::ModRefBehavior
782ObjCARCAliasAnalysis::getModRefBehavior(ImmutableCallSite CS) {
783 // We have nothing to do. Just chain to the next AliasAnalysis.
784 return AliasAnalysis::getModRefBehavior(CS);
785}
786
787AliasAnalysis::ModRefBehavior
788ObjCARCAliasAnalysis::getModRefBehavior(const Function *F) {
789 if (!EnableARCOpts)
790 return AliasAnalysis::getModRefBehavior(F);
791
792 switch (GetFunctionClass(F)) {
793 case IC_NoopCast:
794 return DoesNotAccessMemory;
795 default:
796 break;
797 }
798
799 return AliasAnalysis::getModRefBehavior(F);
800}
801
802AliasAnalysis::ModRefResult
803ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc) {
804 if (!EnableARCOpts)
805 return AliasAnalysis::getModRefInfo(CS, Loc);
806
807 switch (GetBasicInstructionClass(CS.getInstruction())) {
808 case IC_Retain:
809 case IC_RetainRV:
John McCall9fbd3182011-06-15 23:37:01 +0000810 case IC_Autorelease:
811 case IC_AutoreleaseRV:
812 case IC_NoopCast:
813 case IC_AutoreleasepoolPush:
814 case IC_FusedRetainAutorelease:
815 case IC_FusedRetainAutoreleaseRV:
816 // These functions don't access any memory visible to the compiler.
Benjamin Kramerd9b0b022012-06-02 10:20:22 +0000817 // Note that this doesn't include objc_retainBlock, because it updates
Dan Gohman21104822011-09-14 18:13:00 +0000818 // pointers when it copies block data.
John McCall9fbd3182011-06-15 23:37:01 +0000819 return NoModRef;
820 default:
821 break;
822 }
823
824 return AliasAnalysis::getModRefInfo(CS, Loc);
825}
826
827AliasAnalysis::ModRefResult
828ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS1,
829 ImmutableCallSite CS2) {
830 // TODO: Theoretically we could check for dependencies between objc_* calls
831 // and OnlyAccessesArgumentPointees calls or other well-behaved calls.
832 return AliasAnalysis::getModRefInfo(CS1, CS2);
833}
834
835//===----------------------------------------------------------------------===//
836// ARC expansion.
837//===----------------------------------------------------------------------===//
838
839#include "llvm/Support/InstIterator.h"
840#include "llvm/Transforms/Scalar.h"
841
842namespace {
843 /// ObjCARCExpand - Early ARC transformations.
844 class ObjCARCExpand : public FunctionPass {
845 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +0000846 virtual bool doInitialization(Module &M);
John McCall9fbd3182011-06-15 23:37:01 +0000847 virtual bool runOnFunction(Function &F);
848
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +0000849 /// Run - A flag indicating whether this optimization pass should run.
850 bool Run;
851
John McCall9fbd3182011-06-15 23:37:01 +0000852 public:
853 static char ID;
854 ObjCARCExpand() : FunctionPass(ID) {
855 initializeObjCARCExpandPass(*PassRegistry::getPassRegistry());
856 }
857 };
858}
859
860char ObjCARCExpand::ID = 0;
861INITIALIZE_PASS(ObjCARCExpand,
862 "objc-arc-expand", "ObjC ARC expansion", false, false)
863
864Pass *llvm::createObjCARCExpandPass() {
865 return new ObjCARCExpand();
866}
867
868void ObjCARCExpand::getAnalysisUsage(AnalysisUsage &AU) const {
869 AU.setPreservesCFG();
870}
871
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +0000872bool ObjCARCExpand::doInitialization(Module &M) {
873 Run = ModuleHasARC(M);
874 return false;
875}
876
John McCall9fbd3182011-06-15 23:37:01 +0000877bool ObjCARCExpand::runOnFunction(Function &F) {
878 if (!EnableARCOpts)
879 return false;
880
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +0000881 // If nothing in the Module uses ARC, don't do anything.
882 if (!Run)
883 return false;
884
John McCall9fbd3182011-06-15 23:37:01 +0000885 bool Changed = false;
886
887 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ++I) {
888 Instruction *Inst = &*I;
Michael Gottesman8f22c8b2013-01-01 16:05:48 +0000889
890 DEBUG(dbgs() << "ObjCARCExpand: Visiting: " << *Inst << "\n");
891
John McCall9fbd3182011-06-15 23:37:01 +0000892 switch (GetBasicInstructionClass(Inst)) {
893 case IC_Retain:
894 case IC_RetainRV:
895 case IC_Autorelease:
896 case IC_AutoreleaseRV:
897 case IC_FusedRetainAutorelease:
Michael Gottesmana6e23cc2013-01-01 16:05:54 +0000898 case IC_FusedRetainAutoreleaseRV: {
John McCall9fbd3182011-06-15 23:37:01 +0000899 // These calls return their argument verbatim, as a low-level
900 // optimization. However, this makes high-level optimizations
901 // harder. Undo any uses of this optimization that the front-end
Dan Gohmand6bf2012012-04-13 18:57:48 +0000902 // emitted here. We'll redo them in the contract pass.
John McCall9fbd3182011-06-15 23:37:01 +0000903 Changed = true;
Michael Gottesmana6e23cc2013-01-01 16:05:54 +0000904 Value *Value = cast<CallInst>(Inst)->getArgOperand(0);
905 DEBUG(dbgs() << "ObjCARCExpand: Old = " << *Inst << "\n"
906 " New = " << *Value << "\n");
907 Inst->replaceAllUsesWith(Value);
John McCall9fbd3182011-06-15 23:37:01 +0000908 break;
Michael Gottesmana6e23cc2013-01-01 16:05:54 +0000909 }
John McCall9fbd3182011-06-15 23:37:01 +0000910 default:
911 break;
912 }
913 }
Michael Gottesman8f22c8b2013-01-01 16:05:48 +0000914
Michael Gottesmanec21e2a2013-01-03 08:09:27 +0000915 DEBUG(dbgs() << "ObjCARCExpand: Finished List.\n\n");
Michael Gottesman8f22c8b2013-01-01 16:05:48 +0000916
John McCall9fbd3182011-06-15 23:37:01 +0000917 return Changed;
918}
919
920//===----------------------------------------------------------------------===//
Dan Gohman2f6263c2012-01-17 20:52:24 +0000921// ARC autorelease pool elimination.
922//===----------------------------------------------------------------------===//
923
Dan Gohman0daef3d2012-05-08 23:39:44 +0000924#include "llvm/ADT/STLExtras.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +0000925#include "llvm/IR/Constants.h"
Dan Gohman1dae3e92012-01-18 21:19:38 +0000926
Dan Gohman2f6263c2012-01-17 20:52:24 +0000927namespace {
928 /// ObjCARCAPElim - Autorelease pool elimination.
929 class ObjCARCAPElim : public ModulePass {
930 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
931 virtual bool runOnModule(Module &M);
932
Dan Gohman447989c2012-04-27 18:56:31 +0000933 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
934 static bool OptimizeBB(BasicBlock *BB);
Dan Gohman2f6263c2012-01-17 20:52:24 +0000935
936 public:
937 static char ID;
938 ObjCARCAPElim() : ModulePass(ID) {
939 initializeObjCARCAPElimPass(*PassRegistry::getPassRegistry());
940 }
941 };
942}
943
944char ObjCARCAPElim::ID = 0;
945INITIALIZE_PASS(ObjCARCAPElim,
946 "objc-arc-apelim",
947 "ObjC ARC autorelease pool elimination",
948 false, false)
949
950Pass *llvm::createObjCARCAPElimPass() {
951 return new ObjCARCAPElim();
952}
953
954void ObjCARCAPElim::getAnalysisUsage(AnalysisUsage &AU) const {
955 AU.setPreservesCFG();
956}
957
958/// MayAutorelease - Interprocedurally determine if calls made by the
959/// given call site can possibly produce autoreleases.
Dan Gohman447989c2012-04-27 18:56:31 +0000960bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) {
961 if (const Function *Callee = CS.getCalledFunction()) {
Dan Gohman2f6263c2012-01-17 20:52:24 +0000962 if (Callee->isDeclaration() || Callee->mayBeOverridden())
963 return true;
Dan Gohman447989c2012-04-27 18:56:31 +0000964 for (Function::const_iterator I = Callee->begin(), E = Callee->end();
Dan Gohman2f6263c2012-01-17 20:52:24 +0000965 I != E; ++I) {
Dan Gohman447989c2012-04-27 18:56:31 +0000966 const BasicBlock *BB = I;
967 for (BasicBlock::const_iterator J = BB->begin(), F = BB->end();
968 J != F; ++J)
969 if (ImmutableCallSite JCS = ImmutableCallSite(J))
Dan Gohman2f77bbd2012-01-18 21:24:45 +0000970 // This recursion depth limit is arbitrary. It's just great
971 // enough to cover known interesting testcases.
972 if (Depth < 3 &&
973 !JCS.onlyReadsMemory() &&
974 MayAutorelease(JCS, Depth + 1))
Dan Gohman2f6263c2012-01-17 20:52:24 +0000975 return true;
976 }
977 return false;
978 }
979
980 return true;
981}
982
983bool ObjCARCAPElim::OptimizeBB(BasicBlock *BB) {
984 bool Changed = false;
985
986 Instruction *Push = 0;
987 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
988 Instruction *Inst = I++;
989 switch (GetBasicInstructionClass(Inst)) {
990 case IC_AutoreleasepoolPush:
991 Push = Inst;
992 break;
993 case IC_AutoreleasepoolPop:
994 // If this pop matches a push and nothing in between can autorelease,
995 // zap the pair.
996 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
997 Changed = true;
Michael Gottesman5c0ae472013-01-04 21:29:57 +0000998 DEBUG(dbgs() << "ObjCARCAPElim::OptimizeBB: Zapping push pop autorelease pair:\n"
Michael Gottesmandf379f42013-01-03 08:09:17 +0000999 << " Pop: " << *Inst << "\n"
1000 << " Push: " << *Push << "\n");
Dan Gohman2f6263c2012-01-17 20:52:24 +00001001 Inst->eraseFromParent();
1002 Push->eraseFromParent();
1003 }
1004 Push = 0;
1005 break;
1006 case IC_CallOrUser:
Dan Gohman447989c2012-04-27 18:56:31 +00001007 if (MayAutorelease(ImmutableCallSite(Inst)))
Dan Gohman2f6263c2012-01-17 20:52:24 +00001008 Push = 0;
1009 break;
1010 default:
1011 break;
1012 }
1013 }
1014
1015 return Changed;
1016}
1017
1018bool ObjCARCAPElim::runOnModule(Module &M) {
1019 if (!EnableARCOpts)
1020 return false;
1021
1022 // If nothing in the Module uses ARC, don't do anything.
1023 if (!ModuleHasARC(M))
1024 return false;
1025
Dan Gohman1dae3e92012-01-18 21:19:38 +00001026 // Find the llvm.global_ctors variable, as the first step in
Dan Gohmand6bf2012012-04-13 18:57:48 +00001027 // identifying the global constructors. In theory, unnecessary autorelease
1028 // pools could occur anywhere, but in practice it's pretty rare. Global
1029 // ctors are a place where autorelease pools get inserted automatically,
1030 // so it's pretty common for them to be unnecessary, and it's pretty
1031 // profitable to eliminate them.
Dan Gohman1dae3e92012-01-18 21:19:38 +00001032 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
1033 if (!GV)
1034 return false;
1035
1036 assert(GV->hasDefinitiveInitializer() &&
1037 "llvm.global_ctors is uncooperative!");
1038
Dan Gohman2f6263c2012-01-17 20:52:24 +00001039 bool Changed = false;
1040
Dan Gohman1dae3e92012-01-18 21:19:38 +00001041 // Dig the constructor functions out of GV's initializer.
1042 ConstantArray *Init = cast<ConstantArray>(GV->getInitializer());
1043 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end();
1044 OI != OE; ++OI) {
1045 Value *Op = *OI;
1046 // llvm.global_ctors is an array of pairs where the second members
1047 // are constructor functions.
Dan Gohman3b5b2a22012-04-18 22:24:33 +00001048 Function *F = dyn_cast<Function>(cast<ConstantStruct>(Op)->getOperand(1));
1049 // If the user used a constructor function with the wrong signature and
1050 // it got bitcasted or whatever, look the other way.
1051 if (!F)
1052 continue;
Dan Gohman2f6263c2012-01-17 20:52:24 +00001053 // Only look at function definitions.
1054 if (F->isDeclaration())
1055 continue;
Dan Gohman2f6263c2012-01-17 20:52:24 +00001056 // Only look at functions with one basic block.
1057 if (llvm::next(F->begin()) != F->end())
1058 continue;
1059 // Ok, a single-block constructor function definition. Try to optimize it.
1060 Changed |= OptimizeBB(F->begin());
1061 }
1062
1063 return Changed;
1064}
1065
1066//===----------------------------------------------------------------------===//
John McCall9fbd3182011-06-15 23:37:01 +00001067// ARC optimization.
1068//===----------------------------------------------------------------------===//
1069
1070// TODO: On code like this:
1071//
1072// objc_retain(%x)
1073// stuff_that_cannot_release()
1074// objc_autorelease(%x)
1075// stuff_that_cannot_release()
1076// objc_retain(%x)
1077// stuff_that_cannot_release()
1078// objc_autorelease(%x)
1079//
1080// The second retain and autorelease can be deleted.
1081
1082// TODO: It should be possible to delete
1083// objc_autoreleasePoolPush and objc_autoreleasePoolPop
1084// pairs if nothing is actually autoreleased between them. Also, autorelease
1085// calls followed by objc_autoreleasePoolPop calls (perhaps in ObjC++ code
1086// after inlining) can be turned into plain release calls.
1087
1088// TODO: Critical-edge splitting. If the optimial insertion point is
1089// a critical edge, the current algorithm has to fail, because it doesn't
1090// know how to split edges. It should be possible to make the optimizer
1091// think in terms of edges, rather than blocks, and then split critical
1092// edges on demand.
1093
1094// TODO: OptimizeSequences could generalized to be Interprocedural.
1095
1096// TODO: Recognize that a bunch of other objc runtime calls have
1097// non-escaping arguments and non-releasing arguments, and may be
1098// non-autoreleasing.
1099
1100// TODO: Sink autorelease calls as far as possible. Unfortunately we
1101// usually can't sink them past other calls, which would be the main
1102// case where it would be useful.
1103
Dan Gohmane6d5e882011-08-19 00:26:36 +00001104// TODO: The pointer returned from objc_loadWeakRetained is retained.
1105
1106// TODO: Delete release+retain pairs (rare).
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00001107
Chandler Carruthd04a8d42012-12-03 16:50:05 +00001108#include "llvm/ADT/SmallPtrSet.h"
1109#include "llvm/ADT/Statistic.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +00001110#include "llvm/IR/LLVMContext.h"
John McCall9fbd3182011-06-15 23:37:01 +00001111#include "llvm/Support/CFG.h"
John McCall9fbd3182011-06-15 23:37:01 +00001112
1113STATISTIC(NumNoops, "Number of no-op objc calls eliminated");
1114STATISTIC(NumPartialNoops, "Number of partially no-op objc calls eliminated");
1115STATISTIC(NumAutoreleases,"Number of autoreleases converted to releases");
1116STATISTIC(NumRets, "Number of return value forwarding "
1117 "retain+autoreleaes eliminated");
1118STATISTIC(NumRRs, "Number of retain+release paths eliminated");
1119STATISTIC(NumPeeps, "Number of calls peephole-optimized");
1120
1121namespace {
1122 /// ProvenanceAnalysis - This is similar to BasicAliasAnalysis, and it
1123 /// uses many of the same techniques, except it uses special ObjC-specific
1124 /// reasoning about pointer relationships.
1125 class ProvenanceAnalysis {
1126 AliasAnalysis *AA;
1127
1128 typedef std::pair<const Value *, const Value *> ValuePairTy;
1129 typedef DenseMap<ValuePairTy, bool> CachedResultsTy;
1130 CachedResultsTy CachedResults;
1131
1132 bool relatedCheck(const Value *A, const Value *B);
1133 bool relatedSelect(const SelectInst *A, const Value *B);
1134 bool relatedPHI(const PHINode *A, const Value *B);
1135
Craig Topperc2945e42012-09-18 02:01:41 +00001136 void operator=(const ProvenanceAnalysis &) LLVM_DELETED_FUNCTION;
1137 ProvenanceAnalysis(const ProvenanceAnalysis &) LLVM_DELETED_FUNCTION;
John McCall9fbd3182011-06-15 23:37:01 +00001138
1139 public:
1140 ProvenanceAnalysis() {}
1141
1142 void setAA(AliasAnalysis *aa) { AA = aa; }
1143
1144 AliasAnalysis *getAA() const { return AA; }
1145
1146 bool related(const Value *A, const Value *B);
1147
1148 void clear() {
1149 CachedResults.clear();
1150 }
1151 };
1152}
1153
1154bool ProvenanceAnalysis::relatedSelect(const SelectInst *A, const Value *B) {
1155 // If the values are Selects with the same condition, we can do a more precise
1156 // check: just check for relations between the values on corresponding arms.
1157 if (const SelectInst *SB = dyn_cast<SelectInst>(B))
Dan Gohman447989c2012-04-27 18:56:31 +00001158 if (A->getCondition() == SB->getCondition())
1159 return related(A->getTrueValue(), SB->getTrueValue()) ||
1160 related(A->getFalseValue(), SB->getFalseValue());
John McCall9fbd3182011-06-15 23:37:01 +00001161
1162 // Check both arms of the Select node individually.
Dan Gohman447989c2012-04-27 18:56:31 +00001163 return related(A->getTrueValue(), B) ||
1164 related(A->getFalseValue(), B);
John McCall9fbd3182011-06-15 23:37:01 +00001165}
1166
1167bool ProvenanceAnalysis::relatedPHI(const PHINode *A, const Value *B) {
1168 // If the values are PHIs in the same block, we can do a more precise as well
1169 // as efficient check: just check for relations between the values on
1170 // corresponding edges.
1171 if (const PHINode *PNB = dyn_cast<PHINode>(B))
1172 if (PNB->getParent() == A->getParent()) {
1173 for (unsigned i = 0, e = A->getNumIncomingValues(); i != e; ++i)
1174 if (related(A->getIncomingValue(i),
1175 PNB->getIncomingValueForBlock(A->getIncomingBlock(i))))
1176 return true;
1177 return false;
1178 }
1179
1180 // Check each unique source of the PHI node against B.
1181 SmallPtrSet<const Value *, 4> UniqueSrc;
1182 for (unsigned i = 0, e = A->getNumIncomingValues(); i != e; ++i) {
1183 const Value *PV1 = A->getIncomingValue(i);
1184 if (UniqueSrc.insert(PV1) && related(PV1, B))
1185 return true;
1186 }
1187
1188 // All of the arms checked out.
1189 return false;
1190}
1191
1192/// isStoredObjCPointer - Test if the value of P, or any value covered by its
1193/// provenance, is ever stored within the function (not counting callees).
1194static bool isStoredObjCPointer(const Value *P) {
1195 SmallPtrSet<const Value *, 8> Visited;
1196 SmallVector<const Value *, 8> Worklist;
1197 Worklist.push_back(P);
1198 Visited.insert(P);
1199 do {
1200 P = Worklist.pop_back_val();
1201 for (Value::const_use_iterator UI = P->use_begin(), UE = P->use_end();
1202 UI != UE; ++UI) {
1203 const User *Ur = *UI;
1204 if (isa<StoreInst>(Ur)) {
1205 if (UI.getOperandNo() == 0)
1206 // The pointer is stored.
1207 return true;
1208 // The pointed is stored through.
1209 continue;
1210 }
1211 if (isa<CallInst>(Ur))
1212 // The pointer is passed as an argument, ignore this.
1213 continue;
1214 if (isa<PtrToIntInst>(P))
1215 // Assume the worst.
1216 return true;
1217 if (Visited.insert(Ur))
1218 Worklist.push_back(Ur);
1219 }
1220 } while (!Worklist.empty());
1221
1222 // Everything checked out.
1223 return false;
1224}
1225
1226bool ProvenanceAnalysis::relatedCheck(const Value *A, const Value *B) {
1227 // Skip past provenance pass-throughs.
1228 A = GetUnderlyingObjCPtr(A);
1229 B = GetUnderlyingObjCPtr(B);
1230
1231 // Quick check.
1232 if (A == B)
1233 return true;
1234
1235 // Ask regular AliasAnalysis, for a first approximation.
1236 switch (AA->alias(A, B)) {
1237 case AliasAnalysis::NoAlias:
1238 return false;
1239 case AliasAnalysis::MustAlias:
1240 case AliasAnalysis::PartialAlias:
1241 return true;
1242 case AliasAnalysis::MayAlias:
1243 break;
1244 }
1245
1246 bool AIsIdentified = IsObjCIdentifiedObject(A);
1247 bool BIsIdentified = IsObjCIdentifiedObject(B);
1248
1249 // An ObjC-Identified object can't alias a load if it is never locally stored.
1250 if (AIsIdentified) {
Dan Gohman230768b2012-09-04 23:16:20 +00001251 // Check for an obvious escape.
1252 if (isa<LoadInst>(B))
1253 return isStoredObjCPointer(A);
John McCall9fbd3182011-06-15 23:37:01 +00001254 if (BIsIdentified) {
Dan Gohman230768b2012-09-04 23:16:20 +00001255 // Check for an obvious escape.
1256 if (isa<LoadInst>(A))
1257 return isStoredObjCPointer(B);
1258 // Both pointers are identified and escapes aren't an evident problem.
1259 return false;
John McCall9fbd3182011-06-15 23:37:01 +00001260 }
Dan Gohman230768b2012-09-04 23:16:20 +00001261 } else if (BIsIdentified) {
1262 // Check for an obvious escape.
1263 if (isa<LoadInst>(A))
John McCall9fbd3182011-06-15 23:37:01 +00001264 return isStoredObjCPointer(B);
1265 }
1266
1267 // Special handling for PHI and Select.
1268 if (const PHINode *PN = dyn_cast<PHINode>(A))
1269 return relatedPHI(PN, B);
1270 if (const PHINode *PN = dyn_cast<PHINode>(B))
1271 return relatedPHI(PN, A);
1272 if (const SelectInst *S = dyn_cast<SelectInst>(A))
1273 return relatedSelect(S, B);
1274 if (const SelectInst *S = dyn_cast<SelectInst>(B))
1275 return relatedSelect(S, A);
1276
1277 // Conservative.
1278 return true;
1279}
1280
1281bool ProvenanceAnalysis::related(const Value *A, const Value *B) {
1282 // Begin by inserting a conservative value into the map. If the insertion
1283 // fails, we have the answer already. If it succeeds, leave it there until we
1284 // compute the real answer to guard against recursive queries.
1285 if (A > B) std::swap(A, B);
1286 std::pair<CachedResultsTy::iterator, bool> Pair =
1287 CachedResults.insert(std::make_pair(ValuePairTy(A, B), true));
1288 if (!Pair.second)
1289 return Pair.first->second;
1290
1291 bool Result = relatedCheck(A, B);
1292 CachedResults[ValuePairTy(A, B)] = Result;
1293 return Result;
1294}
1295
1296namespace {
1297 // Sequence - A sequence of states that a pointer may go through in which an
1298 // objc_retain and objc_release are actually needed.
1299 enum Sequence {
1300 S_None,
1301 S_Retain, ///< objc_retain(x)
1302 S_CanRelease, ///< foo(x) -- x could possibly see a ref count decrement
1303 S_Use, ///< any use of x
1304 S_Stop, ///< like S_Release, but code motion is stopped
1305 S_Release, ///< objc_release(x)
1306 S_MovableRelease ///< objc_release(x), !clang.imprecise_release
1307 };
1308}
1309
1310static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
1311 // The easy cases.
1312 if (A == B)
1313 return A;
1314 if (A == S_None || B == S_None)
1315 return S_None;
1316
John McCall9fbd3182011-06-15 23:37:01 +00001317 if (A > B) std::swap(A, B);
1318 if (TopDown) {
1319 // Choose the side which is further along in the sequence.
Dan Gohmana7f7db22011-08-12 00:26:31 +00001320 if ((A == S_Retain || A == S_CanRelease) &&
1321 (B == S_CanRelease || B == S_Use))
John McCall9fbd3182011-06-15 23:37:01 +00001322 return B;
1323 } else {
1324 // Choose the side which is further along in the sequence.
1325 if ((A == S_Use || A == S_CanRelease) &&
Dan Gohmana7f7db22011-08-12 00:26:31 +00001326 (B == S_Use || B == S_Release || B == S_Stop || B == S_MovableRelease))
John McCall9fbd3182011-06-15 23:37:01 +00001327 return A;
1328 // If both sides are releases, choose the more conservative one.
1329 if (A == S_Stop && (B == S_Release || B == S_MovableRelease))
1330 return A;
1331 if (A == S_Release && B == S_MovableRelease)
1332 return A;
1333 }
1334
1335 return S_None;
1336}
1337
1338namespace {
1339 /// RRInfo - Unidirectional information about either a
1340 /// retain-decrement-use-release sequence or release-use-decrement-retain
1341 /// reverese sequence.
1342 struct RRInfo {
Dan Gohmane6d5e882011-08-19 00:26:36 +00001343 /// KnownSafe - After an objc_retain, the reference count of the referenced
1344 /// object is known to be positive. Similarly, before an objc_release, the
1345 /// reference count of the referenced object is known to be positive. If
1346 /// there are retain-release pairs in code regions where the retain count
1347 /// is known to be positive, they can be eliminated, regardless of any side
1348 /// effects between them.
1349 ///
1350 /// Also, a retain+release pair nested within another retain+release
1351 /// pair all on the known same pointer value can be eliminated, regardless
1352 /// of any intervening side effects.
1353 ///
1354 /// KnownSafe is true when either of these conditions is satisfied.
1355 bool KnownSafe;
John McCall9fbd3182011-06-15 23:37:01 +00001356
1357 /// IsRetainBlock - True if the Calls are objc_retainBlock calls (as
1358 /// opposed to objc_retain calls).
1359 bool IsRetainBlock;
1360
1361 /// IsTailCallRelease - True of the objc_release calls are all marked
1362 /// with the "tail" keyword.
1363 bool IsTailCallRelease;
1364
1365 /// ReleaseMetadata - If the Calls are objc_release calls and they all have
1366 /// a clang.imprecise_release tag, this is the metadata tag.
1367 MDNode *ReleaseMetadata;
1368
1369 /// Calls - For a top-down sequence, the set of objc_retains or
1370 /// objc_retainBlocks. For bottom-up, the set of objc_releases.
1371 SmallPtrSet<Instruction *, 2> Calls;
1372
1373 /// ReverseInsertPts - The set of optimal insert positions for
1374 /// moving calls in the opposite sequence.
1375 SmallPtrSet<Instruction *, 2> ReverseInsertPts;
1376
1377 RRInfo() :
Dan Gohman79522dc2012-01-13 00:39:07 +00001378 KnownSafe(false), IsRetainBlock(false),
Dan Gohman50ade652012-04-25 00:50:46 +00001379 IsTailCallRelease(false),
John McCall9fbd3182011-06-15 23:37:01 +00001380 ReleaseMetadata(0) {}
1381
1382 void clear();
1383 };
1384}
1385
1386void RRInfo::clear() {
Dan Gohmane6d5e882011-08-19 00:26:36 +00001387 KnownSafe = false;
John McCall9fbd3182011-06-15 23:37:01 +00001388 IsRetainBlock = false;
1389 IsTailCallRelease = false;
1390 ReleaseMetadata = 0;
1391 Calls.clear();
1392 ReverseInsertPts.clear();
1393}
1394
1395namespace {
1396 /// PtrState - This class summarizes several per-pointer runtime properties
1397 /// which are propogated through the flow graph.
1398 class PtrState {
Dan Gohman50ade652012-04-25 00:50:46 +00001399 /// KnownPositiveRefCount - True if the reference count is known to
1400 /// be incremented.
1401 bool KnownPositiveRefCount;
1402
1403 /// Partial - True of we've seen an opportunity for partial RR elimination,
1404 /// such as pushing calls into a CFG triangle or into one side of a
1405 /// CFG diamond.
1406 bool Partial;
John McCall9fbd3182011-06-15 23:37:01 +00001407
1408 /// Seq - The current position in the sequence.
Dan Gohman0daef3d2012-05-08 23:39:44 +00001409 Sequence Seq : 8;
John McCall9fbd3182011-06-15 23:37:01 +00001410
1411 public:
1412 /// RRI - Unidirectional information about the current sequence.
1413 /// TODO: Encapsulate this better.
1414 RRInfo RRI;
1415
Dan Gohman230768b2012-09-04 23:16:20 +00001416 PtrState() : KnownPositiveRefCount(false), Partial(false),
Dan Gohman0daef3d2012-05-08 23:39:44 +00001417 Seq(S_None) {}
John McCall9fbd3182011-06-15 23:37:01 +00001418
Dan Gohman50ade652012-04-25 00:50:46 +00001419 void SetKnownPositiveRefCount() {
1420 KnownPositiveRefCount = true;
Dan Gohmana7f7db22011-08-12 00:26:31 +00001421 }
1422
Dan Gohman50ade652012-04-25 00:50:46 +00001423 void ClearRefCount() {
1424 KnownPositiveRefCount = false;
John McCall9fbd3182011-06-15 23:37:01 +00001425 }
1426
John McCall9fbd3182011-06-15 23:37:01 +00001427 bool IsKnownIncremented() const {
Dan Gohman50ade652012-04-25 00:50:46 +00001428 return KnownPositiveRefCount;
John McCall9fbd3182011-06-15 23:37:01 +00001429 }
1430
1431 void SetSeq(Sequence NewSeq) {
1432 Seq = NewSeq;
1433 }
1434
John McCall9fbd3182011-06-15 23:37:01 +00001435 Sequence GetSeq() const {
1436 return Seq;
1437 }
1438
1439 void ClearSequenceProgress() {
Dan Gohman50ade652012-04-25 00:50:46 +00001440 ResetSequenceProgress(S_None);
1441 }
1442
1443 void ResetSequenceProgress(Sequence NewSeq) {
1444 Seq = NewSeq;
1445 Partial = false;
John McCall9fbd3182011-06-15 23:37:01 +00001446 RRI.clear();
1447 }
1448
1449 void Merge(const PtrState &Other, bool TopDown);
1450 };
1451}
1452
1453void
1454PtrState::Merge(const PtrState &Other, bool TopDown) {
1455 Seq = MergeSeqs(Seq, Other.Seq, TopDown);
Dan Gohman50ade652012-04-25 00:50:46 +00001456 KnownPositiveRefCount = KnownPositiveRefCount && Other.KnownPositiveRefCount;
John McCall9fbd3182011-06-15 23:37:01 +00001457
1458 // We can't merge a plain objc_retain with an objc_retainBlock.
1459 if (RRI.IsRetainBlock != Other.RRI.IsRetainBlock)
1460 Seq = S_None;
1461
Dan Gohman90b8bcd2011-10-17 18:48:25 +00001462 // If we're not in a sequence (anymore), drop all associated state.
John McCall9fbd3182011-06-15 23:37:01 +00001463 if (Seq == S_None) {
Dan Gohman50ade652012-04-25 00:50:46 +00001464 Partial = false;
John McCall9fbd3182011-06-15 23:37:01 +00001465 RRI.clear();
Dan Gohman50ade652012-04-25 00:50:46 +00001466 } else if (Partial || Other.Partial) {
Dan Gohman90b8bcd2011-10-17 18:48:25 +00001467 // If we're doing a merge on a path that's previously seen a partial
1468 // merge, conservatively drop the sequence, to avoid doing partial
1469 // RR elimination. If the branch predicates for the two merge differ,
1470 // mixing them is unsafe.
Dan Gohman50ade652012-04-25 00:50:46 +00001471 ClearSequenceProgress();
John McCall9fbd3182011-06-15 23:37:01 +00001472 } else {
1473 // Conservatively merge the ReleaseMetadata information.
1474 if (RRI.ReleaseMetadata != Other.RRI.ReleaseMetadata)
1475 RRI.ReleaseMetadata = 0;
1476
Dan Gohmane6d5e882011-08-19 00:26:36 +00001477 RRI.KnownSafe = RRI.KnownSafe && Other.RRI.KnownSafe;
Dan Gohman0daef3d2012-05-08 23:39:44 +00001478 RRI.IsTailCallRelease = RRI.IsTailCallRelease &&
1479 Other.RRI.IsTailCallRelease;
John McCall9fbd3182011-06-15 23:37:01 +00001480 RRI.Calls.insert(Other.RRI.Calls.begin(), Other.RRI.Calls.end());
Dan Gohman90b8bcd2011-10-17 18:48:25 +00001481
1482 // Merge the insert point sets. If there are any differences,
1483 // that makes this a partial merge.
Dan Gohman0daef3d2012-05-08 23:39:44 +00001484 Partial = RRI.ReverseInsertPts.size() != Other.RRI.ReverseInsertPts.size();
Dan Gohman90b8bcd2011-10-17 18:48:25 +00001485 for (SmallPtrSet<Instruction *, 2>::const_iterator
1486 I = Other.RRI.ReverseInsertPts.begin(),
1487 E = Other.RRI.ReverseInsertPts.end(); I != E; ++I)
Dan Gohman50ade652012-04-25 00:50:46 +00001488 Partial |= RRI.ReverseInsertPts.insert(*I);
John McCall9fbd3182011-06-15 23:37:01 +00001489 }
1490}
1491
1492namespace {
1493 /// BBState - Per-BasicBlock state.
1494 class BBState {
1495 /// TopDownPathCount - The number of unique control paths from the entry
1496 /// which can reach this block.
1497 unsigned TopDownPathCount;
1498
1499 /// BottomUpPathCount - The number of unique control paths to exits
1500 /// from this block.
1501 unsigned BottomUpPathCount;
1502
1503 /// MapTy - A type for PerPtrTopDown and PerPtrBottomUp.
1504 typedef MapVector<const Value *, PtrState> MapTy;
1505
1506 /// PerPtrTopDown - The top-down traversal uses this to record information
1507 /// known about a pointer at the bottom of each block.
1508 MapTy PerPtrTopDown;
1509
1510 /// PerPtrBottomUp - The bottom-up traversal uses this to record information
1511 /// known about a pointer at the top of each block.
1512 MapTy PerPtrBottomUp;
1513
Dan Gohmaneeeb7752012-04-24 22:53:18 +00001514 /// Preds, Succs - Effective successors and predecessors of the current
1515 /// block (this ignores ignorable edges and ignored backedges).
1516 SmallVector<BasicBlock *, 2> Preds;
1517 SmallVector<BasicBlock *, 2> Succs;
1518
John McCall9fbd3182011-06-15 23:37:01 +00001519 public:
1520 BBState() : TopDownPathCount(0), BottomUpPathCount(0) {}
1521
1522 typedef MapTy::iterator ptr_iterator;
1523 typedef MapTy::const_iterator ptr_const_iterator;
1524
1525 ptr_iterator top_down_ptr_begin() { return PerPtrTopDown.begin(); }
1526 ptr_iterator top_down_ptr_end() { return PerPtrTopDown.end(); }
1527 ptr_const_iterator top_down_ptr_begin() const {
1528 return PerPtrTopDown.begin();
1529 }
1530 ptr_const_iterator top_down_ptr_end() const {
1531 return PerPtrTopDown.end();
1532 }
1533
1534 ptr_iterator bottom_up_ptr_begin() { return PerPtrBottomUp.begin(); }
1535 ptr_iterator bottom_up_ptr_end() { return PerPtrBottomUp.end(); }
1536 ptr_const_iterator bottom_up_ptr_begin() const {
1537 return PerPtrBottomUp.begin();
1538 }
1539 ptr_const_iterator bottom_up_ptr_end() const {
1540 return PerPtrBottomUp.end();
1541 }
1542
1543 /// SetAsEntry - Mark this block as being an entry block, which has one
1544 /// path from the entry by definition.
1545 void SetAsEntry() { TopDownPathCount = 1; }
1546
1547 /// SetAsExit - Mark this block as being an exit block, which has one
1548 /// path to an exit by definition.
1549 void SetAsExit() { BottomUpPathCount = 1; }
1550
1551 PtrState &getPtrTopDownState(const Value *Arg) {
1552 return PerPtrTopDown[Arg];
1553 }
1554
1555 PtrState &getPtrBottomUpState(const Value *Arg) {
1556 return PerPtrBottomUp[Arg];
1557 }
1558
1559 void clearBottomUpPointers() {
Evan Chenga81388f2011-08-04 18:40:26 +00001560 PerPtrBottomUp.clear();
John McCall9fbd3182011-06-15 23:37:01 +00001561 }
1562
1563 void clearTopDownPointers() {
1564 PerPtrTopDown.clear();
1565 }
1566
1567 void InitFromPred(const BBState &Other);
1568 void InitFromSucc(const BBState &Other);
1569 void MergePred(const BBState &Other);
1570 void MergeSucc(const BBState &Other);
1571
1572 /// GetAllPathCount - Return the number of possible unique paths from an
1573 /// entry to an exit which pass through this block. This is only valid
1574 /// after both the top-down and bottom-up traversals are complete.
1575 unsigned GetAllPathCount() const {
Dan Gohmaneeeb7752012-04-24 22:53:18 +00001576 assert(TopDownPathCount != 0);
1577 assert(BottomUpPathCount != 0);
John McCall9fbd3182011-06-15 23:37:01 +00001578 return TopDownPathCount * BottomUpPathCount;
1579 }
Dan Gohmana7f7db22011-08-12 00:26:31 +00001580
Dan Gohmaneeeb7752012-04-24 22:53:18 +00001581 // Specialized CFG utilities.
Dan Gohman447989c2012-04-27 18:56:31 +00001582 typedef SmallVectorImpl<BasicBlock *>::const_iterator edge_iterator;
Dan Gohmaneeeb7752012-04-24 22:53:18 +00001583 edge_iterator pred_begin() { return Preds.begin(); }
1584 edge_iterator pred_end() { return Preds.end(); }
1585 edge_iterator succ_begin() { return Succs.begin(); }
1586 edge_iterator succ_end() { return Succs.end(); }
1587
1588 void addSucc(BasicBlock *Succ) { Succs.push_back(Succ); }
1589 void addPred(BasicBlock *Pred) { Preds.push_back(Pred); }
1590
1591 bool isExit() const { return Succs.empty(); }
John McCall9fbd3182011-06-15 23:37:01 +00001592 };
1593}
1594
1595void BBState::InitFromPred(const BBState &Other) {
1596 PerPtrTopDown = Other.PerPtrTopDown;
1597 TopDownPathCount = Other.TopDownPathCount;
1598}
1599
1600void BBState::InitFromSucc(const BBState &Other) {
1601 PerPtrBottomUp = Other.PerPtrBottomUp;
1602 BottomUpPathCount = Other.BottomUpPathCount;
1603}
1604
1605/// MergePred - The top-down traversal uses this to merge information about
1606/// predecessors to form the initial state for a new block.
1607void BBState::MergePred(const BBState &Other) {
1608 // Other.TopDownPathCount can be 0, in which case it is either dead or a
1609 // loop backedge. Loop backedges are special.
1610 TopDownPathCount += Other.TopDownPathCount;
1611
Dan Gohman0d1bc5f2012-09-12 20:45:17 +00001612 // Check for overflow. If we have overflow, fall back to conservative behavior.
1613 if (TopDownPathCount < Other.TopDownPathCount) {
1614 clearTopDownPointers();
1615 return;
1616 }
1617
John McCall9fbd3182011-06-15 23:37:01 +00001618 // For each entry in the other set, if our set has an entry with the same key,
1619 // merge the entries. Otherwise, copy the entry and merge it with an empty
1620 // entry.
1621 for (ptr_const_iterator MI = Other.top_down_ptr_begin(),
1622 ME = Other.top_down_ptr_end(); MI != ME; ++MI) {
1623 std::pair<ptr_iterator, bool> Pair = PerPtrTopDown.insert(*MI);
1624 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
1625 /*TopDown=*/true);
1626 }
1627
Dan Gohmanfa7eed12011-08-11 21:06:32 +00001628 // For each entry in our set, if the other set doesn't have an entry with the
John McCall9fbd3182011-06-15 23:37:01 +00001629 // same key, force it to merge with an empty entry.
1630 for (ptr_iterator MI = top_down_ptr_begin(),
1631 ME = top_down_ptr_end(); MI != ME; ++MI)
1632 if (Other.PerPtrTopDown.find(MI->first) == Other.PerPtrTopDown.end())
1633 MI->second.Merge(PtrState(), /*TopDown=*/true);
1634}
1635
1636/// MergeSucc - The bottom-up traversal uses this to merge information about
1637/// successors to form the initial state for a new block.
1638void BBState::MergeSucc(const BBState &Other) {
1639 // Other.BottomUpPathCount can be 0, in which case it is either dead or a
1640 // loop backedge. Loop backedges are special.
1641 BottomUpPathCount += Other.BottomUpPathCount;
1642
Dan Gohman0d1bc5f2012-09-12 20:45:17 +00001643 // Check for overflow. If we have overflow, fall back to conservative behavior.
1644 if (BottomUpPathCount < Other.BottomUpPathCount) {
1645 clearBottomUpPointers();
1646 return;
1647 }
1648
John McCall9fbd3182011-06-15 23:37:01 +00001649 // For each entry in the other set, if our set has an entry with the
1650 // same key, merge the entries. Otherwise, copy the entry and merge
1651 // it with an empty entry.
1652 for (ptr_const_iterator MI = Other.bottom_up_ptr_begin(),
1653 ME = Other.bottom_up_ptr_end(); MI != ME; ++MI) {
1654 std::pair<ptr_iterator, bool> Pair = PerPtrBottomUp.insert(*MI);
1655 Pair.first->second.Merge(Pair.second ? PtrState() : MI->second,
1656 /*TopDown=*/false);
1657 }
1658
Dan Gohmanfa7eed12011-08-11 21:06:32 +00001659 // For each entry in our set, if the other set doesn't have an entry
John McCall9fbd3182011-06-15 23:37:01 +00001660 // with the same key, force it to merge with an empty entry.
1661 for (ptr_iterator MI = bottom_up_ptr_begin(),
1662 ME = bottom_up_ptr_end(); MI != ME; ++MI)
1663 if (Other.PerPtrBottomUp.find(MI->first) == Other.PerPtrBottomUp.end())
1664 MI->second.Merge(PtrState(), /*TopDown=*/false);
1665}
1666
1667namespace {
1668 /// ObjCARCOpt - The main ARC optimization pass.
1669 class ObjCARCOpt : public FunctionPass {
1670 bool Changed;
1671 ProvenanceAnalysis PA;
1672
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00001673 /// Run - A flag indicating whether this optimization pass should run.
1674 bool Run;
1675
John McCall9fbd3182011-06-15 23:37:01 +00001676 /// RetainRVCallee, etc. - Declarations for ObjC runtime
1677 /// functions, for use in creating calls to them. These are initialized
1678 /// lazily to avoid cluttering up the Module with unused declarations.
1679 Constant *RetainRVCallee, *AutoreleaseRVCallee, *ReleaseCallee,
Dan Gohman44280692011-07-22 22:29:21 +00001680 *RetainCallee, *RetainBlockCallee, *AutoreleaseCallee;
John McCall9fbd3182011-06-15 23:37:01 +00001681
1682 /// UsedInThisFunciton - Flags which determine whether each of the
1683 /// interesting runtine functions is in fact used in the current function.
1684 unsigned UsedInThisFunction;
1685
1686 /// ImpreciseReleaseMDKind - The Metadata Kind for clang.imprecise_release
1687 /// metadata.
1688 unsigned ImpreciseReleaseMDKind;
1689
Dan Gohman62e5b402011-12-12 18:20:00 +00001690 /// CopyOnEscapeMDKind - The Metadata Kind for clang.arc.copy_on_escape
Dan Gohmana974bea2011-10-17 22:53:25 +00001691 /// metadata.
1692 unsigned CopyOnEscapeMDKind;
1693
Dan Gohmandbe266b2012-02-17 18:59:53 +00001694 /// NoObjCARCExceptionsMDKind - The Metadata Kind for
1695 /// clang.arc.no_objc_arc_exceptions metadata.
1696 unsigned NoObjCARCExceptionsMDKind;
1697
John McCall9fbd3182011-06-15 23:37:01 +00001698 Constant *getRetainRVCallee(Module *M);
1699 Constant *getAutoreleaseRVCallee(Module *M);
1700 Constant *getReleaseCallee(Module *M);
1701 Constant *getRetainCallee(Module *M);
Dan Gohman44280692011-07-22 22:29:21 +00001702 Constant *getRetainBlockCallee(Module *M);
John McCall9fbd3182011-06-15 23:37:01 +00001703 Constant *getAutoreleaseCallee(Module *M);
1704
Dan Gohman79522dc2012-01-13 00:39:07 +00001705 bool IsRetainBlockOptimizable(const Instruction *Inst);
1706
John McCall9fbd3182011-06-15 23:37:01 +00001707 void OptimizeRetainCall(Function &F, Instruction *Retain);
1708 bool OptimizeRetainRVCall(Function &F, Instruction *RetainRV);
1709 void OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV);
1710 void OptimizeIndividualCalls(Function &F);
1711
1712 void CheckForCFGHazards(const BasicBlock *BB,
1713 DenseMap<const BasicBlock *, BBState> &BBStates,
1714 BBState &MyStates) const;
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00001715 bool VisitInstructionBottomUp(Instruction *Inst,
Dan Gohmanfbab4a82012-03-23 17:47:54 +00001716 BasicBlock *BB,
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00001717 MapVector<Value *, RRInfo> &Retains,
1718 BBState &MyStates);
John McCall9fbd3182011-06-15 23:37:01 +00001719 bool VisitBottomUp(BasicBlock *BB,
1720 DenseMap<const BasicBlock *, BBState> &BBStates,
1721 MapVector<Value *, RRInfo> &Retains);
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00001722 bool VisitInstructionTopDown(Instruction *Inst,
1723 DenseMap<Value *, RRInfo> &Releases,
1724 BBState &MyStates);
John McCall9fbd3182011-06-15 23:37:01 +00001725 bool VisitTopDown(BasicBlock *BB,
1726 DenseMap<const BasicBlock *, BBState> &BBStates,
1727 DenseMap<Value *, RRInfo> &Releases);
1728 bool Visit(Function &F,
1729 DenseMap<const BasicBlock *, BBState> &BBStates,
1730 MapVector<Value *, RRInfo> &Retains,
1731 DenseMap<Value *, RRInfo> &Releases);
1732
1733 void MoveCalls(Value *Arg, RRInfo &RetainsToMove, RRInfo &ReleasesToMove,
1734 MapVector<Value *, RRInfo> &Retains,
1735 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman44280692011-07-22 22:29:21 +00001736 SmallVectorImpl<Instruction *> &DeadInsts,
1737 Module *M);
John McCall9fbd3182011-06-15 23:37:01 +00001738
1739 bool PerformCodePlacement(DenseMap<const BasicBlock *, BBState> &BBStates,
1740 MapVector<Value *, RRInfo> &Retains,
Dan Gohman44280692011-07-22 22:29:21 +00001741 DenseMap<Value *, RRInfo> &Releases,
1742 Module *M);
John McCall9fbd3182011-06-15 23:37:01 +00001743
1744 void OptimizeWeakCalls(Function &F);
1745
1746 bool OptimizeSequences(Function &F);
1747
1748 void OptimizeReturns(Function &F);
1749
1750 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
1751 virtual bool doInitialization(Module &M);
1752 virtual bool runOnFunction(Function &F);
1753 virtual void releaseMemory();
1754
1755 public:
1756 static char ID;
1757 ObjCARCOpt() : FunctionPass(ID) {
1758 initializeObjCARCOptPass(*PassRegistry::getPassRegistry());
1759 }
1760 };
1761}
1762
1763char ObjCARCOpt::ID = 0;
1764INITIALIZE_PASS_BEGIN(ObjCARCOpt,
1765 "objc-arc", "ObjC ARC optimization", false, false)
1766INITIALIZE_PASS_DEPENDENCY(ObjCARCAliasAnalysis)
1767INITIALIZE_PASS_END(ObjCARCOpt,
1768 "objc-arc", "ObjC ARC optimization", false, false)
1769
1770Pass *llvm::createObjCARCOptPass() {
1771 return new ObjCARCOpt();
1772}
1773
1774void ObjCARCOpt::getAnalysisUsage(AnalysisUsage &AU) const {
1775 AU.addRequired<ObjCARCAliasAnalysis>();
1776 AU.addRequired<AliasAnalysis>();
1777 // ARC optimization doesn't currently split critical edges.
1778 AU.setPreservesCFG();
1779}
1780
Dan Gohman79522dc2012-01-13 00:39:07 +00001781bool ObjCARCOpt::IsRetainBlockOptimizable(const Instruction *Inst) {
1782 // Without the magic metadata tag, we have to assume this might be an
1783 // objc_retainBlock call inserted to convert a block pointer to an id,
1784 // in which case it really is needed.
1785 if (!Inst->getMetadata(CopyOnEscapeMDKind))
1786 return false;
1787
1788 // If the pointer "escapes" (not including being used in a call),
1789 // the copy may be needed.
1790 if (DoesObjCBlockEscape(Inst))
1791 return false;
1792
1793 // Otherwise, it's not needed.
1794 return true;
1795}
1796
John McCall9fbd3182011-06-15 23:37:01 +00001797Constant *ObjCARCOpt::getRetainRVCallee(Module *M) {
1798 if (!RetainRVCallee) {
1799 LLVMContext &C = M->getContext();
Jay Foad5fdd6c82011-07-12 14:06:48 +00001800 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman0daef3d2012-05-08 23:39:44 +00001801 Type *Params[] = { I8X };
1802 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling034b94b2012-12-19 07:18:57 +00001803 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00001804 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00001805 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00001806 RetainRVCallee =
1807 M->getOrInsertFunction("objc_retainAutoreleasedReturnValue", FTy,
Bill Wendling034b94b2012-12-19 07:18:57 +00001808 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00001809 }
1810 return RetainRVCallee;
1811}
1812
1813Constant *ObjCARCOpt::getAutoreleaseRVCallee(Module *M) {
1814 if (!AutoreleaseRVCallee) {
1815 LLVMContext &C = M->getContext();
Jay Foad5fdd6c82011-07-12 14:06:48 +00001816 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman0daef3d2012-05-08 23:39:44 +00001817 Type *Params[] = { I8X };
1818 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling034b94b2012-12-19 07:18:57 +00001819 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00001820 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00001821 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00001822 AutoreleaseRVCallee =
1823 M->getOrInsertFunction("objc_autoreleaseReturnValue", FTy,
Bill Wendling034b94b2012-12-19 07:18:57 +00001824 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00001825 }
1826 return AutoreleaseRVCallee;
1827}
1828
1829Constant *ObjCARCOpt::getReleaseCallee(Module *M) {
1830 if (!ReleaseCallee) {
1831 LLVMContext &C = M->getContext();
Dan Gohman0daef3d2012-05-08 23:39:44 +00001832 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling034b94b2012-12-19 07:18:57 +00001833 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00001834 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00001835 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00001836 ReleaseCallee =
1837 M->getOrInsertFunction(
1838 "objc_release",
1839 FunctionType::get(Type::getVoidTy(C), Params, /*isVarArg=*/false),
Bill Wendling034b94b2012-12-19 07:18:57 +00001840 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00001841 }
1842 return ReleaseCallee;
1843}
1844
1845Constant *ObjCARCOpt::getRetainCallee(Module *M) {
1846 if (!RetainCallee) {
1847 LLVMContext &C = M->getContext();
Dan Gohman0daef3d2012-05-08 23:39:44 +00001848 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling034b94b2012-12-19 07:18:57 +00001849 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00001850 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00001851 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00001852 RetainCallee =
1853 M->getOrInsertFunction(
1854 "objc_retain",
1855 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling034b94b2012-12-19 07:18:57 +00001856 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00001857 }
1858 return RetainCallee;
1859}
1860
Dan Gohman44280692011-07-22 22:29:21 +00001861Constant *ObjCARCOpt::getRetainBlockCallee(Module *M) {
1862 if (!RetainBlockCallee) {
1863 LLVMContext &C = M->getContext();
Dan Gohman0daef3d2012-05-08 23:39:44 +00001864 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Dan Gohman1d2fd752011-09-14 18:33:34 +00001865 // objc_retainBlock is not nounwind because it calls user copy constructors
1866 // which could theoretically throw.
Dan Gohman44280692011-07-22 22:29:21 +00001867 RetainBlockCallee =
1868 M->getOrInsertFunction(
1869 "objc_retainBlock",
1870 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling99faa3b2012-12-07 23:16:57 +00001871 AttributeSet());
Dan Gohman44280692011-07-22 22:29:21 +00001872 }
1873 return RetainBlockCallee;
1874}
1875
John McCall9fbd3182011-06-15 23:37:01 +00001876Constant *ObjCARCOpt::getAutoreleaseCallee(Module *M) {
1877 if (!AutoreleaseCallee) {
1878 LLVMContext &C = M->getContext();
Dan Gohman0daef3d2012-05-08 23:39:44 +00001879 Type *Params[] = { PointerType::getUnqual(Type::getInt8Ty(C)) };
Bill Wendling034b94b2012-12-19 07:18:57 +00001880 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00001881 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00001882 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00001883 AutoreleaseCallee =
1884 M->getOrInsertFunction(
1885 "objc_autorelease",
1886 FunctionType::get(Params[0], Params, /*isVarArg=*/false),
Bill Wendling034b94b2012-12-19 07:18:57 +00001887 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00001888 }
1889 return AutoreleaseCallee;
1890}
1891
Dan Gohman230768b2012-09-04 23:16:20 +00001892/// IsPotentialUse - Test whether the given value is possible a
1893/// reference-counted pointer, including tests which utilize AliasAnalysis.
1894static bool IsPotentialUse(const Value *Op, AliasAnalysis &AA) {
1895 // First make the rudimentary check.
1896 if (!IsPotentialUse(Op))
1897 return false;
1898
1899 // Objects in constant memory are not reference-counted.
1900 if (AA.pointsToConstantMemory(Op))
1901 return false;
1902
1903 // Pointers in constant memory are not pointing to reference-counted objects.
1904 if (const LoadInst *LI = dyn_cast<LoadInst>(Op))
1905 if (AA.pointsToConstantMemory(LI->getPointerOperand()))
1906 return false;
1907
1908 // Otherwise assume the worst.
1909 return true;
1910}
1911
John McCall9fbd3182011-06-15 23:37:01 +00001912/// CanAlterRefCount - Test whether the given instruction can result in a
1913/// reference count modification (positive or negative) for the pointer's
1914/// object.
1915static bool
1916CanAlterRefCount(const Instruction *Inst, const Value *Ptr,
1917 ProvenanceAnalysis &PA, InstructionClass Class) {
1918 switch (Class) {
1919 case IC_Autorelease:
1920 case IC_AutoreleaseRV:
1921 case IC_User:
1922 // These operations never directly modify a reference count.
1923 return false;
1924 default: break;
1925 }
1926
1927 ImmutableCallSite CS = static_cast<const Value *>(Inst);
1928 assert(CS && "Only calls can alter reference counts!");
1929
1930 // See if AliasAnalysis can help us with the call.
1931 AliasAnalysis::ModRefBehavior MRB = PA.getAA()->getModRefBehavior(CS);
1932 if (AliasAnalysis::onlyReadsMemory(MRB))
1933 return false;
1934 if (AliasAnalysis::onlyAccessesArgPointees(MRB)) {
1935 for (ImmutableCallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
1936 I != E; ++I) {
1937 const Value *Op = *I;
Dan Gohman230768b2012-09-04 23:16:20 +00001938 if (IsPotentialUse(Op, *PA.getAA()) && PA.related(Ptr, Op))
John McCall9fbd3182011-06-15 23:37:01 +00001939 return true;
1940 }
1941 return false;
1942 }
1943
1944 // Assume the worst.
1945 return true;
1946}
1947
1948/// CanUse - Test whether the given instruction can "use" the given pointer's
1949/// object in a way that requires the reference count to be positive.
1950static bool
1951CanUse(const Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA,
1952 InstructionClass Class) {
1953 // IC_Call operations (as opposed to IC_CallOrUser) never "use" objc pointers.
1954 if (Class == IC_Call)
1955 return false;
1956
1957 // Consider various instructions which may have pointer arguments which are
1958 // not "uses".
1959 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(Inst)) {
1960 // Comparing a pointer with null, or any other constant, isn't really a use,
1961 // because we don't care what the pointer points to, or about the values
1962 // of any other dynamic reference-counted pointers.
Dan Gohman230768b2012-09-04 23:16:20 +00001963 if (!IsPotentialUse(ICI->getOperand(1), *PA.getAA()))
John McCall9fbd3182011-06-15 23:37:01 +00001964 return false;
1965 } else if (ImmutableCallSite CS = static_cast<const Value *>(Inst)) {
1966 // For calls, just check the arguments (and not the callee operand).
1967 for (ImmutableCallSite::arg_iterator OI = CS.arg_begin(),
1968 OE = CS.arg_end(); OI != OE; ++OI) {
1969 const Value *Op = *OI;
Dan Gohman230768b2012-09-04 23:16:20 +00001970 if (IsPotentialUse(Op, *PA.getAA()) && PA.related(Ptr, Op))
John McCall9fbd3182011-06-15 23:37:01 +00001971 return true;
1972 }
1973 return false;
1974 } else if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1975 // Special-case stores, because we don't care about the stored value, just
1976 // the store address.
1977 const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand());
1978 // If we can't tell what the underlying object was, assume there is a
1979 // dependence.
Dan Gohman230768b2012-09-04 23:16:20 +00001980 return IsPotentialUse(Op, *PA.getAA()) && PA.related(Op, Ptr);
John McCall9fbd3182011-06-15 23:37:01 +00001981 }
1982
1983 // Check each operand for a match.
1984 for (User::const_op_iterator OI = Inst->op_begin(), OE = Inst->op_end();
1985 OI != OE; ++OI) {
1986 const Value *Op = *OI;
Dan Gohman230768b2012-09-04 23:16:20 +00001987 if (IsPotentialUse(Op, *PA.getAA()) && PA.related(Ptr, Op))
John McCall9fbd3182011-06-15 23:37:01 +00001988 return true;
1989 }
1990 return false;
1991}
1992
1993/// CanInterruptRV - Test whether the given instruction can autorelease
1994/// any pointer or cause an autoreleasepool pop.
1995static bool
1996CanInterruptRV(InstructionClass Class) {
1997 switch (Class) {
1998 case IC_AutoreleasepoolPop:
1999 case IC_CallOrUser:
2000 case IC_Call:
2001 case IC_Autorelease:
2002 case IC_AutoreleaseRV:
2003 case IC_FusedRetainAutorelease:
2004 case IC_FusedRetainAutoreleaseRV:
2005 return true;
2006 default:
2007 return false;
2008 }
2009}
2010
2011namespace {
2012 /// DependenceKind - There are several kinds of dependence-like concepts in
2013 /// use here.
2014 enum DependenceKind {
2015 NeedsPositiveRetainCount,
Dan Gohman511568d2012-04-13 00:59:57 +00002016 AutoreleasePoolBoundary,
John McCall9fbd3182011-06-15 23:37:01 +00002017 CanChangeRetainCount,
2018 RetainAutoreleaseDep, ///< Blocks objc_retainAutorelease.
2019 RetainAutoreleaseRVDep, ///< Blocks objc_retainAutoreleaseReturnValue.
2020 RetainRVDep ///< Blocks objc_retainAutoreleasedReturnValue.
2021 };
2022}
2023
2024/// Depends - Test if there can be dependencies on Inst through Arg. This
2025/// function only tests dependencies relevant for removing pairs of calls.
2026static bool
2027Depends(DependenceKind Flavor, Instruction *Inst, const Value *Arg,
2028 ProvenanceAnalysis &PA) {
2029 // If we've reached the definition of Arg, stop.
2030 if (Inst == Arg)
2031 return true;
2032
2033 switch (Flavor) {
2034 case NeedsPositiveRetainCount: {
2035 InstructionClass Class = GetInstructionClass(Inst);
2036 switch (Class) {
2037 case IC_AutoreleasepoolPop:
2038 case IC_AutoreleasepoolPush:
2039 case IC_None:
2040 return false;
2041 default:
2042 return CanUse(Inst, Arg, PA, Class);
2043 }
2044 }
2045
Dan Gohman511568d2012-04-13 00:59:57 +00002046 case AutoreleasePoolBoundary: {
2047 InstructionClass Class = GetInstructionClass(Inst);
2048 switch (Class) {
2049 case IC_AutoreleasepoolPop:
2050 case IC_AutoreleasepoolPush:
2051 // These mark the end and begin of an autorelease pool scope.
2052 return true;
2053 default:
2054 // Nothing else does this.
2055 return false;
2056 }
2057 }
2058
John McCall9fbd3182011-06-15 23:37:01 +00002059 case CanChangeRetainCount: {
2060 InstructionClass Class = GetInstructionClass(Inst);
2061 switch (Class) {
2062 case IC_AutoreleasepoolPop:
2063 // Conservatively assume this can decrement any count.
2064 return true;
2065 case IC_AutoreleasepoolPush:
2066 case IC_None:
2067 return false;
2068 default:
2069 return CanAlterRefCount(Inst, Arg, PA, Class);
2070 }
2071 }
2072
2073 case RetainAutoreleaseDep:
2074 switch (GetBasicInstructionClass(Inst)) {
2075 case IC_AutoreleasepoolPop:
Dan Gohman511568d2012-04-13 00:59:57 +00002076 case IC_AutoreleasepoolPush:
John McCall9fbd3182011-06-15 23:37:01 +00002077 // Don't merge an objc_autorelease with an objc_retain inside a different
2078 // autoreleasepool scope.
2079 return true;
2080 case IC_Retain:
2081 case IC_RetainRV:
2082 // Check for a retain of the same pointer for merging.
2083 return GetObjCArg(Inst) == Arg;
2084 default:
2085 // Nothing else matters for objc_retainAutorelease formation.
2086 return false;
2087 }
John McCall9fbd3182011-06-15 23:37:01 +00002088
2089 case RetainAutoreleaseRVDep: {
2090 InstructionClass Class = GetBasicInstructionClass(Inst);
2091 switch (Class) {
2092 case IC_Retain:
2093 case IC_RetainRV:
2094 // Check for a retain of the same pointer for merging.
2095 return GetObjCArg(Inst) == Arg;
2096 default:
2097 // Anything that can autorelease interrupts
2098 // retainAutoreleaseReturnValue formation.
2099 return CanInterruptRV(Class);
2100 }
John McCall9fbd3182011-06-15 23:37:01 +00002101 }
2102
2103 case RetainRVDep:
2104 return CanInterruptRV(GetBasicInstructionClass(Inst));
2105 }
2106
2107 llvm_unreachable("Invalid dependence flavor");
John McCall9fbd3182011-06-15 23:37:01 +00002108}
2109
2110/// FindDependencies - Walk up the CFG from StartPos (which is in StartBB) and
2111/// find local and non-local dependencies on Arg.
2112/// TODO: Cache results?
2113static void
2114FindDependencies(DependenceKind Flavor,
2115 const Value *Arg,
2116 BasicBlock *StartBB, Instruction *StartInst,
2117 SmallPtrSet<Instruction *, 4> &DependingInstructions,
2118 SmallPtrSet<const BasicBlock *, 4> &Visited,
2119 ProvenanceAnalysis &PA) {
2120 BasicBlock::iterator StartPos = StartInst;
2121
2122 SmallVector<std::pair<BasicBlock *, BasicBlock::iterator>, 4> Worklist;
2123 Worklist.push_back(std::make_pair(StartBB, StartPos));
2124 do {
2125 std::pair<BasicBlock *, BasicBlock::iterator> Pair =
2126 Worklist.pop_back_val();
2127 BasicBlock *LocalStartBB = Pair.first;
2128 BasicBlock::iterator LocalStartPos = Pair.second;
2129 BasicBlock::iterator StartBBBegin = LocalStartBB->begin();
2130 for (;;) {
2131 if (LocalStartPos == StartBBBegin) {
2132 pred_iterator PI(LocalStartBB), PE(LocalStartBB, false);
2133 if (PI == PE)
2134 // If we've reached the function entry, produce a null dependence.
2135 DependingInstructions.insert(0);
2136 else
2137 // Add the predecessors to the worklist.
2138 do {
2139 BasicBlock *PredBB = *PI;
2140 if (Visited.insert(PredBB))
2141 Worklist.push_back(std::make_pair(PredBB, PredBB->end()));
2142 } while (++PI != PE);
2143 break;
2144 }
2145
2146 Instruction *Inst = --LocalStartPos;
2147 if (Depends(Flavor, Inst, Arg, PA)) {
2148 DependingInstructions.insert(Inst);
2149 break;
2150 }
2151 }
2152 } while (!Worklist.empty());
2153
2154 // Determine whether the original StartBB post-dominates all of the blocks we
2155 // visited. If not, insert a sentinal indicating that most optimizations are
2156 // not safe.
2157 for (SmallPtrSet<const BasicBlock *, 4>::const_iterator I = Visited.begin(),
2158 E = Visited.end(); I != E; ++I) {
2159 const BasicBlock *BB = *I;
2160 if (BB == StartBB)
2161 continue;
2162 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
2163 for (succ_const_iterator SI(TI), SE(TI, false); SI != SE; ++SI) {
2164 const BasicBlock *Succ = *SI;
2165 if (Succ != StartBB && !Visited.count(Succ)) {
2166 DependingInstructions.insert(reinterpret_cast<Instruction *>(-1));
2167 return;
2168 }
2169 }
2170 }
2171}
2172
2173static bool isNullOrUndef(const Value *V) {
2174 return isa<ConstantPointerNull>(V) || isa<UndefValue>(V);
2175}
2176
2177static bool isNoopInstruction(const Instruction *I) {
2178 return isa<BitCastInst>(I) ||
2179 (isa<GetElementPtrInst>(I) &&
2180 cast<GetElementPtrInst>(I)->hasAllZeroIndices());
2181}
2182
2183/// OptimizeRetainCall - Turn objc_retain into
2184/// objc_retainAutoreleasedReturnValue if the operand is a return value.
2185void
2186ObjCARCOpt::OptimizeRetainCall(Function &F, Instruction *Retain) {
Dan Gohman447989c2012-04-27 18:56:31 +00002187 ImmutableCallSite CS(GetObjCArg(Retain));
2188 const Instruction *Call = CS.getInstruction();
John McCall9fbd3182011-06-15 23:37:01 +00002189 if (!Call) return;
2190 if (Call->getParent() != Retain->getParent()) return;
2191
2192 // Check that the call is next to the retain.
Dan Gohman447989c2012-04-27 18:56:31 +00002193 BasicBlock::const_iterator I = Call;
John McCall9fbd3182011-06-15 23:37:01 +00002194 ++I;
2195 while (isNoopInstruction(I)) ++I;
2196 if (&*I != Retain)
2197 return;
2198
2199 // Turn it to an objc_retainAutoreleasedReturnValue..
2200 Changed = true;
2201 ++NumPeeps;
2202 cast<CallInst>(Retain)->setCalledFunction(getRetainRVCallee(F.getParent()));
2203}
2204
2205/// OptimizeRetainRVCall - Turn objc_retainAutoreleasedReturnValue into
Dan Gohman447989c2012-04-27 18:56:31 +00002206/// objc_retain if the operand is not a return value. Or, if it can be paired
2207/// with an objc_autoreleaseReturnValue, delete the pair and return true.
John McCall9fbd3182011-06-15 23:37:01 +00002208bool
2209ObjCARCOpt::OptimizeRetainRVCall(Function &F, Instruction *RetainRV) {
Dan Gohman6fedb3c2012-03-23 18:09:00 +00002210 // Check for the argument being from an immediately preceding call or invoke.
Dan Gohman447989c2012-04-27 18:56:31 +00002211 const Value *Arg = GetObjCArg(RetainRV);
2212 ImmutableCallSite CS(Arg);
2213 if (const Instruction *Call = CS.getInstruction()) {
John McCall9fbd3182011-06-15 23:37:01 +00002214 if (Call->getParent() == RetainRV->getParent()) {
Dan Gohman447989c2012-04-27 18:56:31 +00002215 BasicBlock::const_iterator I = Call;
John McCall9fbd3182011-06-15 23:37:01 +00002216 ++I;
2217 while (isNoopInstruction(I)) ++I;
2218 if (&*I == RetainRV)
2219 return false;
Dan Gohman447989c2012-04-27 18:56:31 +00002220 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Dan Gohman6fedb3c2012-03-23 18:09:00 +00002221 BasicBlock *RetainRVParent = RetainRV->getParent();
2222 if (II->getNormalDest() == RetainRVParent) {
Dan Gohman447989c2012-04-27 18:56:31 +00002223 BasicBlock::const_iterator I = RetainRVParent->begin();
Dan Gohman6fedb3c2012-03-23 18:09:00 +00002224 while (isNoopInstruction(I)) ++I;
2225 if (&*I == RetainRV)
2226 return false;
2227 }
John McCall9fbd3182011-06-15 23:37:01 +00002228 }
Dan Gohman6fedb3c2012-03-23 18:09:00 +00002229 }
John McCall9fbd3182011-06-15 23:37:01 +00002230
2231 // Check for being preceded by an objc_autoreleaseReturnValue on the same
2232 // pointer. In this case, we can delete the pair.
2233 BasicBlock::iterator I = RetainRV, Begin = RetainRV->getParent()->begin();
2234 if (I != Begin) {
2235 do --I; while (I != Begin && isNoopInstruction(I));
2236 if (GetBasicInstructionClass(I) == IC_AutoreleaseRV &&
2237 GetObjCArg(I) == Arg) {
2238 Changed = true;
2239 ++NumPeeps;
2240 EraseInstruction(I);
2241 EraseInstruction(RetainRV);
2242 return true;
2243 }
2244 }
2245
2246 // Turn it to a plain objc_retain.
2247 Changed = true;
2248 ++NumPeeps;
2249 cast<CallInst>(RetainRV)->setCalledFunction(getRetainCallee(F.getParent()));
2250 return false;
2251}
2252
2253/// OptimizeAutoreleaseRVCall - Turn objc_autoreleaseReturnValue into
2254/// objc_autorelease if the result is not used as a return value.
2255void
2256ObjCARCOpt::OptimizeAutoreleaseRVCall(Function &F, Instruction *AutoreleaseRV) {
2257 // Check for a return of the pointer value.
2258 const Value *Ptr = GetObjCArg(AutoreleaseRV);
Dan Gohman126a54f2011-08-12 00:36:31 +00002259 SmallVector<const Value *, 2> Users;
2260 Users.push_back(Ptr);
2261 do {
2262 Ptr = Users.pop_back_val();
2263 for (Value::const_use_iterator UI = Ptr->use_begin(), UE = Ptr->use_end();
2264 UI != UE; ++UI) {
2265 const User *I = *UI;
2266 if (isa<ReturnInst>(I) || GetBasicInstructionClass(I) == IC_RetainRV)
2267 return;
2268 if (isa<BitCastInst>(I))
2269 Users.push_back(I);
2270 }
2271 } while (!Users.empty());
John McCall9fbd3182011-06-15 23:37:01 +00002272
2273 Changed = true;
2274 ++NumPeeps;
2275 cast<CallInst>(AutoreleaseRV)->
2276 setCalledFunction(getAutoreleaseCallee(F.getParent()));
2277}
2278
2279/// OptimizeIndividualCalls - Visit each call, one at a time, and make
2280/// simplifications without doing any additional analysis.
2281void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
2282 // Reset all the flags in preparation for recomputing them.
2283 UsedInThisFunction = 0;
2284
2285 // Visit all objc_* calls in F.
2286 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
2287 Instruction *Inst = &*I++;
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00002288
Michael Gottesman5c0ae472013-01-04 21:29:57 +00002289 DEBUG(dbgs() << "ObjCARCOpt::OptimizeIndividualCalls: Visiting: " <<
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00002290 *Inst << "\n");
2291
John McCall9fbd3182011-06-15 23:37:01 +00002292 InstructionClass Class = GetBasicInstructionClass(Inst);
2293
2294 switch (Class) {
2295 default: break;
2296
2297 // Delete no-op casts. These function calls have special semantics, but
2298 // the semantics are entirely implemented via lowering in the front-end,
2299 // so by the time they reach the optimizer, they are just no-op calls
2300 // which return their argument.
2301 //
2302 // There are gray areas here, as the ability to cast reference-counted
2303 // pointers to raw void* and back allows code to break ARC assumptions,
2304 // however these are currently considered to be unimportant.
2305 case IC_NoopCast:
2306 Changed = true;
2307 ++NumNoops;
2308 EraseInstruction(Inst);
2309 continue;
2310
2311 // If the pointer-to-weak-pointer is null, it's undefined behavior.
2312 case IC_StoreWeak:
2313 case IC_LoadWeak:
2314 case IC_LoadWeakRetained:
2315 case IC_InitWeak:
2316 case IC_DestroyWeak: {
2317 CallInst *CI = cast<CallInst>(Inst);
2318 if (isNullOrUndef(CI->getArgOperand(0))) {
Dan Gohmand6bf2012012-04-13 18:57:48 +00002319 Changed = true;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002320 Type *Ty = CI->getArgOperand(0)->getType();
John McCall9fbd3182011-06-15 23:37:01 +00002321 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
2322 Constant::getNullValue(Ty),
2323 CI);
2324 CI->replaceAllUsesWith(UndefValue::get(CI->getType()));
2325 CI->eraseFromParent();
2326 continue;
2327 }
2328 break;
2329 }
2330 case IC_CopyWeak:
2331 case IC_MoveWeak: {
2332 CallInst *CI = cast<CallInst>(Inst);
2333 if (isNullOrUndef(CI->getArgOperand(0)) ||
2334 isNullOrUndef(CI->getArgOperand(1))) {
Dan Gohmand6bf2012012-04-13 18:57:48 +00002335 Changed = true;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002336 Type *Ty = CI->getArgOperand(0)->getType();
John McCall9fbd3182011-06-15 23:37:01 +00002337 new StoreInst(UndefValue::get(cast<PointerType>(Ty)->getElementType()),
2338 Constant::getNullValue(Ty),
2339 CI);
2340 CI->replaceAllUsesWith(UndefValue::get(CI->getType()));
2341 CI->eraseFromParent();
2342 continue;
2343 }
2344 break;
2345 }
2346 case IC_Retain:
2347 OptimizeRetainCall(F, Inst);
2348 break;
2349 case IC_RetainRV:
2350 if (OptimizeRetainRVCall(F, Inst))
2351 continue;
2352 break;
2353 case IC_AutoreleaseRV:
2354 OptimizeAutoreleaseRVCall(F, Inst);
2355 break;
2356 }
2357
2358 // objc_autorelease(x) -> objc_release(x) if x is otherwise unused.
2359 if (IsAutorelease(Class) && Inst->use_empty()) {
2360 CallInst *Call = cast<CallInst>(Inst);
2361 const Value *Arg = Call->getArgOperand(0);
2362 Arg = FindSingleUseIdentifiedObject(Arg);
2363 if (Arg) {
2364 Changed = true;
2365 ++NumAutoreleases;
2366
2367 // Create the declaration lazily.
2368 LLVMContext &C = Inst->getContext();
2369 CallInst *NewCall =
2370 CallInst::Create(getReleaseCallee(F.getParent()),
2371 Call->getArgOperand(0), "", Call);
2372 NewCall->setMetadata(ImpreciseReleaseMDKind,
2373 MDNode::get(C, ArrayRef<Value *>()));
2374 EraseInstruction(Call);
2375 Inst = NewCall;
2376 Class = IC_Release;
2377 }
2378 }
2379
2380 // For functions which can never be passed stack arguments, add
2381 // a tail keyword.
2382 if (IsAlwaysTail(Class)) {
2383 Changed = true;
2384 cast<CallInst>(Inst)->setTailCall();
2385 }
2386
2387 // Set nounwind as needed.
2388 if (IsNoThrow(Class)) {
2389 Changed = true;
2390 cast<CallInst>(Inst)->setDoesNotThrow();
2391 }
2392
2393 if (!IsNoopOnNull(Class)) {
2394 UsedInThisFunction |= 1 << Class;
2395 continue;
2396 }
2397
2398 const Value *Arg = GetObjCArg(Inst);
2399
2400 // ARC calls with null are no-ops. Delete them.
2401 if (isNullOrUndef(Arg)) {
2402 Changed = true;
2403 ++NumNoops;
2404 EraseInstruction(Inst);
2405 continue;
2406 }
2407
2408 // Keep track of which of retain, release, autorelease, and retain_block
2409 // are actually present in this function.
2410 UsedInThisFunction |= 1 << Class;
2411
2412 // If Arg is a PHI, and one or more incoming values to the
2413 // PHI are null, and the call is control-equivalent to the PHI, and there
2414 // are no relevant side effects between the PHI and the call, the call
2415 // could be pushed up to just those paths with non-null incoming values.
2416 // For now, don't bother splitting critical edges for this.
2417 SmallVector<std::pair<Instruction *, const Value *>, 4> Worklist;
2418 Worklist.push_back(std::make_pair(Inst, Arg));
2419 do {
2420 std::pair<Instruction *, const Value *> Pair = Worklist.pop_back_val();
2421 Inst = Pair.first;
2422 Arg = Pair.second;
2423
2424 const PHINode *PN = dyn_cast<PHINode>(Arg);
2425 if (!PN) continue;
2426
2427 // Determine if the PHI has any null operands, or any incoming
2428 // critical edges.
2429 bool HasNull = false;
2430 bool HasCriticalEdges = false;
2431 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
2432 Value *Incoming =
2433 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
2434 if (isNullOrUndef(Incoming))
2435 HasNull = true;
2436 else if (cast<TerminatorInst>(PN->getIncomingBlock(i)->back())
2437 .getNumSuccessors() != 1) {
2438 HasCriticalEdges = true;
2439 break;
2440 }
2441 }
2442 // If we have null operands and no critical edges, optimize.
2443 if (!HasCriticalEdges && HasNull) {
2444 SmallPtrSet<Instruction *, 4> DependingInstructions;
2445 SmallPtrSet<const BasicBlock *, 4> Visited;
2446
2447 // Check that there is nothing that cares about the reference
2448 // count between the call and the phi.
Dan Gohman511568d2012-04-13 00:59:57 +00002449 switch (Class) {
2450 case IC_Retain:
2451 case IC_RetainBlock:
2452 // These can always be moved up.
2453 break;
2454 case IC_Release:
Dan Gohman0daef3d2012-05-08 23:39:44 +00002455 // These can't be moved across things that care about the retain
2456 // count.
Dan Gohman511568d2012-04-13 00:59:57 +00002457 FindDependencies(NeedsPositiveRetainCount, Arg,
2458 Inst->getParent(), Inst,
2459 DependingInstructions, Visited, PA);
2460 break;
2461 case IC_Autorelease:
2462 // These can't be moved across autorelease pool scope boundaries.
2463 FindDependencies(AutoreleasePoolBoundary, Arg,
2464 Inst->getParent(), Inst,
2465 DependingInstructions, Visited, PA);
2466 break;
2467 case IC_RetainRV:
2468 case IC_AutoreleaseRV:
2469 // Don't move these; the RV optimization depends on the autoreleaseRV
2470 // being tail called, and the retainRV being immediately after a call
2471 // (which might still happen if we get lucky with codegen layout, but
2472 // it's not worth taking the chance).
2473 continue;
2474 default:
2475 llvm_unreachable("Invalid dependence flavor");
2476 }
2477
John McCall9fbd3182011-06-15 23:37:01 +00002478 if (DependingInstructions.size() == 1 &&
2479 *DependingInstructions.begin() == PN) {
2480 Changed = true;
2481 ++NumPartialNoops;
2482 // Clone the call into each predecessor that has a non-null value.
2483 CallInst *CInst = cast<CallInst>(Inst);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002484 Type *ParamTy = CInst->getArgOperand(0)->getType();
John McCall9fbd3182011-06-15 23:37:01 +00002485 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
2486 Value *Incoming =
2487 StripPointerCastsAndObjCCalls(PN->getIncomingValue(i));
2488 if (!isNullOrUndef(Incoming)) {
2489 CallInst *Clone = cast<CallInst>(CInst->clone());
2490 Value *Op = PN->getIncomingValue(i);
2491 Instruction *InsertPos = &PN->getIncomingBlock(i)->back();
2492 if (Op->getType() != ParamTy)
2493 Op = new BitCastInst(Op, ParamTy, "", InsertPos);
2494 Clone->setArgOperand(0, Op);
2495 Clone->insertBefore(InsertPos);
2496 Worklist.push_back(std::make_pair(Clone, Incoming));
2497 }
2498 }
2499 // Erase the original call.
2500 EraseInstruction(CInst);
2501 continue;
2502 }
2503 }
2504 } while (!Worklist.empty());
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00002505
Michael Gottesman5c0ae472013-01-04 21:29:57 +00002506 DEBUG(dbgs() << "ObjCARCOpt::OptimizeIndividualCalls: Finished Queue.\n\n");
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00002507
John McCall9fbd3182011-06-15 23:37:01 +00002508 }
2509}
2510
2511/// CheckForCFGHazards - Check for critical edges, loop boundaries, irreducible
2512/// control flow, or other CFG structures where moving code across the edge
2513/// would result in it being executed more.
2514void
2515ObjCARCOpt::CheckForCFGHazards(const BasicBlock *BB,
2516 DenseMap<const BasicBlock *, BBState> &BBStates,
2517 BBState &MyStates) const {
2518 // If any top-down local-use or possible-dec has a succ which is earlier in
2519 // the sequence, forget it.
Dan Gohman22cc4cc2012-03-02 01:13:53 +00002520 for (BBState::ptr_iterator I = MyStates.top_down_ptr_begin(),
John McCall9fbd3182011-06-15 23:37:01 +00002521 E = MyStates.top_down_ptr_end(); I != E; ++I)
2522 switch (I->second.GetSeq()) {
2523 default: break;
2524 case S_Use: {
2525 const Value *Arg = I->first;
2526 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
2527 bool SomeSuccHasSame = false;
2528 bool AllSuccsHaveSame = true;
Dan Gohman22cc4cc2012-03-02 01:13:53 +00002529 PtrState &S = I->second;
Dan Gohmandbe266b2012-02-17 18:59:53 +00002530 succ_const_iterator SI(TI), SE(TI, false);
2531
2532 // If the terminator is an invoke marked with the
2533 // clang.arc.no_objc_arc_exceptions metadata, the unwind edge can be
2534 // ignored, for ARC purposes.
2535 if (isa<InvokeInst>(TI) && TI->getMetadata(NoObjCARCExceptionsMDKind))
2536 --SE;
2537
2538 for (; SI != SE; ++SI) {
Dan Gohman70e29682012-03-02 01:26:46 +00002539 Sequence SuccSSeq = S_None;
2540 bool SuccSRRIKnownSafe = false;
Dan Gohman0daef3d2012-05-08 23:39:44 +00002541 // If VisitBottomUp has pointer information for this successor, take
2542 // what we know about it.
Dan Gohman447989c2012-04-27 18:56:31 +00002543 DenseMap<const BasicBlock *, BBState>::iterator BBI =
2544 BBStates.find(*SI);
2545 assert(BBI != BBStates.end());
2546 const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
2547 SuccSSeq = SuccS.GetSeq();
2548 SuccSRRIKnownSafe = SuccS.RRI.KnownSafe;
Dan Gohman70e29682012-03-02 01:26:46 +00002549 switch (SuccSSeq) {
John McCall9fbd3182011-06-15 23:37:01 +00002550 case S_None:
Dan Gohmana7f7db22011-08-12 00:26:31 +00002551 case S_CanRelease: {
Dan Gohman70e29682012-03-02 01:26:46 +00002552 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe) {
Dan Gohmana7f7db22011-08-12 00:26:31 +00002553 S.ClearSequenceProgress();
Dan Gohman70e29682012-03-02 01:26:46 +00002554 break;
2555 }
Dan Gohmana7f7db22011-08-12 00:26:31 +00002556 continue;
2557 }
John McCall9fbd3182011-06-15 23:37:01 +00002558 case S_Use:
2559 SomeSuccHasSame = true;
2560 break;
2561 case S_Stop:
2562 case S_Release:
2563 case S_MovableRelease:
Dan Gohman70e29682012-03-02 01:26:46 +00002564 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
Dan Gohmana7f7db22011-08-12 00:26:31 +00002565 AllSuccsHaveSame = false;
John McCall9fbd3182011-06-15 23:37:01 +00002566 break;
2567 case S_Retain:
2568 llvm_unreachable("bottom-up pointer in retain state!");
2569 }
Dan Gohmana7f7db22011-08-12 00:26:31 +00002570 }
John McCall9fbd3182011-06-15 23:37:01 +00002571 // If the state at the other end of any of the successor edges
2572 // matches the current state, require all edges to match. This
2573 // guards against loops in the middle of a sequence.
2574 if (SomeSuccHasSame && !AllSuccsHaveSame)
Dan Gohmana7f7db22011-08-12 00:26:31 +00002575 S.ClearSequenceProgress();
Dan Gohman2e68beb2011-12-12 18:13:53 +00002576 break;
John McCall9fbd3182011-06-15 23:37:01 +00002577 }
2578 case S_CanRelease: {
2579 const Value *Arg = I->first;
2580 const TerminatorInst *TI = cast<TerminatorInst>(&BB->back());
2581 bool SomeSuccHasSame = false;
2582 bool AllSuccsHaveSame = true;
Dan Gohman22cc4cc2012-03-02 01:13:53 +00002583 PtrState &S = I->second;
Dan Gohmandbe266b2012-02-17 18:59:53 +00002584 succ_const_iterator SI(TI), SE(TI, false);
2585
2586 // If the terminator is an invoke marked with the
2587 // clang.arc.no_objc_arc_exceptions metadata, the unwind edge can be
2588 // ignored, for ARC purposes.
2589 if (isa<InvokeInst>(TI) && TI->getMetadata(NoObjCARCExceptionsMDKind))
2590 --SE;
2591
2592 for (; SI != SE; ++SI) {
Dan Gohman70e29682012-03-02 01:26:46 +00002593 Sequence SuccSSeq = S_None;
2594 bool SuccSRRIKnownSafe = false;
Dan Gohman0daef3d2012-05-08 23:39:44 +00002595 // If VisitBottomUp has pointer information for this successor, take
2596 // what we know about it.
Dan Gohman447989c2012-04-27 18:56:31 +00002597 DenseMap<const BasicBlock *, BBState>::iterator BBI =
2598 BBStates.find(*SI);
2599 assert(BBI != BBStates.end());
2600 const PtrState &SuccS = BBI->second.getPtrBottomUpState(Arg);
2601 SuccSSeq = SuccS.GetSeq();
2602 SuccSRRIKnownSafe = SuccS.RRI.KnownSafe;
Dan Gohman70e29682012-03-02 01:26:46 +00002603 switch (SuccSSeq) {
Dan Gohmana7f7db22011-08-12 00:26:31 +00002604 case S_None: {
Dan Gohman70e29682012-03-02 01:26:46 +00002605 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe) {
Dan Gohmana7f7db22011-08-12 00:26:31 +00002606 S.ClearSequenceProgress();
Dan Gohman70e29682012-03-02 01:26:46 +00002607 break;
2608 }
Dan Gohmana7f7db22011-08-12 00:26:31 +00002609 continue;
2610 }
John McCall9fbd3182011-06-15 23:37:01 +00002611 case S_CanRelease:
2612 SomeSuccHasSame = true;
2613 break;
2614 case S_Stop:
2615 case S_Release:
2616 case S_MovableRelease:
2617 case S_Use:
Dan Gohman70e29682012-03-02 01:26:46 +00002618 if (!S.RRI.KnownSafe && !SuccSRRIKnownSafe)
Dan Gohmana7f7db22011-08-12 00:26:31 +00002619 AllSuccsHaveSame = false;
John McCall9fbd3182011-06-15 23:37:01 +00002620 break;
2621 case S_Retain:
2622 llvm_unreachable("bottom-up pointer in retain state!");
2623 }
Dan Gohmana7f7db22011-08-12 00:26:31 +00002624 }
John McCall9fbd3182011-06-15 23:37:01 +00002625 // If the state at the other end of any of the successor edges
2626 // matches the current state, require all edges to match. This
2627 // guards against loops in the middle of a sequence.
2628 if (SomeSuccHasSame && !AllSuccsHaveSame)
Dan Gohmana7f7db22011-08-12 00:26:31 +00002629 S.ClearSequenceProgress();
Dan Gohman2e68beb2011-12-12 18:13:53 +00002630 break;
John McCall9fbd3182011-06-15 23:37:01 +00002631 }
2632 }
2633}
2634
2635bool
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002636ObjCARCOpt::VisitInstructionBottomUp(Instruction *Inst,
Dan Gohmanfbab4a82012-03-23 17:47:54 +00002637 BasicBlock *BB,
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002638 MapVector<Value *, RRInfo> &Retains,
2639 BBState &MyStates) {
2640 bool NestingDetected = false;
2641 InstructionClass Class = GetInstructionClass(Inst);
2642 const Value *Arg = 0;
2643
2644 switch (Class) {
2645 case IC_Release: {
2646 Arg = GetObjCArg(Inst);
2647
2648 PtrState &S = MyStates.getPtrBottomUpState(Arg);
2649
2650 // If we see two releases in a row on the same pointer. If so, make
2651 // a note, and we'll cicle back to revisit it after we've
2652 // hopefully eliminated the second release, which may allow us to
2653 // eliminate the first release too.
2654 // Theoretically we could implement removal of nested retain+release
2655 // pairs by making PtrState hold a stack of states, but this is
2656 // simple and avoids adding overhead for the non-nested case.
2657 if (S.GetSeq() == S_Release || S.GetSeq() == S_MovableRelease)
2658 NestingDetected = true;
2659
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002660 MDNode *ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
Dan Gohman50ade652012-04-25 00:50:46 +00002661 S.ResetSequenceProgress(ReleaseMetadata ? S_MovableRelease : S_Release);
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002662 S.RRI.ReleaseMetadata = ReleaseMetadata;
Dan Gohman230768b2012-09-04 23:16:20 +00002663 S.RRI.KnownSafe = S.IsKnownIncremented();
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002664 S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
2665 S.RRI.Calls.insert(Inst);
2666
Dan Gohman230768b2012-09-04 23:16:20 +00002667 S.SetKnownPositiveRefCount();
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002668 break;
2669 }
2670 case IC_RetainBlock:
2671 // An objc_retainBlock call with just a use may need to be kept,
2672 // because it may be copying a block from the stack to the heap.
2673 if (!IsRetainBlockOptimizable(Inst))
2674 break;
2675 // FALLTHROUGH
2676 case IC_Retain:
2677 case IC_RetainRV: {
2678 Arg = GetObjCArg(Inst);
2679
2680 PtrState &S = MyStates.getPtrBottomUpState(Arg);
Dan Gohman50ade652012-04-25 00:50:46 +00002681 S.SetKnownPositiveRefCount();
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002682
2683 switch (S.GetSeq()) {
2684 case S_Stop:
2685 case S_Release:
2686 case S_MovableRelease:
2687 case S_Use:
2688 S.RRI.ReverseInsertPts.clear();
2689 // FALL THROUGH
2690 case S_CanRelease:
2691 // Don't do retain+release tracking for IC_RetainRV, because it's
2692 // better to let it remain as the first instruction after a call.
2693 if (Class != IC_RetainRV) {
2694 S.RRI.IsRetainBlock = Class == IC_RetainBlock;
2695 Retains[Inst] = S.RRI;
2696 }
2697 S.ClearSequenceProgress();
2698 break;
2699 case S_None:
2700 break;
2701 case S_Retain:
2702 llvm_unreachable("bottom-up pointer in retain state!");
2703 }
2704 return NestingDetected;
2705 }
2706 case IC_AutoreleasepoolPop:
2707 // Conservatively, clear MyStates for all known pointers.
2708 MyStates.clearBottomUpPointers();
2709 return NestingDetected;
2710 case IC_AutoreleasepoolPush:
2711 case IC_None:
2712 // These are irrelevant.
2713 return NestingDetected;
2714 default:
2715 break;
2716 }
2717
2718 // Consider any other possible effects of this instruction on each
2719 // pointer being tracked.
2720 for (BBState::ptr_iterator MI = MyStates.bottom_up_ptr_begin(),
2721 ME = MyStates.bottom_up_ptr_end(); MI != ME; ++MI) {
2722 const Value *Ptr = MI->first;
2723 if (Ptr == Arg)
2724 continue; // Handled above.
2725 PtrState &S = MI->second;
2726 Sequence Seq = S.GetSeq();
2727
2728 // Check for possible releases.
2729 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Dan Gohman50ade652012-04-25 00:50:46 +00002730 S.ClearRefCount();
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002731 switch (Seq) {
2732 case S_Use:
2733 S.SetSeq(S_CanRelease);
2734 continue;
2735 case S_CanRelease:
2736 case S_Release:
2737 case S_MovableRelease:
2738 case S_Stop:
2739 case S_None:
2740 break;
2741 case S_Retain:
2742 llvm_unreachable("bottom-up pointer in retain state!");
2743 }
2744 }
2745
2746 // Check for possible direct uses.
2747 switch (Seq) {
2748 case S_Release:
2749 case S_MovableRelease:
2750 if (CanUse(Inst, Ptr, PA, Class)) {
2751 assert(S.RRI.ReverseInsertPts.empty());
Dan Gohmanfbab4a82012-03-23 17:47:54 +00002752 // If this is an invoke instruction, we're scanning it as part of
2753 // one of its successor blocks, since we can't insert code after it
2754 // in its own block, and we don't want to split critical edges.
2755 if (isa<InvokeInst>(Inst))
2756 S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
2757 else
Francois Pichetb54a5ed2012-03-24 01:36:37 +00002758 S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002759 S.SetSeq(S_Use);
2760 } else if (Seq == S_Release &&
2761 (Class == IC_User || Class == IC_CallOrUser)) {
2762 // Non-movable releases depend on any possible objc pointer use.
2763 S.SetSeq(S_Stop);
2764 assert(S.RRI.ReverseInsertPts.empty());
Dan Gohmanfbab4a82012-03-23 17:47:54 +00002765 // As above; handle invoke specially.
2766 if (isa<InvokeInst>(Inst))
2767 S.RRI.ReverseInsertPts.insert(BB->getFirstInsertionPt());
2768 else
Francois Pichetb54a5ed2012-03-24 01:36:37 +00002769 S.RRI.ReverseInsertPts.insert(llvm::next(BasicBlock::iterator(Inst)));
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002770 }
2771 break;
2772 case S_Stop:
2773 if (CanUse(Inst, Ptr, PA, Class))
2774 S.SetSeq(S_Use);
2775 break;
2776 case S_CanRelease:
2777 case S_Use:
2778 case S_None:
2779 break;
2780 case S_Retain:
2781 llvm_unreachable("bottom-up pointer in retain state!");
2782 }
2783 }
2784
2785 return NestingDetected;
2786}
2787
2788bool
John McCall9fbd3182011-06-15 23:37:01 +00002789ObjCARCOpt::VisitBottomUp(BasicBlock *BB,
2790 DenseMap<const BasicBlock *, BBState> &BBStates,
2791 MapVector<Value *, RRInfo> &Retains) {
2792 bool NestingDetected = false;
2793 BBState &MyStates = BBStates[BB];
2794
2795 // Merge the states from each successor to compute the initial state
2796 // for the current block.
Dan Gohman40e46602012-08-27 18:31:36 +00002797 BBState::edge_iterator SI(MyStates.succ_begin()),
2798 SE(MyStates.succ_end());
2799 if (SI != SE) {
Dan Gohmaneeeb7752012-04-24 22:53:18 +00002800 const BasicBlock *Succ = *SI;
2801 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Succ);
2802 assert(I != BBStates.end());
2803 MyStates.InitFromSucc(I->second);
2804 ++SI;
2805 for (; SI != SE; ++SI) {
2806 Succ = *SI;
2807 I = BBStates.find(Succ);
2808 assert(I != BBStates.end());
2809 MyStates.MergeSucc(I->second);
2810 }
Dan Gohmandbe266b2012-02-17 18:59:53 +00002811 }
John McCall9fbd3182011-06-15 23:37:01 +00002812
2813 // Visit all the instructions, bottom-up.
2814 for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; --I) {
2815 Instruction *Inst = llvm::prior(I);
Dan Gohmanfbab4a82012-03-23 17:47:54 +00002816
2817 // Invoke instructions are visited as part of their successors (below).
2818 if (isa<InvokeInst>(Inst))
2819 continue;
2820
2821 NestingDetected |= VisitInstructionBottomUp(Inst, BB, Retains, MyStates);
2822 }
2823
Dan Gohman447989c2012-04-27 18:56:31 +00002824 // If there's a predecessor with an invoke, visit the invoke as if it were
2825 // part of this block, since we can't insert code after an invoke in its own
2826 // block, and we don't want to split critical edges.
Dan Gohmaneeeb7752012-04-24 22:53:18 +00002827 for (BBState::edge_iterator PI(MyStates.pred_begin()),
2828 PE(MyStates.pred_end()); PI != PE; ++PI) {
Dan Gohmanfbab4a82012-03-23 17:47:54 +00002829 BasicBlock *Pred = *PI;
Dan Gohman447989c2012-04-27 18:56:31 +00002830 if (InvokeInst *II = dyn_cast<InvokeInst>(&Pred->back()))
2831 NestingDetected |= VisitInstructionBottomUp(II, BB, Retains, MyStates);
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002832 }
John McCall9fbd3182011-06-15 23:37:01 +00002833
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002834 return NestingDetected;
2835}
John McCall9fbd3182011-06-15 23:37:01 +00002836
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002837bool
2838ObjCARCOpt::VisitInstructionTopDown(Instruction *Inst,
2839 DenseMap<Value *, RRInfo> &Releases,
2840 BBState &MyStates) {
2841 bool NestingDetected = false;
2842 InstructionClass Class = GetInstructionClass(Inst);
2843 const Value *Arg = 0;
John McCall9fbd3182011-06-15 23:37:01 +00002844
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002845 switch (Class) {
2846 case IC_RetainBlock:
2847 // An objc_retainBlock call with just a use may need to be kept,
2848 // because it may be copying a block from the stack to the heap.
2849 if (!IsRetainBlockOptimizable(Inst))
2850 break;
2851 // FALLTHROUGH
2852 case IC_Retain:
2853 case IC_RetainRV: {
2854 Arg = GetObjCArg(Inst);
2855
2856 PtrState &S = MyStates.getPtrTopDownState(Arg);
2857
2858 // Don't do retain+release tracking for IC_RetainRV, because it's
2859 // better to let it remain as the first instruction after a call.
2860 if (Class != IC_RetainRV) {
2861 // If we see two retains in a row on the same pointer. If so, make
John McCall9fbd3182011-06-15 23:37:01 +00002862 // a note, and we'll cicle back to revisit it after we've
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002863 // hopefully eliminated the second retain, which may allow us to
2864 // eliminate the first retain too.
John McCall9fbd3182011-06-15 23:37:01 +00002865 // Theoretically we could implement removal of nested retain+release
2866 // pairs by making PtrState hold a stack of states, but this is
2867 // simple and avoids adding overhead for the non-nested case.
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002868 if (S.GetSeq() == S_Retain)
John McCall9fbd3182011-06-15 23:37:01 +00002869 NestingDetected = true;
2870
Dan Gohman50ade652012-04-25 00:50:46 +00002871 S.ResetSequenceProgress(S_Retain);
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002872 S.RRI.IsRetainBlock = Class == IC_RetainBlock;
Dan Gohman230768b2012-09-04 23:16:20 +00002873 S.RRI.KnownSafe = S.IsKnownIncremented();
John McCall9fbd3182011-06-15 23:37:01 +00002874 S.RRI.Calls.insert(Inst);
John McCall9fbd3182011-06-15 23:37:01 +00002875 }
John McCall9fbd3182011-06-15 23:37:01 +00002876
Dan Gohman230768b2012-09-04 23:16:20 +00002877 S.SetKnownPositiveRefCount();
Dan Gohmanc72d3be2012-07-23 19:27:31 +00002878
2879 // A retain can be a potential use; procede to the generic checking
2880 // code below.
2881 break;
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002882 }
2883 case IC_Release: {
2884 Arg = GetObjCArg(Inst);
2885
2886 PtrState &S = MyStates.getPtrTopDownState(Arg);
Dan Gohman230768b2012-09-04 23:16:20 +00002887 S.ClearRefCount();
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002888
2889 switch (S.GetSeq()) {
2890 case S_Retain:
2891 case S_CanRelease:
2892 S.RRI.ReverseInsertPts.clear();
2893 // FALL THROUGH
2894 case S_Use:
2895 S.RRI.ReleaseMetadata = Inst->getMetadata(ImpreciseReleaseMDKind);
2896 S.RRI.IsTailCallRelease = cast<CallInst>(Inst)->isTailCall();
2897 Releases[Inst] = S.RRI;
2898 S.ClearSequenceProgress();
2899 break;
2900 case S_None:
2901 break;
2902 case S_Stop:
2903 case S_Release:
2904 case S_MovableRelease:
2905 llvm_unreachable("top-down pointer in release state!");
2906 }
2907 break;
2908 }
2909 case IC_AutoreleasepoolPop:
2910 // Conservatively, clear MyStates for all known pointers.
2911 MyStates.clearTopDownPointers();
2912 return NestingDetected;
2913 case IC_AutoreleasepoolPush:
2914 case IC_None:
2915 // These are irrelevant.
2916 return NestingDetected;
2917 default:
2918 break;
2919 }
2920
2921 // Consider any other possible effects of this instruction on each
2922 // pointer being tracked.
2923 for (BBState::ptr_iterator MI = MyStates.top_down_ptr_begin(),
2924 ME = MyStates.top_down_ptr_end(); MI != ME; ++MI) {
2925 const Value *Ptr = MI->first;
2926 if (Ptr == Arg)
2927 continue; // Handled above.
2928 PtrState &S = MI->second;
2929 Sequence Seq = S.GetSeq();
2930
2931 // Check for possible releases.
2932 if (CanAlterRefCount(Inst, Ptr, PA, Class)) {
Dan Gohman50ade652012-04-25 00:50:46 +00002933 S.ClearRefCount();
John McCall9fbd3182011-06-15 23:37:01 +00002934 switch (Seq) {
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002935 case S_Retain:
2936 S.SetSeq(S_CanRelease);
2937 assert(S.RRI.ReverseInsertPts.empty());
2938 S.RRI.ReverseInsertPts.insert(Inst);
2939
2940 // One call can't cause a transition from S_Retain to S_CanRelease
2941 // and S_CanRelease to S_Use. If we've made the first transition,
2942 // we're done.
2943 continue;
John McCall9fbd3182011-06-15 23:37:01 +00002944 case S_Use:
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002945 case S_CanRelease:
John McCall9fbd3182011-06-15 23:37:01 +00002946 case S_None:
2947 break;
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002948 case S_Stop:
2949 case S_Release:
2950 case S_MovableRelease:
2951 llvm_unreachable("top-down pointer in release state!");
John McCall9fbd3182011-06-15 23:37:01 +00002952 }
2953 }
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00002954
2955 // Check for possible direct uses.
2956 switch (Seq) {
2957 case S_CanRelease:
2958 if (CanUse(Inst, Ptr, PA, Class))
2959 S.SetSeq(S_Use);
2960 break;
2961 case S_Retain:
2962 case S_Use:
2963 case S_None:
2964 break;
2965 case S_Stop:
2966 case S_Release:
2967 case S_MovableRelease:
2968 llvm_unreachable("top-down pointer in release state!");
2969 }
John McCall9fbd3182011-06-15 23:37:01 +00002970 }
2971
2972 return NestingDetected;
2973}
2974
2975bool
2976ObjCARCOpt::VisitTopDown(BasicBlock *BB,
2977 DenseMap<const BasicBlock *, BBState> &BBStates,
2978 DenseMap<Value *, RRInfo> &Releases) {
2979 bool NestingDetected = false;
2980 BBState &MyStates = BBStates[BB];
2981
2982 // Merge the states from each predecessor to compute the initial state
2983 // for the current block.
Dan Gohman40e46602012-08-27 18:31:36 +00002984 BBState::edge_iterator PI(MyStates.pred_begin()),
2985 PE(MyStates.pred_end());
2986 if (PI != PE) {
Dan Gohmaneeeb7752012-04-24 22:53:18 +00002987 const BasicBlock *Pred = *PI;
2988 DenseMap<const BasicBlock *, BBState>::iterator I = BBStates.find(Pred);
2989 assert(I != BBStates.end());
2990 MyStates.InitFromPred(I->second);
2991 ++PI;
2992 for (; PI != PE; ++PI) {
2993 Pred = *PI;
2994 I = BBStates.find(Pred);
2995 assert(I != BBStates.end());
2996 MyStates.MergePred(I->second);
2997 }
Dan Gohmaneeeb7752012-04-24 22:53:18 +00002998 }
John McCall9fbd3182011-06-15 23:37:01 +00002999
3000 // Visit all the instructions, top-down.
3001 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
3002 Instruction *Inst = I;
Dan Gohmanc7f5c6e2012-03-22 18:24:56 +00003003 NestingDetected |= VisitInstructionTopDown(Inst, Releases, MyStates);
John McCall9fbd3182011-06-15 23:37:01 +00003004 }
3005
3006 CheckForCFGHazards(BB, BBStates, MyStates);
3007 return NestingDetected;
3008}
3009
Dan Gohman59a1c932011-12-12 19:42:25 +00003010static void
3011ComputePostOrders(Function &F,
3012 SmallVectorImpl<BasicBlock *> &PostOrder,
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003013 SmallVectorImpl<BasicBlock *> &ReverseCFGPostOrder,
3014 unsigned NoObjCARCExceptionsMDKind,
3015 DenseMap<const BasicBlock *, BBState> &BBStates) {
Dan Gohman59a1c932011-12-12 19:42:25 +00003016 /// Visited - The visited set, for doing DFS walks.
3017 SmallPtrSet<BasicBlock *, 16> Visited;
3018
3019 // Do DFS, computing the PostOrder.
3020 SmallPtrSet<BasicBlock *, 16> OnStack;
3021 SmallVector<std::pair<BasicBlock *, succ_iterator>, 16> SuccStack;
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003022
3023 // Functions always have exactly one entry block, and we don't have
3024 // any other block that we treat like an entry block.
Dan Gohman59a1c932011-12-12 19:42:25 +00003025 BasicBlock *EntryBB = &F.getEntryBlock();
Dan Gohman0daef3d2012-05-08 23:39:44 +00003026 BBState &MyStates = BBStates[EntryBB];
3027 MyStates.SetAsEntry();
3028 TerminatorInst *EntryTI = cast<TerminatorInst>(&EntryBB->back());
3029 SuccStack.push_back(std::make_pair(EntryBB, succ_iterator(EntryTI)));
Dan Gohman59a1c932011-12-12 19:42:25 +00003030 Visited.insert(EntryBB);
3031 OnStack.insert(EntryBB);
3032 do {
3033 dfs_next_succ:
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003034 BasicBlock *CurrBB = SuccStack.back().first;
3035 TerminatorInst *TI = cast<TerminatorInst>(&CurrBB->back());
3036 succ_iterator SE(TI, false);
Dan Gohman0daef3d2012-05-08 23:39:44 +00003037
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003038 // If the terminator is an invoke marked with the
3039 // clang.arc.no_objc_arc_exceptions metadata, the unwind edge can be
3040 // ignored, for ARC purposes.
3041 if (isa<InvokeInst>(TI) && TI->getMetadata(NoObjCARCExceptionsMDKind))
3042 --SE;
3043
3044 while (SuccStack.back().second != SE) {
3045 BasicBlock *SuccBB = *SuccStack.back().second++;
3046 if (Visited.insert(SuccBB)) {
Dan Gohman0daef3d2012-05-08 23:39:44 +00003047 TerminatorInst *TI = cast<TerminatorInst>(&SuccBB->back());
3048 SuccStack.push_back(std::make_pair(SuccBB, succ_iterator(TI)));
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003049 BBStates[CurrBB].addSucc(SuccBB);
Dan Gohman0daef3d2012-05-08 23:39:44 +00003050 BBState &SuccStates = BBStates[SuccBB];
3051 SuccStates.addPred(CurrBB);
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003052 OnStack.insert(SuccBB);
Dan Gohman59a1c932011-12-12 19:42:25 +00003053 goto dfs_next_succ;
3054 }
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003055
3056 if (!OnStack.count(SuccBB)) {
3057 BBStates[CurrBB].addSucc(SuccBB);
3058 BBStates[SuccBB].addPred(CurrBB);
3059 }
Dan Gohman59a1c932011-12-12 19:42:25 +00003060 }
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003061 OnStack.erase(CurrBB);
3062 PostOrder.push_back(CurrBB);
3063 SuccStack.pop_back();
Dan Gohman59a1c932011-12-12 19:42:25 +00003064 } while (!SuccStack.empty());
3065
3066 Visited.clear();
3067
Dan Gohman59a1c932011-12-12 19:42:25 +00003068 // Do reverse-CFG DFS, computing the reverse-CFG PostOrder.
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003069 // Functions may have many exits, and there also blocks which we treat
3070 // as exits due to ignored edges.
3071 SmallVector<std::pair<BasicBlock *, BBState::edge_iterator>, 16> PredStack;
3072 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
3073 BasicBlock *ExitBB = I;
3074 BBState &MyStates = BBStates[ExitBB];
3075 if (!MyStates.isExit())
3076 continue;
3077
Dan Gohman447989c2012-04-27 18:56:31 +00003078 MyStates.SetAsExit();
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003079
3080 PredStack.push_back(std::make_pair(ExitBB, MyStates.pred_begin()));
Dan Gohman59a1c932011-12-12 19:42:25 +00003081 Visited.insert(ExitBB);
3082 while (!PredStack.empty()) {
3083 reverse_dfs_next_succ:
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003084 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end();
3085 while (PredStack.back().second != PE) {
Dan Gohman59a1c932011-12-12 19:42:25 +00003086 BasicBlock *BB = *PredStack.back().second++;
Dan Gohman59a1c932011-12-12 19:42:25 +00003087 if (Visited.insert(BB)) {
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003088 PredStack.push_back(std::make_pair(BB, BBStates[BB].pred_begin()));
Dan Gohman59a1c932011-12-12 19:42:25 +00003089 goto reverse_dfs_next_succ;
3090 }
3091 }
3092 ReverseCFGPostOrder.push_back(PredStack.pop_back_val().first);
3093 }
3094 }
3095}
3096
John McCall9fbd3182011-06-15 23:37:01 +00003097// Visit - Visit the function both top-down and bottom-up.
3098bool
3099ObjCARCOpt::Visit(Function &F,
3100 DenseMap<const BasicBlock *, BBState> &BBStates,
3101 MapVector<Value *, RRInfo> &Retains,
3102 DenseMap<Value *, RRInfo> &Releases) {
Dan Gohman59a1c932011-12-12 19:42:25 +00003103
3104 // Use reverse-postorder traversals, because we magically know that loops
3105 // will be well behaved, i.e. they won't repeatedly call retain on a single
3106 // pointer without doing a release. We can't use the ReversePostOrderTraversal
3107 // class here because we want the reverse-CFG postorder to consider each
3108 // function exit point, and we want to ignore selected cycle edges.
3109 SmallVector<BasicBlock *, 16> PostOrder;
3110 SmallVector<BasicBlock *, 16> ReverseCFGPostOrder;
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003111 ComputePostOrders(F, PostOrder, ReverseCFGPostOrder,
3112 NoObjCARCExceptionsMDKind,
3113 BBStates);
Dan Gohman59a1c932011-12-12 19:42:25 +00003114
3115 // Use reverse-postorder on the reverse CFG for bottom-up.
John McCall9fbd3182011-06-15 23:37:01 +00003116 bool BottomUpNestingDetected = false;
Dan Gohmanb48ef3a2011-08-18 21:27:42 +00003117 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
Dan Gohman59a1c932011-12-12 19:42:25 +00003118 ReverseCFGPostOrder.rbegin(), E = ReverseCFGPostOrder.rend();
3119 I != E; ++I)
3120 BottomUpNestingDetected |= VisitBottomUp(*I, BBStates, Retains);
John McCall9fbd3182011-06-15 23:37:01 +00003121
Dan Gohman59a1c932011-12-12 19:42:25 +00003122 // Use reverse-postorder for top-down.
John McCall9fbd3182011-06-15 23:37:01 +00003123 bool TopDownNestingDetected = false;
Dan Gohman59a1c932011-12-12 19:42:25 +00003124 for (SmallVectorImpl<BasicBlock *>::const_reverse_iterator I =
3125 PostOrder.rbegin(), E = PostOrder.rend();
3126 I != E; ++I)
3127 TopDownNestingDetected |= VisitTopDown(*I, BBStates, Releases);
John McCall9fbd3182011-06-15 23:37:01 +00003128
3129 return TopDownNestingDetected && BottomUpNestingDetected;
3130}
3131
3132/// MoveCalls - Move the calls in RetainsToMove and ReleasesToMove.
3133void ObjCARCOpt::MoveCalls(Value *Arg,
3134 RRInfo &RetainsToMove,
3135 RRInfo &ReleasesToMove,
3136 MapVector<Value *, RRInfo> &Retains,
3137 DenseMap<Value *, RRInfo> &Releases,
Dan Gohman44280692011-07-22 22:29:21 +00003138 SmallVectorImpl<Instruction *> &DeadInsts,
3139 Module *M) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003140 Type *ArgTy = Arg->getType();
Dan Gohman44280692011-07-22 22:29:21 +00003141 Type *ParamTy = PointerType::getUnqual(Type::getInt8Ty(ArgTy->getContext()));
John McCall9fbd3182011-06-15 23:37:01 +00003142
3143 // Insert the new retain and release calls.
3144 for (SmallPtrSet<Instruction *, 2>::const_iterator
3145 PI = ReleasesToMove.ReverseInsertPts.begin(),
3146 PE = ReleasesToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
3147 Instruction *InsertPt = *PI;
3148 Value *MyArg = ArgTy == ParamTy ? Arg :
3149 new BitCastInst(Arg, ParamTy, "", InsertPt);
3150 CallInst *Call =
3151 CallInst::Create(RetainsToMove.IsRetainBlock ?
Dan Gohman44280692011-07-22 22:29:21 +00003152 getRetainBlockCallee(M) : getRetainCallee(M),
John McCall9fbd3182011-06-15 23:37:01 +00003153 MyArg, "", InsertPt);
3154 Call->setDoesNotThrow();
Dan Gohman79522dc2012-01-13 00:39:07 +00003155 if (RetainsToMove.IsRetainBlock)
Dan Gohmana974bea2011-10-17 22:53:25 +00003156 Call->setMetadata(CopyOnEscapeMDKind,
3157 MDNode::get(M->getContext(), ArrayRef<Value *>()));
Dan Gohman79522dc2012-01-13 00:39:07 +00003158 else
John McCall9fbd3182011-06-15 23:37:01 +00003159 Call->setTailCall();
3160 }
3161 for (SmallPtrSet<Instruction *, 2>::const_iterator
3162 PI = RetainsToMove.ReverseInsertPts.begin(),
3163 PE = RetainsToMove.ReverseInsertPts.end(); PI != PE; ++PI) {
Dan Gohmanfbab4a82012-03-23 17:47:54 +00003164 Instruction *InsertPt = *PI;
3165 Value *MyArg = ArgTy == ParamTy ? Arg :
3166 new BitCastInst(Arg, ParamTy, "", InsertPt);
3167 CallInst *Call = CallInst::Create(getReleaseCallee(M), MyArg,
3168 "", InsertPt);
3169 // Attach a clang.imprecise_release metadata tag, if appropriate.
3170 if (MDNode *M = ReleasesToMove.ReleaseMetadata)
3171 Call->setMetadata(ImpreciseReleaseMDKind, M);
3172 Call->setDoesNotThrow();
3173 if (ReleasesToMove.IsTailCallRelease)
3174 Call->setTailCall();
John McCall9fbd3182011-06-15 23:37:01 +00003175 }
3176
3177 // Delete the original retain and release calls.
3178 for (SmallPtrSet<Instruction *, 2>::const_iterator
3179 AI = RetainsToMove.Calls.begin(),
3180 AE = RetainsToMove.Calls.end(); AI != AE; ++AI) {
3181 Instruction *OrigRetain = *AI;
3182 Retains.blot(OrigRetain);
3183 DeadInsts.push_back(OrigRetain);
3184 }
3185 for (SmallPtrSet<Instruction *, 2>::const_iterator
3186 AI = ReleasesToMove.Calls.begin(),
3187 AE = ReleasesToMove.Calls.end(); AI != AE; ++AI) {
3188 Instruction *OrigRelease = *AI;
3189 Releases.erase(OrigRelease);
3190 DeadInsts.push_back(OrigRelease);
3191 }
3192}
3193
Dan Gohmand6bf2012012-04-13 18:57:48 +00003194/// PerformCodePlacement - Identify pairings between the retains and releases,
3195/// and delete and/or move them.
John McCall9fbd3182011-06-15 23:37:01 +00003196bool
3197ObjCARCOpt::PerformCodePlacement(DenseMap<const BasicBlock *, BBState>
3198 &BBStates,
3199 MapVector<Value *, RRInfo> &Retains,
Dan Gohman44280692011-07-22 22:29:21 +00003200 DenseMap<Value *, RRInfo> &Releases,
3201 Module *M) {
John McCall9fbd3182011-06-15 23:37:01 +00003202 bool AnyPairsCompletelyEliminated = false;
3203 RRInfo RetainsToMove;
3204 RRInfo ReleasesToMove;
3205 SmallVector<Instruction *, 4> NewRetains;
3206 SmallVector<Instruction *, 4> NewReleases;
3207 SmallVector<Instruction *, 8> DeadInsts;
3208
Dan Gohmand6bf2012012-04-13 18:57:48 +00003209 // Visit each retain.
John McCall9fbd3182011-06-15 23:37:01 +00003210 for (MapVector<Value *, RRInfo>::const_iterator I = Retains.begin(),
Dan Gohman597fece2011-09-29 22:25:23 +00003211 E = Retains.end(); I != E; ++I) {
3212 Value *V = I->first;
John McCall9fbd3182011-06-15 23:37:01 +00003213 if (!V) continue; // blotted
3214
3215 Instruction *Retain = cast<Instruction>(V);
3216 Value *Arg = GetObjCArg(Retain);
3217
Dan Gohman79522dc2012-01-13 00:39:07 +00003218 // If the object being released is in static or stack storage, we know it's
John McCall9fbd3182011-06-15 23:37:01 +00003219 // not being managed by ObjC reference counting, so we can delete pairs
3220 // regardless of what possible decrements or uses lie between them.
Dan Gohman79522dc2012-01-13 00:39:07 +00003221 bool KnownSafe = isa<Constant>(Arg) || isa<AllocaInst>(Arg);
Dan Gohman0daef3d2012-05-08 23:39:44 +00003222
Dan Gohman1b31ea82011-08-22 17:29:11 +00003223 // A constant pointer can't be pointing to an object on the heap. It may
3224 // be reference-counted, but it won't be deleted.
3225 if (const LoadInst *LI = dyn_cast<LoadInst>(Arg))
3226 if (const GlobalVariable *GV =
3227 dyn_cast<GlobalVariable>(
3228 StripPointerCastsAndObjCCalls(LI->getPointerOperand())))
3229 if (GV->isConstant())
3230 KnownSafe = true;
3231
John McCall9fbd3182011-06-15 23:37:01 +00003232 // If a pair happens in a region where it is known that the reference count
3233 // is already incremented, we can similarly ignore possible decrements.
Dan Gohmane6d5e882011-08-19 00:26:36 +00003234 bool KnownSafeTD = true, KnownSafeBU = true;
John McCall9fbd3182011-06-15 23:37:01 +00003235
3236 // Connect the dots between the top-down-collected RetainsToMove and
3237 // bottom-up-collected ReleasesToMove to form sets of related calls.
3238 // This is an iterative process so that we connect multiple releases
3239 // to multiple retains if needed.
3240 unsigned OldDelta = 0;
3241 unsigned NewDelta = 0;
3242 unsigned OldCount = 0;
3243 unsigned NewCount = 0;
3244 bool FirstRelease = true;
3245 bool FirstRetain = true;
3246 NewRetains.push_back(Retain);
3247 for (;;) {
3248 for (SmallVectorImpl<Instruction *>::const_iterator
3249 NI = NewRetains.begin(), NE = NewRetains.end(); NI != NE; ++NI) {
3250 Instruction *NewRetain = *NI;
3251 MapVector<Value *, RRInfo>::const_iterator It = Retains.find(NewRetain);
3252 assert(It != Retains.end());
3253 const RRInfo &NewRetainRRI = It->second;
Dan Gohmane6d5e882011-08-19 00:26:36 +00003254 KnownSafeTD &= NewRetainRRI.KnownSafe;
John McCall9fbd3182011-06-15 23:37:01 +00003255 for (SmallPtrSet<Instruction *, 2>::const_iterator
3256 LI = NewRetainRRI.Calls.begin(),
3257 LE = NewRetainRRI.Calls.end(); LI != LE; ++LI) {
3258 Instruction *NewRetainRelease = *LI;
3259 DenseMap<Value *, RRInfo>::const_iterator Jt =
3260 Releases.find(NewRetainRelease);
3261 if (Jt == Releases.end())
3262 goto next_retain;
3263 const RRInfo &NewRetainReleaseRRI = Jt->second;
3264 assert(NewRetainReleaseRRI.Calls.count(NewRetain));
3265 if (ReleasesToMove.Calls.insert(NewRetainRelease)) {
3266 OldDelta -=
3267 BBStates[NewRetainRelease->getParent()].GetAllPathCount();
3268
3269 // Merge the ReleaseMetadata and IsTailCallRelease values.
3270 if (FirstRelease) {
3271 ReleasesToMove.ReleaseMetadata =
3272 NewRetainReleaseRRI.ReleaseMetadata;
3273 ReleasesToMove.IsTailCallRelease =
3274 NewRetainReleaseRRI.IsTailCallRelease;
3275 FirstRelease = false;
3276 } else {
3277 if (ReleasesToMove.ReleaseMetadata !=
3278 NewRetainReleaseRRI.ReleaseMetadata)
3279 ReleasesToMove.ReleaseMetadata = 0;
3280 if (ReleasesToMove.IsTailCallRelease !=
3281 NewRetainReleaseRRI.IsTailCallRelease)
3282 ReleasesToMove.IsTailCallRelease = false;
3283 }
3284
3285 // Collect the optimal insertion points.
3286 if (!KnownSafe)
3287 for (SmallPtrSet<Instruction *, 2>::const_iterator
3288 RI = NewRetainReleaseRRI.ReverseInsertPts.begin(),
3289 RE = NewRetainReleaseRRI.ReverseInsertPts.end();
3290 RI != RE; ++RI) {
3291 Instruction *RIP = *RI;
3292 if (ReleasesToMove.ReverseInsertPts.insert(RIP))
3293 NewDelta -= BBStates[RIP->getParent()].GetAllPathCount();
3294 }
3295 NewReleases.push_back(NewRetainRelease);
3296 }
3297 }
3298 }
3299 NewRetains.clear();
3300 if (NewReleases.empty()) break;
3301
3302 // Back the other way.
3303 for (SmallVectorImpl<Instruction *>::const_iterator
3304 NI = NewReleases.begin(), NE = NewReleases.end(); NI != NE; ++NI) {
3305 Instruction *NewRelease = *NI;
3306 DenseMap<Value *, RRInfo>::const_iterator It =
3307 Releases.find(NewRelease);
3308 assert(It != Releases.end());
3309 const RRInfo &NewReleaseRRI = It->second;
Dan Gohmane6d5e882011-08-19 00:26:36 +00003310 KnownSafeBU &= NewReleaseRRI.KnownSafe;
John McCall9fbd3182011-06-15 23:37:01 +00003311 for (SmallPtrSet<Instruction *, 2>::const_iterator
3312 LI = NewReleaseRRI.Calls.begin(),
3313 LE = NewReleaseRRI.Calls.end(); LI != LE; ++LI) {
3314 Instruction *NewReleaseRetain = *LI;
3315 MapVector<Value *, RRInfo>::const_iterator Jt =
3316 Retains.find(NewReleaseRetain);
3317 if (Jt == Retains.end())
3318 goto next_retain;
3319 const RRInfo &NewReleaseRetainRRI = Jt->second;
3320 assert(NewReleaseRetainRRI.Calls.count(NewRelease));
3321 if (RetainsToMove.Calls.insert(NewReleaseRetain)) {
3322 unsigned PathCount =
3323 BBStates[NewReleaseRetain->getParent()].GetAllPathCount();
3324 OldDelta += PathCount;
3325 OldCount += PathCount;
3326
3327 // Merge the IsRetainBlock values.
3328 if (FirstRetain) {
3329 RetainsToMove.IsRetainBlock = NewReleaseRetainRRI.IsRetainBlock;
3330 FirstRetain = false;
3331 } else if (ReleasesToMove.IsRetainBlock !=
3332 NewReleaseRetainRRI.IsRetainBlock)
3333 // It's not possible to merge the sequences if one uses
3334 // objc_retain and the other uses objc_retainBlock.
3335 goto next_retain;
3336
3337 // Collect the optimal insertion points.
3338 if (!KnownSafe)
3339 for (SmallPtrSet<Instruction *, 2>::const_iterator
3340 RI = NewReleaseRetainRRI.ReverseInsertPts.begin(),
3341 RE = NewReleaseRetainRRI.ReverseInsertPts.end();
3342 RI != RE; ++RI) {
3343 Instruction *RIP = *RI;
3344 if (RetainsToMove.ReverseInsertPts.insert(RIP)) {
3345 PathCount = BBStates[RIP->getParent()].GetAllPathCount();
3346 NewDelta += PathCount;
3347 NewCount += PathCount;
3348 }
3349 }
3350 NewRetains.push_back(NewReleaseRetain);
3351 }
3352 }
3353 }
3354 NewReleases.clear();
3355 if (NewRetains.empty()) break;
3356 }
3357
Dan Gohmane6d5e882011-08-19 00:26:36 +00003358 // If the pointer is known incremented or nested, we can safely delete the
3359 // pair regardless of what's between them.
3360 if (KnownSafeTD || KnownSafeBU) {
John McCall9fbd3182011-06-15 23:37:01 +00003361 RetainsToMove.ReverseInsertPts.clear();
3362 ReleasesToMove.ReverseInsertPts.clear();
3363 NewCount = 0;
Dan Gohmana7f7db22011-08-12 00:26:31 +00003364 } else {
3365 // Determine whether the new insertion points we computed preserve the
3366 // balance of retain and release calls through the program.
3367 // TODO: If the fully aggressive solution isn't valid, try to find a
3368 // less aggressive solution which is.
3369 if (NewDelta != 0)
3370 goto next_retain;
John McCall9fbd3182011-06-15 23:37:01 +00003371 }
3372
3373 // Determine whether the original call points are balanced in the retain and
3374 // release calls through the program. If not, conservatively don't touch
3375 // them.
3376 // TODO: It's theoretically possible to do code motion in this case, as
3377 // long as the existing imbalances are maintained.
3378 if (OldDelta != 0)
3379 goto next_retain;
3380
John McCall9fbd3182011-06-15 23:37:01 +00003381 // Ok, everything checks out and we're all set. Let's move some code!
3382 Changed = true;
Dan Gohmaneeeb7752012-04-24 22:53:18 +00003383 assert(OldCount != 0 && "Unreachable code?");
3384 AnyPairsCompletelyEliminated = NewCount == 0;
John McCall9fbd3182011-06-15 23:37:01 +00003385 NumRRs += OldCount - NewCount;
Dan Gohman44280692011-07-22 22:29:21 +00003386 MoveCalls(Arg, RetainsToMove, ReleasesToMove,
3387 Retains, Releases, DeadInsts, M);
John McCall9fbd3182011-06-15 23:37:01 +00003388
3389 next_retain:
3390 NewReleases.clear();
3391 NewRetains.clear();
3392 RetainsToMove.clear();
3393 ReleasesToMove.clear();
3394 }
3395
3396 // Now that we're done moving everything, we can delete the newly dead
3397 // instructions, as we no longer need them as insert points.
3398 while (!DeadInsts.empty())
3399 EraseInstruction(DeadInsts.pop_back_val());
3400
3401 return AnyPairsCompletelyEliminated;
3402}
3403
3404/// OptimizeWeakCalls - Weak pointer optimizations.
3405void ObjCARCOpt::OptimizeWeakCalls(Function &F) {
3406 // First, do memdep-style RLE and S2L optimizations. We can't use memdep
3407 // itself because it uses AliasAnalysis and we need to do provenance
3408 // queries instead.
3409 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
3410 Instruction *Inst = &*I++;
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003411
Michael Gottesman5c0ae472013-01-04 21:29:57 +00003412 DEBUG(dbgs() << "ObjCARCOpt::OptimizeWeakCalls: Visiting: " << *Inst <<
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003413 "\n");
3414
John McCall9fbd3182011-06-15 23:37:01 +00003415 InstructionClass Class = GetBasicInstructionClass(Inst);
3416 if (Class != IC_LoadWeak && Class != IC_LoadWeakRetained)
3417 continue;
3418
3419 // Delete objc_loadWeak calls with no users.
3420 if (Class == IC_LoadWeak && Inst->use_empty()) {
3421 Inst->eraseFromParent();
3422 continue;
3423 }
3424
3425 // TODO: For now, just look for an earlier available version of this value
3426 // within the same block. Theoretically, we could do memdep-style non-local
3427 // analysis too, but that would want caching. A better approach would be to
3428 // use the technique that EarlyCSE uses.
3429 inst_iterator Current = llvm::prior(I);
3430 BasicBlock *CurrentBB = Current.getBasicBlockIterator();
3431 for (BasicBlock::iterator B = CurrentBB->begin(),
3432 J = Current.getInstructionIterator();
3433 J != B; --J) {
3434 Instruction *EarlierInst = &*llvm::prior(J);
3435 InstructionClass EarlierClass = GetInstructionClass(EarlierInst);
3436 switch (EarlierClass) {
3437 case IC_LoadWeak:
3438 case IC_LoadWeakRetained: {
3439 // If this is loading from the same pointer, replace this load's value
3440 // with that one.
3441 CallInst *Call = cast<CallInst>(Inst);
3442 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
3443 Value *Arg = Call->getArgOperand(0);
3444 Value *EarlierArg = EarlierCall->getArgOperand(0);
3445 switch (PA.getAA()->alias(Arg, EarlierArg)) {
3446 case AliasAnalysis::MustAlias:
3447 Changed = true;
3448 // If the load has a builtin retain, insert a plain retain for it.
3449 if (Class == IC_LoadWeakRetained) {
3450 CallInst *CI =
3451 CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
3452 "", Call);
3453 CI->setTailCall();
3454 }
3455 // Zap the fully redundant load.
3456 Call->replaceAllUsesWith(EarlierCall);
3457 Call->eraseFromParent();
3458 goto clobbered;
3459 case AliasAnalysis::MayAlias:
3460 case AliasAnalysis::PartialAlias:
3461 goto clobbered;
3462 case AliasAnalysis::NoAlias:
3463 break;
3464 }
3465 break;
3466 }
3467 case IC_StoreWeak:
3468 case IC_InitWeak: {
3469 // If this is storing to the same pointer and has the same size etc.
3470 // replace this load's value with the stored value.
3471 CallInst *Call = cast<CallInst>(Inst);
3472 CallInst *EarlierCall = cast<CallInst>(EarlierInst);
3473 Value *Arg = Call->getArgOperand(0);
3474 Value *EarlierArg = EarlierCall->getArgOperand(0);
3475 switch (PA.getAA()->alias(Arg, EarlierArg)) {
3476 case AliasAnalysis::MustAlias:
3477 Changed = true;
3478 // If the load has a builtin retain, insert a plain retain for it.
3479 if (Class == IC_LoadWeakRetained) {
3480 CallInst *CI =
3481 CallInst::Create(getRetainCallee(F.getParent()), EarlierCall,
3482 "", Call);
3483 CI->setTailCall();
3484 }
3485 // Zap the fully redundant load.
3486 Call->replaceAllUsesWith(EarlierCall->getArgOperand(1));
3487 Call->eraseFromParent();
3488 goto clobbered;
3489 case AliasAnalysis::MayAlias:
3490 case AliasAnalysis::PartialAlias:
3491 goto clobbered;
3492 case AliasAnalysis::NoAlias:
3493 break;
3494 }
3495 break;
3496 }
3497 case IC_MoveWeak:
3498 case IC_CopyWeak:
3499 // TOOD: Grab the copied value.
3500 goto clobbered;
3501 case IC_AutoreleasepoolPush:
3502 case IC_None:
3503 case IC_User:
3504 // Weak pointers are only modified through the weak entry points
3505 // (and arbitrary calls, which could call the weak entry points).
3506 break;
3507 default:
3508 // Anything else could modify the weak pointer.
3509 goto clobbered;
3510 }
3511 }
3512 clobbered:;
3513 }
3514
3515 // Then, for each destroyWeak with an alloca operand, check to see if
3516 // the alloca and all its users can be zapped.
3517 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
3518 Instruction *Inst = &*I++;
3519 InstructionClass Class = GetBasicInstructionClass(Inst);
3520 if (Class != IC_DestroyWeak)
3521 continue;
3522
3523 CallInst *Call = cast<CallInst>(Inst);
3524 Value *Arg = Call->getArgOperand(0);
3525 if (AllocaInst *Alloca = dyn_cast<AllocaInst>(Arg)) {
3526 for (Value::use_iterator UI = Alloca->use_begin(),
3527 UE = Alloca->use_end(); UI != UE; ++UI) {
Dan Gohman447989c2012-04-27 18:56:31 +00003528 const Instruction *UserInst = cast<Instruction>(*UI);
John McCall9fbd3182011-06-15 23:37:01 +00003529 switch (GetBasicInstructionClass(UserInst)) {
3530 case IC_InitWeak:
3531 case IC_StoreWeak:
3532 case IC_DestroyWeak:
3533 continue;
3534 default:
3535 goto done;
3536 }
3537 }
3538 Changed = true;
3539 for (Value::use_iterator UI = Alloca->use_begin(),
3540 UE = Alloca->use_end(); UI != UE; ) {
3541 CallInst *UserInst = cast<CallInst>(*UI++);
Dan Gohmance5d8b02012-05-18 22:17:29 +00003542 switch (GetBasicInstructionClass(UserInst)) {
3543 case IC_InitWeak:
3544 case IC_StoreWeak:
3545 // These functions return their second argument.
3546 UserInst->replaceAllUsesWith(UserInst->getArgOperand(1));
3547 break;
3548 case IC_DestroyWeak:
3549 // No return value.
3550 break;
3551 default:
Dan Gohman4c8f9092012-05-21 17:41:28 +00003552 llvm_unreachable("alloca really is used!");
Dan Gohmance5d8b02012-05-18 22:17:29 +00003553 }
John McCall9fbd3182011-06-15 23:37:01 +00003554 UserInst->eraseFromParent();
3555 }
3556 Alloca->eraseFromParent();
3557 done:;
3558 }
3559 }
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003560
Michael Gottesman5c0ae472013-01-04 21:29:57 +00003561 DEBUG(dbgs() << "ObjCARCOpt::OptimizeWeakCalls: Finished List.\n\n");
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003562
John McCall9fbd3182011-06-15 23:37:01 +00003563}
3564
3565/// OptimizeSequences - Identify program paths which execute sequences of
3566/// retains and releases which can be eliminated.
3567bool ObjCARCOpt::OptimizeSequences(Function &F) {
3568 /// Releases, Retains - These are used to store the results of the main flow
3569 /// analysis. These use Value* as the key instead of Instruction* so that the
3570 /// map stays valid when we get around to rewriting code and calls get
3571 /// replaced by arguments.
3572 DenseMap<Value *, RRInfo> Releases;
3573 MapVector<Value *, RRInfo> Retains;
3574
3575 /// BBStates, This is used during the traversal of the function to track the
3576 /// states for each identified object at each block.
3577 DenseMap<const BasicBlock *, BBState> BBStates;
3578
3579 // Analyze the CFG of the function, and all instructions.
3580 bool NestingDetected = Visit(F, BBStates, Retains, Releases);
3581
3582 // Transform.
Dan Gohman44280692011-07-22 22:29:21 +00003583 return PerformCodePlacement(BBStates, Retains, Releases, F.getParent()) &&
3584 NestingDetected;
John McCall9fbd3182011-06-15 23:37:01 +00003585}
3586
3587/// OptimizeReturns - Look for this pattern:
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +00003588/// \code
John McCall9fbd3182011-06-15 23:37:01 +00003589/// %call = call i8* @something(...)
3590/// %2 = call i8* @objc_retain(i8* %call)
3591/// %3 = call i8* @objc_autorelease(i8* %2)
3592/// ret i8* %3
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +00003593/// \endcode
John McCall9fbd3182011-06-15 23:37:01 +00003594/// And delete the retain and autorelease.
3595///
3596/// Otherwise if it's just this:
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +00003597/// \code
John McCall9fbd3182011-06-15 23:37:01 +00003598/// %3 = call i8* @objc_autorelease(i8* %2)
3599/// ret i8* %3
Dmitri Gribenkoc5252da2012-09-14 14:57:36 +00003600/// \endcode
John McCall9fbd3182011-06-15 23:37:01 +00003601/// convert the autorelease to autoreleaseRV.
3602void ObjCARCOpt::OptimizeReturns(Function &F) {
3603 if (!F.getReturnType()->isPointerTy())
3604 return;
3605
3606 SmallPtrSet<Instruction *, 4> DependingInstructions;
3607 SmallPtrSet<const BasicBlock *, 4> Visited;
3608 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI) {
3609 BasicBlock *BB = FI;
3610 ReturnInst *Ret = dyn_cast<ReturnInst>(&BB->back());
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003611
Michael Gottesman5c0ae472013-01-04 21:29:57 +00003612 DEBUG(dbgs() << "ObjCARCOpt::OptimizeReturns: Visiting: " << *Ret << "\n");
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003613
John McCall9fbd3182011-06-15 23:37:01 +00003614 if (!Ret) continue;
3615
3616 const Value *Arg = StripPointerCastsAndObjCCalls(Ret->getOperand(0));
3617 FindDependencies(NeedsPositiveRetainCount, Arg,
3618 BB, Ret, DependingInstructions, Visited, PA);
3619 if (DependingInstructions.size() != 1)
3620 goto next_block;
3621
3622 {
3623 CallInst *Autorelease =
3624 dyn_cast_or_null<CallInst>(*DependingInstructions.begin());
3625 if (!Autorelease)
3626 goto next_block;
Dan Gohman0daef3d2012-05-08 23:39:44 +00003627 InstructionClass AutoreleaseClass = GetBasicInstructionClass(Autorelease);
John McCall9fbd3182011-06-15 23:37:01 +00003628 if (!IsAutorelease(AutoreleaseClass))
3629 goto next_block;
3630 if (GetObjCArg(Autorelease) != Arg)
3631 goto next_block;
3632
3633 DependingInstructions.clear();
3634 Visited.clear();
3635
3636 // Check that there is nothing that can affect the reference
3637 // count between the autorelease and the retain.
3638 FindDependencies(CanChangeRetainCount, Arg,
3639 BB, Autorelease, DependingInstructions, Visited, PA);
3640 if (DependingInstructions.size() != 1)
3641 goto next_block;
3642
3643 {
3644 CallInst *Retain =
3645 dyn_cast_or_null<CallInst>(*DependingInstructions.begin());
3646
3647 // Check that we found a retain with the same argument.
3648 if (!Retain ||
3649 !IsRetain(GetBasicInstructionClass(Retain)) ||
3650 GetObjCArg(Retain) != Arg)
3651 goto next_block;
3652
3653 DependingInstructions.clear();
3654 Visited.clear();
3655
3656 // Convert the autorelease to an autoreleaseRV, since it's
3657 // returning the value.
3658 if (AutoreleaseClass == IC_Autorelease) {
3659 Autorelease->setCalledFunction(getAutoreleaseRVCallee(F.getParent()));
3660 AutoreleaseClass = IC_AutoreleaseRV;
3661 }
3662
3663 // Check that there is nothing that can affect the reference
3664 // count between the retain and the call.
Dan Gohman27e06662011-09-29 22:27:34 +00003665 // Note that Retain need not be in BB.
3666 FindDependencies(CanChangeRetainCount, Arg, Retain->getParent(), Retain,
John McCall9fbd3182011-06-15 23:37:01 +00003667 DependingInstructions, Visited, PA);
3668 if (DependingInstructions.size() != 1)
3669 goto next_block;
3670
3671 {
3672 CallInst *Call =
3673 dyn_cast_or_null<CallInst>(*DependingInstructions.begin());
3674
3675 // Check that the pointer is the return value of the call.
3676 if (!Call || Arg != Call)
3677 goto next_block;
3678
3679 // Check that the call is a regular call.
3680 InstructionClass Class = GetBasicInstructionClass(Call);
3681 if (Class != IC_CallOrUser && Class != IC_Call)
3682 goto next_block;
3683
3684 // If so, we can zap the retain and autorelease.
3685 Changed = true;
3686 ++NumRets;
3687 EraseInstruction(Retain);
3688 EraseInstruction(Autorelease);
3689 }
3690 }
3691 }
3692
3693 next_block:
3694 DependingInstructions.clear();
3695 Visited.clear();
3696 }
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003697
Michael Gottesman5c0ae472013-01-04 21:29:57 +00003698 DEBUG(dbgs() << "ObjCARCOpt::OptimizeReturns: Finished List.\n\n");
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00003699
John McCall9fbd3182011-06-15 23:37:01 +00003700}
3701
3702bool ObjCARCOpt::doInitialization(Module &M) {
3703 if (!EnableARCOpts)
3704 return false;
3705
Dan Gohmand6bf2012012-04-13 18:57:48 +00003706 // If nothing in the Module uses ARC, don't do anything.
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00003707 Run = ModuleHasARC(M);
3708 if (!Run)
3709 return false;
3710
John McCall9fbd3182011-06-15 23:37:01 +00003711 // Identify the imprecise release metadata kind.
3712 ImpreciseReleaseMDKind =
3713 M.getContext().getMDKindID("clang.imprecise_release");
Dan Gohmana974bea2011-10-17 22:53:25 +00003714 CopyOnEscapeMDKind =
3715 M.getContext().getMDKindID("clang.arc.copy_on_escape");
Dan Gohmandbe266b2012-02-17 18:59:53 +00003716 NoObjCARCExceptionsMDKind =
3717 M.getContext().getMDKindID("clang.arc.no_objc_arc_exceptions");
John McCall9fbd3182011-06-15 23:37:01 +00003718
John McCall9fbd3182011-06-15 23:37:01 +00003719 // Intuitively, objc_retain and others are nocapture, however in practice
3720 // they are not, because they return their argument value. And objc_release
Dan Gohman447989c2012-04-27 18:56:31 +00003721 // calls finalizers which can have arbitrary side effects.
John McCall9fbd3182011-06-15 23:37:01 +00003722
3723 // These are initialized lazily.
3724 RetainRVCallee = 0;
3725 AutoreleaseRVCallee = 0;
3726 ReleaseCallee = 0;
3727 RetainCallee = 0;
Dan Gohman44280692011-07-22 22:29:21 +00003728 RetainBlockCallee = 0;
John McCall9fbd3182011-06-15 23:37:01 +00003729 AutoreleaseCallee = 0;
3730
3731 return false;
3732}
3733
3734bool ObjCARCOpt::runOnFunction(Function &F) {
3735 if (!EnableARCOpts)
3736 return false;
3737
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00003738 // If nothing in the Module uses ARC, don't do anything.
3739 if (!Run)
3740 return false;
3741
John McCall9fbd3182011-06-15 23:37:01 +00003742 Changed = false;
3743
3744 PA.setAA(&getAnalysis<AliasAnalysis>());
3745
3746 // This pass performs several distinct transformations. As a compile-time aid
3747 // when compiling code that isn't ObjC, skip these if the relevant ObjC
3748 // library functions aren't declared.
3749
3750 // Preliminary optimizations. This also computs UsedInThisFunction.
3751 OptimizeIndividualCalls(F);
3752
3753 // Optimizations for weak pointers.
3754 if (UsedInThisFunction & ((1 << IC_LoadWeak) |
3755 (1 << IC_LoadWeakRetained) |
3756 (1 << IC_StoreWeak) |
3757 (1 << IC_InitWeak) |
3758 (1 << IC_CopyWeak) |
3759 (1 << IC_MoveWeak) |
3760 (1 << IC_DestroyWeak)))
3761 OptimizeWeakCalls(F);
3762
3763 // Optimizations for retain+release pairs.
3764 if (UsedInThisFunction & ((1 << IC_Retain) |
3765 (1 << IC_RetainRV) |
3766 (1 << IC_RetainBlock)))
3767 if (UsedInThisFunction & (1 << IC_Release))
3768 // Run OptimizeSequences until it either stops making changes or
3769 // no retain+release pair nesting is detected.
3770 while (OptimizeSequences(F)) {}
3771
3772 // Optimizations if objc_autorelease is used.
Dan Gohman0daef3d2012-05-08 23:39:44 +00003773 if (UsedInThisFunction & ((1 << IC_Autorelease) |
3774 (1 << IC_AutoreleaseRV)))
John McCall9fbd3182011-06-15 23:37:01 +00003775 OptimizeReturns(F);
3776
3777 return Changed;
3778}
3779
3780void ObjCARCOpt::releaseMemory() {
3781 PA.clear();
3782}
3783
3784//===----------------------------------------------------------------------===//
3785// ARC contraction.
3786//===----------------------------------------------------------------------===//
3787
3788// TODO: ObjCARCContract could insert PHI nodes when uses aren't
3789// dominated by single calls.
3790
John McCall9fbd3182011-06-15 23:37:01 +00003791#include "llvm/Analysis/Dominators.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +00003792#include "llvm/IR/InlineAsm.h"
3793#include "llvm/IR/Operator.h"
John McCall9fbd3182011-06-15 23:37:01 +00003794
3795STATISTIC(NumStoreStrongs, "Number objc_storeStrong calls formed");
3796
3797namespace {
3798 /// ObjCARCContract - Late ARC optimizations. These change the IR in a way
3799 /// that makes it difficult to be analyzed by ObjCARCOpt, so it's run late.
3800 class ObjCARCContract : public FunctionPass {
3801 bool Changed;
3802 AliasAnalysis *AA;
3803 DominatorTree *DT;
3804 ProvenanceAnalysis PA;
3805
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00003806 /// Run - A flag indicating whether this optimization pass should run.
3807 bool Run;
3808
John McCall9fbd3182011-06-15 23:37:01 +00003809 /// StoreStrongCallee, etc. - Declarations for ObjC runtime
3810 /// functions, for use in creating calls to them. These are initialized
3811 /// lazily to avoid cluttering up the Module with unused declarations.
3812 Constant *StoreStrongCallee,
3813 *RetainAutoreleaseCallee, *RetainAutoreleaseRVCallee;
3814
3815 /// RetainRVMarker - The inline asm string to insert between calls and
3816 /// RetainRV calls to make the optimization work on targets which need it.
3817 const MDString *RetainRVMarker;
3818
Dan Gohman0cdece42012-01-19 19:14:36 +00003819 /// StoreStrongCalls - The set of inserted objc_storeStrong calls. If
3820 /// at the end of walking the function we have found no alloca
3821 /// instructions, these calls can be marked "tail".
Dan Gohman0daef3d2012-05-08 23:39:44 +00003822 SmallPtrSet<CallInst *, 8> StoreStrongCalls;
Dan Gohman0cdece42012-01-19 19:14:36 +00003823
John McCall9fbd3182011-06-15 23:37:01 +00003824 Constant *getStoreStrongCallee(Module *M);
3825 Constant *getRetainAutoreleaseCallee(Module *M);
3826 Constant *getRetainAutoreleaseRVCallee(Module *M);
3827
3828 bool ContractAutorelease(Function &F, Instruction *Autorelease,
3829 InstructionClass Class,
3830 SmallPtrSet<Instruction *, 4>
3831 &DependingInstructions,
3832 SmallPtrSet<const BasicBlock *, 4>
3833 &Visited);
3834
3835 void ContractRelease(Instruction *Release,
3836 inst_iterator &Iter);
3837
3838 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
3839 virtual bool doInitialization(Module &M);
3840 virtual bool runOnFunction(Function &F);
3841
3842 public:
3843 static char ID;
3844 ObjCARCContract() : FunctionPass(ID) {
3845 initializeObjCARCContractPass(*PassRegistry::getPassRegistry());
3846 }
3847 };
3848}
3849
3850char ObjCARCContract::ID = 0;
3851INITIALIZE_PASS_BEGIN(ObjCARCContract,
3852 "objc-arc-contract", "ObjC ARC contraction", false, false)
3853INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
3854INITIALIZE_PASS_DEPENDENCY(DominatorTree)
3855INITIALIZE_PASS_END(ObjCARCContract,
3856 "objc-arc-contract", "ObjC ARC contraction", false, false)
3857
3858Pass *llvm::createObjCARCContractPass() {
3859 return new ObjCARCContract();
3860}
3861
3862void ObjCARCContract::getAnalysisUsage(AnalysisUsage &AU) const {
3863 AU.addRequired<AliasAnalysis>();
3864 AU.addRequired<DominatorTree>();
3865 AU.setPreservesCFG();
3866}
3867
3868Constant *ObjCARCContract::getStoreStrongCallee(Module *M) {
3869 if (!StoreStrongCallee) {
3870 LLVMContext &C = M->getContext();
Jay Foad5fdd6c82011-07-12 14:06:48 +00003871 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
3872 Type *I8XX = PointerType::getUnqual(I8X);
Dan Gohman0daef3d2012-05-08 23:39:44 +00003873 Type *Params[] = { I8XX, I8X };
John McCall9fbd3182011-06-15 23:37:01 +00003874
Bill Wendling034b94b2012-12-19 07:18:57 +00003875 AttributeSet Attribute = AttributeSet()
Bill Wendling99faa3b2012-12-07 23:16:57 +00003876 .addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00003877 Attribute::get(C, Attribute::NoUnwind))
3878 .addAttr(M->getContext(), 1, Attribute::get(C, Attribute::NoCapture));
John McCall9fbd3182011-06-15 23:37:01 +00003879
3880 StoreStrongCallee =
3881 M->getOrInsertFunction(
3882 "objc_storeStrong",
3883 FunctionType::get(Type::getVoidTy(C), Params, /*isVarArg=*/false),
Bill Wendling034b94b2012-12-19 07:18:57 +00003884 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00003885 }
3886 return StoreStrongCallee;
3887}
3888
3889Constant *ObjCARCContract::getRetainAutoreleaseCallee(Module *M) {
3890 if (!RetainAutoreleaseCallee) {
3891 LLVMContext &C = M->getContext();
Jay Foad5fdd6c82011-07-12 14:06:48 +00003892 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman0daef3d2012-05-08 23:39:44 +00003893 Type *Params[] = { I8X };
3894 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling034b94b2012-12-19 07:18:57 +00003895 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00003896 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00003897 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00003898 RetainAutoreleaseCallee =
Bill Wendling034b94b2012-12-19 07:18:57 +00003899 M->getOrInsertFunction("objc_retainAutorelease", FTy, Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00003900 }
3901 return RetainAutoreleaseCallee;
3902}
3903
3904Constant *ObjCARCContract::getRetainAutoreleaseRVCallee(Module *M) {
3905 if (!RetainAutoreleaseRVCallee) {
3906 LLVMContext &C = M->getContext();
Jay Foad5fdd6c82011-07-12 14:06:48 +00003907 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
Dan Gohman0daef3d2012-05-08 23:39:44 +00003908 Type *Params[] = { I8X };
3909 FunctionType *FTy = FunctionType::get(I8X, Params, /*isVarArg=*/false);
Bill Wendling034b94b2012-12-19 07:18:57 +00003910 AttributeSet Attribute =
Bill Wendling99faa3b2012-12-07 23:16:57 +00003911 AttributeSet().addAttr(M->getContext(), AttributeSet::FunctionIndex,
Bill Wendling034b94b2012-12-19 07:18:57 +00003912 Attribute::get(C, Attribute::NoUnwind));
John McCall9fbd3182011-06-15 23:37:01 +00003913 RetainAutoreleaseRVCallee =
3914 M->getOrInsertFunction("objc_retainAutoreleaseReturnValue", FTy,
Bill Wendling034b94b2012-12-19 07:18:57 +00003915 Attribute);
John McCall9fbd3182011-06-15 23:37:01 +00003916 }
3917 return RetainAutoreleaseRVCallee;
3918}
3919
Dan Gohman447989c2012-04-27 18:56:31 +00003920/// ContractAutorelease - Merge an autorelease with a retain into a fused call.
John McCall9fbd3182011-06-15 23:37:01 +00003921bool
3922ObjCARCContract::ContractAutorelease(Function &F, Instruction *Autorelease,
3923 InstructionClass Class,
3924 SmallPtrSet<Instruction *, 4>
3925 &DependingInstructions,
3926 SmallPtrSet<const BasicBlock *, 4>
3927 &Visited) {
3928 const Value *Arg = GetObjCArg(Autorelease);
3929
3930 // Check that there are no instructions between the retain and the autorelease
3931 // (such as an autorelease_pop) which may change the count.
3932 CallInst *Retain = 0;
3933 if (Class == IC_AutoreleaseRV)
3934 FindDependencies(RetainAutoreleaseRVDep, Arg,
3935 Autorelease->getParent(), Autorelease,
3936 DependingInstructions, Visited, PA);
3937 else
3938 FindDependencies(RetainAutoreleaseDep, Arg,
3939 Autorelease->getParent(), Autorelease,
3940 DependingInstructions, Visited, PA);
3941
3942 Visited.clear();
3943 if (DependingInstructions.size() != 1) {
3944 DependingInstructions.clear();
3945 return false;
3946 }
3947
3948 Retain = dyn_cast_or_null<CallInst>(*DependingInstructions.begin());
3949 DependingInstructions.clear();
3950
3951 if (!Retain ||
3952 GetBasicInstructionClass(Retain) != IC_Retain ||
3953 GetObjCArg(Retain) != Arg)
3954 return false;
3955
3956 Changed = true;
3957 ++NumPeeps;
3958
3959 if (Class == IC_AutoreleaseRV)
3960 Retain->setCalledFunction(getRetainAutoreleaseRVCallee(F.getParent()));
3961 else
3962 Retain->setCalledFunction(getRetainAutoreleaseCallee(F.getParent()));
3963
3964 EraseInstruction(Autorelease);
3965 return true;
3966}
3967
3968/// ContractRelease - Attempt to merge an objc_release with a store, load, and
3969/// objc_retain to form an objc_storeStrong. This can be a little tricky because
3970/// the instructions don't always appear in order, and there may be unrelated
3971/// intervening instructions.
3972void ObjCARCContract::ContractRelease(Instruction *Release,
3973 inst_iterator &Iter) {
3974 LoadInst *Load = dyn_cast<LoadInst>(GetObjCArg(Release));
Eli Friedman2bc3d522011-09-12 20:23:13 +00003975 if (!Load || !Load->isSimple()) return;
John McCall9fbd3182011-06-15 23:37:01 +00003976
3977 // For now, require everything to be in one basic block.
3978 BasicBlock *BB = Release->getParent();
3979 if (Load->getParent() != BB) return;
3980
Dan Gohman4670dac2012-05-08 23:34:08 +00003981 // Walk down to find the store and the release, which may be in either order.
Dan Gohman95b8cf12012-05-09 23:08:33 +00003982 BasicBlock::iterator I = Load, End = BB->end();
John McCall9fbd3182011-06-15 23:37:01 +00003983 ++I;
3984 AliasAnalysis::Location Loc = AA->getLocation(Load);
Dan Gohman4670dac2012-05-08 23:34:08 +00003985 StoreInst *Store = 0;
3986 bool SawRelease = false;
3987 for (; !Store || !SawRelease; ++I) {
Dan Gohman95b8cf12012-05-09 23:08:33 +00003988 if (I == End)
3989 return;
3990
Dan Gohman4670dac2012-05-08 23:34:08 +00003991 Instruction *Inst = I;
3992 if (Inst == Release) {
3993 SawRelease = true;
3994 continue;
3995 }
3996
3997 InstructionClass Class = GetBasicInstructionClass(Inst);
3998
3999 // Unrelated retains are harmless.
4000 if (IsRetain(Class))
4001 continue;
4002
4003 if (Store) {
4004 // The store is the point where we're going to put the objc_storeStrong,
4005 // so make sure there are no uses after it.
4006 if (CanUse(Inst, Load, PA, Class))
4007 return;
4008 } else if (AA->getModRefInfo(Inst, Loc) & AliasAnalysis::Mod) {
4009 // We are moving the load down to the store, so check for anything
4010 // else which writes to the memory between the load and the store.
4011 Store = dyn_cast<StoreInst>(Inst);
4012 if (!Store || !Store->isSimple()) return;
4013 if (Store->getPointerOperand() != Loc.Ptr) return;
4014 }
4015 }
John McCall9fbd3182011-06-15 23:37:01 +00004016
4017 Value *New = StripPointerCastsAndObjCCalls(Store->getValueOperand());
4018
4019 // Walk up to find the retain.
4020 I = Store;
4021 BasicBlock::iterator Begin = BB->begin();
4022 while (I != Begin && GetBasicInstructionClass(I) != IC_Retain)
4023 --I;
4024 Instruction *Retain = I;
4025 if (GetBasicInstructionClass(Retain) != IC_Retain) return;
4026 if (GetObjCArg(Retain) != New) return;
4027
4028 Changed = true;
4029 ++NumStoreStrongs;
4030
4031 LLVMContext &C = Release->getContext();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00004032 Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
4033 Type *I8XX = PointerType::getUnqual(I8X);
John McCall9fbd3182011-06-15 23:37:01 +00004034
4035 Value *Args[] = { Load->getPointerOperand(), New };
4036 if (Args[0]->getType() != I8XX)
4037 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
4038 if (Args[1]->getType() != I8X)
4039 Args[1] = new BitCastInst(Args[1], I8X, "", Store);
4040 CallInst *StoreStrong =
4041 CallInst::Create(getStoreStrongCallee(BB->getParent()->getParent()),
Jay Foada3efbb12011-07-15 08:37:34 +00004042 Args, "", Store);
John McCall9fbd3182011-06-15 23:37:01 +00004043 StoreStrong->setDoesNotThrow();
4044 StoreStrong->setDebugLoc(Store->getDebugLoc());
4045
Dan Gohman0cdece42012-01-19 19:14:36 +00004046 // We can't set the tail flag yet, because we haven't yet determined
4047 // whether there are any escaping allocas. Remember this call, so that
4048 // we can set the tail flag once we know it's safe.
4049 StoreStrongCalls.insert(StoreStrong);
4050
John McCall9fbd3182011-06-15 23:37:01 +00004051 if (&*Iter == Store) ++Iter;
4052 Store->eraseFromParent();
4053 Release->eraseFromParent();
4054 EraseInstruction(Retain);
4055 if (Load->use_empty())
4056 Load->eraseFromParent();
4057}
4058
4059bool ObjCARCContract::doInitialization(Module &M) {
Dan Gohmand6bf2012012-04-13 18:57:48 +00004060 // If nothing in the Module uses ARC, don't do anything.
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00004061 Run = ModuleHasARC(M);
4062 if (!Run)
4063 return false;
4064
John McCall9fbd3182011-06-15 23:37:01 +00004065 // These are initialized lazily.
4066 StoreStrongCallee = 0;
4067 RetainAutoreleaseCallee = 0;
4068 RetainAutoreleaseRVCallee = 0;
4069
4070 // Initialize RetainRVMarker.
4071 RetainRVMarker = 0;
4072 if (NamedMDNode *NMD =
4073 M.getNamedMetadata("clang.arc.retainAutoreleasedReturnValueMarker"))
4074 if (NMD->getNumOperands() == 1) {
4075 const MDNode *N = NMD->getOperand(0);
4076 if (N->getNumOperands() == 1)
4077 if (const MDString *S = dyn_cast<MDString>(N->getOperand(0)))
4078 RetainRVMarker = S;
4079 }
4080
4081 return false;
4082}
4083
4084bool ObjCARCContract::runOnFunction(Function &F) {
4085 if (!EnableARCOpts)
4086 return false;
4087
Dan Gohmanc4bcd4d2011-06-20 23:20:43 +00004088 // If nothing in the Module uses ARC, don't do anything.
4089 if (!Run)
4090 return false;
4091
John McCall9fbd3182011-06-15 23:37:01 +00004092 Changed = false;
4093 AA = &getAnalysis<AliasAnalysis>();
4094 DT = &getAnalysis<DominatorTree>();
4095
4096 PA.setAA(&getAnalysis<AliasAnalysis>());
4097
Dan Gohman0cdece42012-01-19 19:14:36 +00004098 // Track whether it's ok to mark objc_storeStrong calls with the "tail"
4099 // keyword. Be conservative if the function has variadic arguments.
4100 // It seems that functions which "return twice" are also unsafe for the
4101 // "tail" argument, because they are setjmp, which could need to
4102 // return to an earlier stack state.
Dan Gohman0daef3d2012-05-08 23:39:44 +00004103 bool TailOkForStoreStrongs = !F.isVarArg() &&
4104 !F.callsFunctionThatReturnsTwice();
Dan Gohman0cdece42012-01-19 19:14:36 +00004105
John McCall9fbd3182011-06-15 23:37:01 +00004106 // For ObjC library calls which return their argument, replace uses of the
4107 // argument with uses of the call return value, if it dominates the use. This
4108 // reduces register pressure.
4109 SmallPtrSet<Instruction *, 4> DependingInstructions;
4110 SmallPtrSet<const BasicBlock *, 4> Visited;
4111 for (inst_iterator I = inst_begin(&F), E = inst_end(&F); I != E; ) {
4112 Instruction *Inst = &*I++;
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00004113
4114 DEBUG(dbgs() << "ObjCARCContract: Visiting: " << *Inst << "\n");
4115
John McCall9fbd3182011-06-15 23:37:01 +00004116 // Only these library routines return their argument. In particular,
4117 // objc_retainBlock does not necessarily return its argument.
4118 InstructionClass Class = GetBasicInstructionClass(Inst);
4119 switch (Class) {
4120 case IC_Retain:
4121 case IC_FusedRetainAutorelease:
4122 case IC_FusedRetainAutoreleaseRV:
4123 break;
4124 case IC_Autorelease:
4125 case IC_AutoreleaseRV:
4126 if (ContractAutorelease(F, Inst, Class, DependingInstructions, Visited))
4127 continue;
4128 break;
4129 case IC_RetainRV: {
4130 // If we're compiling for a target which needs a special inline-asm
4131 // marker to do the retainAutoreleasedReturnValue optimization,
4132 // insert it now.
4133 if (!RetainRVMarker)
4134 break;
4135 BasicBlock::iterator BBI = Inst;
Dan Gohman58fb3402012-06-25 19:47:37 +00004136 BasicBlock *InstParent = Inst->getParent();
4137
4138 // Step up to see if the call immediately precedes the RetainRV call.
4139 // If it's an invoke, we have to cross a block boundary. And we have
4140 // to carefully dodge no-op instructions.
4141 do {
4142 if (&*BBI == InstParent->begin()) {
4143 BasicBlock *Pred = InstParent->getSinglePredecessor();
4144 if (!Pred)
4145 goto decline_rv_optimization;
4146 BBI = Pred->getTerminator();
4147 break;
4148 }
4149 --BBI;
4150 } while (isNoopInstruction(BBI));
4151
John McCall9fbd3182011-06-15 23:37:01 +00004152 if (&*BBI == GetObjCArg(Inst)) {
Michael Gottesman50652cd2013-01-03 07:32:41 +00004153 DEBUG(dbgs() << "ObjCARCContract: Adding inline asm marker for "
Michael Gottesman5c0ae472013-01-04 21:29:57 +00004154 "retainAutoreleasedReturnValue optimization.\n");
Dan Gohmand6bf2012012-04-13 18:57:48 +00004155 Changed = true;
John McCall9fbd3182011-06-15 23:37:01 +00004156 InlineAsm *IA =
4157 InlineAsm::get(FunctionType::get(Type::getVoidTy(Inst->getContext()),
4158 /*isVarArg=*/false),
4159 RetainRVMarker->getString(),
4160 /*Constraints=*/"", /*hasSideEffects=*/true);
4161 CallInst::Create(IA, "", Inst);
4162 }
Dan Gohman58fb3402012-06-25 19:47:37 +00004163 decline_rv_optimization:
John McCall9fbd3182011-06-15 23:37:01 +00004164 break;
4165 }
4166 case IC_InitWeak: {
4167 // objc_initWeak(p, null) => *p = null
4168 CallInst *CI = cast<CallInst>(Inst);
4169 if (isNullOrUndef(CI->getArgOperand(1))) {
4170 Value *Null =
4171 ConstantPointerNull::get(cast<PointerType>(CI->getType()));
4172 Changed = true;
4173 new StoreInst(Null, CI->getArgOperand(0), CI);
Michael Gottesman1ebbdcf2013-01-03 07:32:53 +00004174
4175 DEBUG(dbgs() << "OBJCARCContract: Old = " << *CI << "\n"
4176 << " New = " << *Null << "\n");
4177
John McCall9fbd3182011-06-15 23:37:01 +00004178 CI->replaceAllUsesWith(Null);
4179 CI->eraseFromParent();
4180 }
4181 continue;
4182 }
4183 case IC_Release:
4184 ContractRelease(Inst, I);
4185 continue;
Dan Gohman0cdece42012-01-19 19:14:36 +00004186 case IC_User:
4187 // Be conservative if the function has any alloca instructions.
4188 // Technically we only care about escaping alloca instructions,
4189 // but this is sufficient to handle some interesting cases.
4190 if (isa<AllocaInst>(Inst))
4191 TailOkForStoreStrongs = false;
4192 continue;
John McCall9fbd3182011-06-15 23:37:01 +00004193 default:
4194 continue;
4195 }
4196
Michael Gottesmanec21e2a2013-01-03 08:09:27 +00004197 DEBUG(dbgs() << "ObjCARCContract: Finished List.\n\n");
Michael Gottesman8f22c8b2013-01-01 16:05:48 +00004198
John McCall9fbd3182011-06-15 23:37:01 +00004199 // Don't use GetObjCArg because we don't want to look through bitcasts
4200 // and such; to do the replacement, the argument must have type i8*.
4201 const Value *Arg = cast<CallInst>(Inst)->getArgOperand(0);
4202 for (;;) {
4203 // If we're compiling bugpointed code, don't get in trouble.
4204 if (!isa<Instruction>(Arg) && !isa<Argument>(Arg))
4205 break;
4206 // Look through the uses of the pointer.
4207 for (Value::const_use_iterator UI = Arg->use_begin(), UE = Arg->use_end();
4208 UI != UE; ) {
4209 Use &U = UI.getUse();
4210 unsigned OperandNo = UI.getOperandNo();
4211 ++UI; // Increment UI now, because we may unlink its element.
Dan Gohmand6bf2012012-04-13 18:57:48 +00004212
4213 // If the call's return value dominates a use of the call's argument
4214 // value, rewrite the use to use the return value. We check for
4215 // reachability here because an unreachable call is considered to
4216 // trivially dominate itself, which would lead us to rewriting its
4217 // argument in terms of its return value, which would lead to
4218 // infinite loops in GetObjCArg.
Dan Gohman0daef3d2012-05-08 23:39:44 +00004219 if (DT->isReachableFromEntry(U) && DT->dominates(Inst, U)) {
Rafael Espindola2453dff2012-03-15 15:52:59 +00004220 Changed = true;
4221 Instruction *Replacement = Inst;
4222 Type *UseTy = U.get()->getType();
Dan Gohman6c189ec2012-04-13 01:08:28 +00004223 if (PHINode *PHI = dyn_cast<PHINode>(U.getUser())) {
Rafael Espindola2453dff2012-03-15 15:52:59 +00004224 // For PHI nodes, insert the bitcast in the predecessor block.
Dan Gohman0daef3d2012-05-08 23:39:44 +00004225 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo);
4226 BasicBlock *BB = PHI->getIncomingBlock(ValNo);
Rafael Espindola2453dff2012-03-15 15:52:59 +00004227 if (Replacement->getType() != UseTy)
4228 Replacement = new BitCastInst(Replacement, UseTy, "",
4229 &BB->back());
Dan Gohmand6bf2012012-04-13 18:57:48 +00004230 // While we're here, rewrite all edges for this PHI, rather
4231 // than just one use at a time, to minimize the number of
4232 // bitcasts we emit.
Dan Gohman447989c2012-04-27 18:56:31 +00004233 for (unsigned i = 0, e = PHI->getNumIncomingValues(); i != e; ++i)
Rafael Espindola2453dff2012-03-15 15:52:59 +00004234 if (PHI->getIncomingBlock(i) == BB) {
4235 // Keep the UI iterator valid.
4236 if (&PHI->getOperandUse(
4237 PHINode::getOperandNumForIncomingValue(i)) ==
4238 &UI.getUse())
4239 ++UI;
4240 PHI->setIncomingValue(i, Replacement);
4241 }
4242 } else {
4243 if (Replacement->getType() != UseTy)
Dan Gohman6c189ec2012-04-13 01:08:28 +00004244 Replacement = new BitCastInst(Replacement, UseTy, "",
4245 cast<Instruction>(U.getUser()));
Rafael Espindola2453dff2012-03-15 15:52:59 +00004246 U.set(Replacement);
John McCall9fbd3182011-06-15 23:37:01 +00004247 }
Rafael Espindola2453dff2012-03-15 15:52:59 +00004248 }
John McCall9fbd3182011-06-15 23:37:01 +00004249 }
4250
Dan Gohman447989c2012-04-27 18:56:31 +00004251 // If Arg is a no-op casted pointer, strip one level of casts and iterate.
John McCall9fbd3182011-06-15 23:37:01 +00004252 if (const BitCastInst *BI = dyn_cast<BitCastInst>(Arg))
4253 Arg = BI->getOperand(0);
4254 else if (isa<GEPOperator>(Arg) &&
4255 cast<GEPOperator>(Arg)->hasAllZeroIndices())
4256 Arg = cast<GEPOperator>(Arg)->getPointerOperand();
4257 else if (isa<GlobalAlias>(Arg) &&
4258 !cast<GlobalAlias>(Arg)->mayBeOverridden())
4259 Arg = cast<GlobalAlias>(Arg)->getAliasee();
4260 else
4261 break;
4262 }
4263 }
4264
Dan Gohman0cdece42012-01-19 19:14:36 +00004265 // If this function has no escaping allocas or suspicious vararg usage,
4266 // objc_storeStrong calls can be marked with the "tail" keyword.
4267 if (TailOkForStoreStrongs)
Dan Gohman0daef3d2012-05-08 23:39:44 +00004268 for (SmallPtrSet<CallInst *, 8>::iterator I = StoreStrongCalls.begin(),
Dan Gohman0cdece42012-01-19 19:14:36 +00004269 E = StoreStrongCalls.end(); I != E; ++I)
4270 (*I)->setTailCall();
4271 StoreStrongCalls.clear();
4272
John McCall9fbd3182011-06-15 23:37:01 +00004273 return Changed;
4274}