blob: b2c62a0e8eeba4ec31984caaac7fd99bb992cc36 [file] [log] [blame]
Michael Gottesman5a8f9e72013-01-29 05:05:17 +00001//===- ObjCARCAPElim.cpp - ObjC ARC Optimization --------------------------===//
Michael Gottesmanfa0939f2013-01-28 04:12:07 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
Michael Gottesman5a8f9e72013-01-29 05:05:17 +000010///
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000011/// This file defines ObjC ARC optimizations. ARC stands for Automatic
12/// Reference Counting and is a system for managing reference counts for objects
13/// in Objective C.
14///
Michael Gottesman5a8f9e72013-01-29 05:05:17 +000015/// This specific file implements optimizations which remove extraneous
16/// autorelease pools.
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000017///
18/// WARNING: This file knows about certain library functions. It recognizes them
19/// by name, and hardwires knowledge of their semantics.
20///
21/// WARNING: This file knows about how certain Objective-C library functions are
22/// used. Naive LLVM IR transformations which would otherwise be
23/// behavior-preserving may break these assumptions.
24///
25//===----------------------------------------------------------------------===//
26
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000027#include "ObjCARC.h"
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000028#include "llvm/ADT/STLExtras.h"
29#include "llvm/IR/Constants.h"
Michael Gottesman13a5f1a2013-01-29 04:51:59 +000030#include "llvm/Support/Debug.h"
Timur Iskhodzhanov5d7ff002013-01-29 09:09:27 +000031#include "llvm/Support/raw_ostream.h"
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000032
33using namespace llvm;
34using namespace llvm::objcarc;
35
Chandler Carruth964daaa2014-04-22 02:55:47 +000036#define DEBUG_TYPE "objc-arc-ap-elim"
37
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000038namespace {
39 /// \brief Autorelease pool elimination.
40 class ObjCARCAPElim : public ModulePass {
Craig Topper3e4c6972014-03-05 09:10:37 +000041 void getAnalysisUsage(AnalysisUsage &AU) const override;
42 bool runOnModule(Module &M) override;
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000043
44 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
45 static bool OptimizeBB(BasicBlock *BB);
46
47 public:
48 static char ID;
49 ObjCARCAPElim() : ModulePass(ID) {
50 initializeObjCARCAPElimPass(*PassRegistry::getPassRegistry());
51 }
52 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +000053}
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000054
55char ObjCARCAPElim::ID = 0;
56INITIALIZE_PASS(ObjCARCAPElim,
57 "objc-arc-apelim",
58 "ObjC ARC autorelease pool elimination",
59 false, false)
60
61Pass *llvm::createObjCARCAPElimPass() {
62 return new ObjCARCAPElim();
63}
64
65void ObjCARCAPElim::getAnalysisUsage(AnalysisUsage &AU) const {
66 AU.setPreservesCFG();
67}
68
69/// Interprocedurally determine if calls made by the given call site can
70/// possibly produce autoreleases.
71bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) {
72 if (const Function *Callee = CS.getCalledFunction()) {
Sanjoy Das5ce32722016-04-08 00:48:30 +000073 if (!Callee->hasExactDefinition())
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000074 return true;
Duncan P. N. Exon Smith1e59a662015-10-19 23:20:14 +000075 for (const BasicBlock &BB : *Callee) {
76 for (const Instruction &I : BB)
77 if (ImmutableCallSite JCS = ImmutableCallSite(&I))
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000078 // This recursion depth limit is arbitrary. It's just great
79 // enough to cover known interesting testcases.
80 if (Depth < 3 &&
81 !JCS.onlyReadsMemory() &&
82 MayAutorelease(JCS, Depth + 1))
83 return true;
84 }
85 return false;
86 }
87
88 return true;
89}
90
91bool ObjCARCAPElim::OptimizeBB(BasicBlock *BB) {
92 bool Changed = false;
93
Craig Topperf40110f2014-04-25 05:29:35 +000094 Instruction *Push = nullptr;
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000095 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
Duncan P. N. Exon Smith1e59a662015-10-19 23:20:14 +000096 Instruction *Inst = &*I++;
Michael Gottesman6f729fa2015-02-19 19:51:32 +000097 switch (GetBasicARCInstKind(Inst)) {
98 case ARCInstKind::AutoreleasepoolPush:
Michael Gottesmanfa0939f2013-01-28 04:12:07 +000099 Push = Inst;
100 break;
Michael Gottesman6f729fa2015-02-19 19:51:32 +0000101 case ARCInstKind::AutoreleasepoolPop:
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000102 // If this pop matches a push and nothing in between can autorelease,
103 // zap the pair.
104 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
105 Changed = true;
106 DEBUG(dbgs() << "ObjCARCAPElim::OptimizeBB: Zapping push pop "
107 "autorelease pair:\n"
108 " Pop: " << *Inst << "\n"
109 << " Push: " << *Push << "\n");
110 Inst->eraseFromParent();
111 Push->eraseFromParent();
112 }
Craig Topperf40110f2014-04-25 05:29:35 +0000113 Push = nullptr;
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000114 break;
Michael Gottesman6f729fa2015-02-19 19:51:32 +0000115 case ARCInstKind::CallOrUser:
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000116 if (MayAutorelease(ImmutableCallSite(Inst)))
Craig Topperf40110f2014-04-25 05:29:35 +0000117 Push = nullptr;
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000118 break;
119 default:
120 break;
121 }
122 }
123
124 return Changed;
125}
126
127bool ObjCARCAPElim::runOnModule(Module &M) {
128 if (!EnableARCOpts)
129 return false;
130
131 // If nothing in the Module uses ARC, don't do anything.
132 if (!ModuleHasARC(M))
133 return false;
134
Andrew Kayloraa641a52016-04-22 22:06:11 +0000135 if (skipModule(M))
136 return false;
137
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000138 // Find the llvm.global_ctors variable, as the first step in
139 // identifying the global constructors. In theory, unnecessary autorelease
140 // pools could occur anywhere, but in practice it's pretty rare. Global
141 // ctors are a place where autorelease pools get inserted automatically,
142 // so it's pretty common for them to be unnecessary, and it's pretty
143 // profitable to eliminate them.
144 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
145 if (!GV)
146 return false;
147
148 assert(GV->hasDefinitiveInitializer() &&
149 "llvm.global_ctors is uncooperative!");
150
151 bool Changed = false;
152
153 // Dig the constructor functions out of GV's initializer.
154 ConstantArray *Init = cast<ConstantArray>(GV->getInitializer());
155 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end();
156 OI != OE; ++OI) {
157 Value *Op = *OI;
Reid Klecknerfceb76f2014-05-16 20:39:27 +0000158 // llvm.global_ctors is an array of three-field structs where the second
159 // members are constructor functions.
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000160 Function *F = dyn_cast<Function>(cast<ConstantStruct>(Op)->getOperand(1));
161 // If the user used a constructor function with the wrong signature and
162 // it got bitcasted or whatever, look the other way.
163 if (!F)
164 continue;
165 // Only look at function definitions.
166 if (F->isDeclaration())
167 continue;
168 // Only look at functions with one basic block.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000169 if (std::next(F->begin()) != F->end())
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000170 continue;
171 // Ok, a single-block constructor function definition. Try to optimize it.
Duncan P. N. Exon Smith1e59a662015-10-19 23:20:14 +0000172 Changed |= OptimizeBB(&F->front());
Michael Gottesmanfa0939f2013-01-28 04:12:07 +0000173 }
174
175 return Changed;
176}