blob: 3c9570bd508f9cf37a094d6e79d33b8ff1f29e0c [file] [log] [blame]
Duncan Sands9e89ba32008-12-31 16:14:43 +00001//===- FunctionAttrs.cpp - Pass which marks functions readnone or readonly ===//
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 implements a simple interprocedural pass which walks the
11// call-graph, looking for functions which do not access or only read
Duncan Sands88e76752009-01-01 20:45:19 +000012// non-local memory, and marking them readnone/readonly. It addition,
13// it deduces which function arguments (of pointer type) do not escape,
14// and marks them nocapture. It implements this as a bottom-up traversal
15// of the call-graph.
Duncan Sands9e89ba32008-12-31 16:14:43 +000016//
17//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "functionattrs"
20#include "llvm/Transforms/IPO.h"
21#include "llvm/CallGraphSCCPass.h"
22#include "llvm/GlobalVariable.h"
23#include "llvm/Instructions.h"
24#include "llvm/Analysis/CallGraph.h"
25#include "llvm/ADT/SmallPtrSet.h"
26#include "llvm/ADT/Statistic.h"
27#include "llvm/Support/Compiler.h"
28#include "llvm/Support/InstIterator.h"
29using namespace llvm;
30
31STATISTIC(NumReadNone, "Number of functions marked readnone");
32STATISTIC(NumReadOnly, "Number of functions marked readonly");
33STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
34
35namespace {
36 struct VISIBILITY_HIDDEN FunctionAttrs : public CallGraphSCCPass {
37 static char ID; // Pass identification, replacement for typeid
38 FunctionAttrs() : CallGraphSCCPass(&ID) {}
39
40 // runOnSCC - Analyze the SCC, performing the transformation if possible.
41 bool runOnSCC(const std::vector<CallGraphNode *> &SCC);
42
43 // AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
44 bool AddReadAttrs(const std::vector<CallGraphNode *> &SCC);
45
46 // AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
47 bool AddNoCaptureAttrs(const std::vector<CallGraphNode *> &SCC);
48
Duncan Sands88e76752009-01-01 20:45:19 +000049 // isCaptured - Returns true if this pointer value escapes.
Duncan Sands9e89ba32008-12-31 16:14:43 +000050 bool isCaptured(Function &F, Value *V);
51
52 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.setPreservesCFG();
54 CallGraphSCCPass::getAnalysisUsage(AU);
55 }
56
57 bool PointsToLocalMemory(Value *V);
58 };
59}
60
61char FunctionAttrs::ID = 0;
62static RegisterPass<FunctionAttrs>
63X("functionattrs", "Deduce function attributes");
64
65Pass *llvm::createFunctionAttrsPass() { return new FunctionAttrs(); }
66
67
68/// PointsToLocalMemory - Returns whether the given pointer value points to
69/// memory that is local to the function. Global constants are considered
70/// local to all functions.
71bool FunctionAttrs::PointsToLocalMemory(Value *V) {
72 V = V->getUnderlyingObject();
73 // An alloca instruction defines local memory.
74 if (isa<AllocaInst>(V))
75 return true;
76 // A global constant counts as local memory for our purposes.
77 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
78 return GV->isConstant();
79 // Could look through phi nodes and selects here, but it doesn't seem
80 // to be useful in practice.
81 return false;
82}
83
84/// AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
85bool FunctionAttrs::AddReadAttrs(const std::vector<CallGraphNode *> &SCC) {
86 SmallPtrSet<CallGraphNode*, 8> SCCNodes;
87 CallGraph &CG = getAnalysis<CallGraph>();
88
89 // Fill SCCNodes with the elements of the SCC. Used for quickly
90 // looking up whether a given CallGraphNode is in this SCC.
91 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
92 SCCNodes.insert(SCC[i]);
93
94 // Check if any of the functions in the SCC read or write memory. If they
95 // write memory then they can't be marked readnone or readonly.
96 bool ReadsMemory = false;
97 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
98 Function *F = SCC[i]->getFunction();
99
100 if (F == 0)
101 // External node - may write memory. Just give up.
102 return false;
103
104 if (F->doesNotAccessMemory())
105 // Already perfect!
106 continue;
107
108 // Definitions with weak linkage may be overridden at linktime with
109 // something that writes memory, so treat them like declarations.
110 if (F->isDeclaration() || F->mayBeOverridden()) {
111 if (!F->onlyReadsMemory())
112 // May write memory. Just give up.
113 return false;
114
115 ReadsMemory = true;
116 continue;
117 }
118
119 // Scan the function body for instructions that may read or write memory.
120 for (inst_iterator II = inst_begin(F), E = inst_end(F); II != E; ++II) {
121 Instruction *I = &*II;
122
123 // Some instructions can be ignored even if they read or write memory.
124 // Detect these now, skipping to the next instruction if one is found.
125 CallSite CS = CallSite::get(I);
126 if (CS.getInstruction()) {
127 // Ignore calls to functions in the same SCC.
128 if (SCCNodes.count(CG[CS.getCalledFunction()]))
129 continue;
130 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
131 // Ignore loads from local memory.
132 if (PointsToLocalMemory(LI->getPointerOperand()))
133 continue;
134 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
135 // Ignore stores to local memory.
136 if (PointsToLocalMemory(SI->getPointerOperand()))
137 continue;
138 }
139
140 // Any remaining instructions need to be taken seriously! Check if they
141 // read or write memory.
142 if (I->mayWriteToMemory())
143 // Writes memory. Just give up.
144 return false;
145 // If this instruction may read memory, remember that.
146 ReadsMemory |= I->mayReadFromMemory();
147 }
148 }
149
150 // Success! Functions in this SCC do not access memory, or only read memory.
151 // Give them the appropriate attribute.
152 bool MadeChange = false;
153 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
154 Function *F = SCC[i]->getFunction();
155
156 if (F->doesNotAccessMemory())
157 // Already perfect!
158 continue;
159
160 if (F->onlyReadsMemory() && ReadsMemory)
161 // No change.
162 continue;
163
164 MadeChange = true;
165
166 // Clear out any existing attributes.
167 F->removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone);
168
169 // Add in the new attribute.
170 F->addAttribute(~0, ReadsMemory? Attribute::ReadOnly : Attribute::ReadNone);
171
172 if (ReadsMemory)
173 NumReadOnly++;
174 else
175 NumReadNone++;
176 }
177
178 return MadeChange;
179}
180
181/// isCaptured - Returns whether this pointer value is captured.
182bool FunctionAttrs::isCaptured(Function &F, Value *V) {
183 SmallVector<Use*, 16> Worklist;
184 SmallPtrSet<Use*, 16> Visited;
185
186 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end(); UI != UE;
187 ++UI) {
188 Use *U = &UI.getUse();
189 Visited.insert(U);
190 Worklist.push_back(U);
191 }
192
193 while (!Worklist.empty()) {
194 Use *U = Worklist.pop_back_val();
195 Instruction *I = cast<Instruction>(U->getUser());
196 V = U->get();
197
198 if (isa<LoadInst>(I)) {
199 // Loading a pointer does not cause it to escape.
200 continue;
201 }
202
203 if (isa<StoreInst>(I)) {
204 if (V == I->getOperand(0))
205 // Stored the pointer - escapes. TODO: improve this.
206 return true;
207 // Storing to the pointee does not cause the pointer to escape.
208 continue;
209 }
210
Nick Lewycky6b056862009-01-02 03:46:56 +0000211 if (isa<FreeInst>(I)) {
212 // Freeing a pointer does not cause it to escape.
213 continue;
214 }
215
Duncan Sands9e89ba32008-12-31 16:14:43 +0000216 CallSite CS = CallSite::get(I);
217 if (CS.getInstruction()) {
Nick Lewycky6b056862009-01-02 03:46:56 +0000218 // Does not escape if the callee is readonly and doesn't return a
219 // copy through its own return value.
220 if (CS.onlyReadsMemory() && I->getType() == Type::VoidTy)
221 continue;
222
223 // Does not escape if passed via 'nocapture' arguments. Note that
224 // calling a function pointer does not in itself cause that
Duncan Sands9e89ba32008-12-31 16:14:43 +0000225 // function pointer to escape. This is a subtle point considering
226 // that (for example) the callee might return its own address. It
227 // is analogous to saying that loading a value from a pointer does
228 // not cause the pointer to escape, even though the loaded value
229 // might be the pointer itself (think of self-referential objects).
230 CallSite::arg_iterator B = CS.arg_begin(), E = CS.arg_end();
231 for (CallSite::arg_iterator A = B; A != E; ++A)
232 if (A->get() == V && !CS.paramHasAttr(A-B+1, Attribute::NoCapture))
233 // The parameter is not marked 'nocapture' - escapes.
234 return true;
235 // Only passed via 'nocapture' arguments, or is the called function.
236 // Does not escape.
237 continue;
238 }
239
Duncan Sands10109412008-12-31 20:21:34 +0000240 if (isa<BitCastInst>(I) || isa<GetElementPtrInst>(I) ||
241 isa<PHINode>(I) || isa<SelectInst>(I)) {
242 // Type conversion, calculating an offset, or merging values.
243 // The original value does not escape via this if the new value doesn't.
244 // Note that in the case of a select instruction it is important that
245 // the value not be used as the condition, since otherwise one bit of
246 // information might escape. It cannot be the condition because it has
247 // the wrong type.
Duncan Sands9e89ba32008-12-31 16:14:43 +0000248 for (Instruction::use_iterator UI = I->use_begin(), UE = I->use_end();
249 UI != UE; ++UI) {
250 Use *U = &UI.getUse();
251 if (Visited.insert(U))
252 Worklist.push_back(U);
253 }
254 continue;
255 }
256
257 // Something else - be conservative and say it escapes.
258 return true;
259 }
260
261 return false;
262}
263
264/// AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
265bool FunctionAttrs::AddNoCaptureAttrs(const std::vector<CallGraphNode *> &SCC) {
266 bool Changed = false;
267
268 // Check each function in turn, determining which pointer arguments are not
269 // captured.
270 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
271 Function *F = SCC[i]->getFunction();
272
273 if (F == 0)
274 // External node - skip it;
275 continue;
276
Nick Lewycky6b056862009-01-02 03:46:56 +0000277 // If the function is readonly and doesn't return any value, we
278 // know that the pointer value can't escape. Mark all of its pointer
279 // arguments nocapture.
280 if (F->onlyReadsMemory() && F->getReturnType() == Type::VoidTy) {
281 for (Function::arg_iterator A = F->arg_begin(), E = F->arg_end();
282 A != E; ++A)
283 if (isa<PointerType>(A->getType()) && !A->hasNoCaptureAttr()) {
284 A->addAttr(Attribute::NoCapture);
285 ++NumNoCapture;
286 Changed = true;
287 }
288 continue;
289 }
290
Duncan Sands9e89ba32008-12-31 16:14:43 +0000291 // Definitions with weak linkage may be overridden at linktime with
292 // something that writes memory, so treat them like declarations.
293 if (F->isDeclaration() || F->mayBeOverridden())
294 continue;
295
296 for (Function::arg_iterator A = F->arg_begin(), E = F->arg_end(); A!=E; ++A)
Duncan Sands17da06f2008-12-31 18:08:59 +0000297 if (isa<PointerType>(A->getType()) && !A->hasNoCaptureAttr() &&
298 !isCaptured(*F, A)) {
Duncan Sands9e89ba32008-12-31 16:14:43 +0000299 A->addAttr(Attribute::NoCapture);
Nick Lewycky6b056862009-01-02 03:46:56 +0000300 ++NumNoCapture;
Duncan Sands9e89ba32008-12-31 16:14:43 +0000301 Changed = true;
302 }
303 }
304
305 return Changed;
306}
307
308bool FunctionAttrs::runOnSCC(const std::vector<CallGraphNode *> &SCC) {
309 bool Changed = AddReadAttrs(SCC);
310 Changed |= AddNoCaptureAttrs(SCC);
311 return Changed;
312}