blob: 2e3440066e6c5f680e4663702e7cbeed9a4761eb [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 Sandsb2f22792009-01-02 11:46:24 +000012// non-local memory, and marking them readnone/readonly. In addition,
13// it marks function arguments (of pointer type) 'nocapture' if a call
14// to the function does not create any copies of the pointer value that
15// outlive the call. This more or less means that the pointer is only
16// dereferenced, and not returned from the function or stored in a global.
17// This pass is implemented as a bottom-up traversal of the call-graph.
Duncan Sands9e89ba32008-12-31 16:14:43 +000018//
19//===----------------------------------------------------------------------===//
20
21#define DEBUG_TYPE "functionattrs"
22#include "llvm/Transforms/IPO.h"
23#include "llvm/CallGraphSCCPass.h"
24#include "llvm/GlobalVariable.h"
Devang Patelcd119912009-03-03 00:28:44 +000025#include "llvm/IntrinsicInst.h"
Dan Gohmanea8900f2010-11-08 17:12:04 +000026#include "llvm/LLVMContext.h"
Nick Lewycky199aa3c2009-03-08 06:20:47 +000027#include "llvm/Analysis/AliasAnalysis.h"
Duncan Sands9e89ba32008-12-31 16:14:43 +000028#include "llvm/Analysis/CallGraph.h"
Duncan Sands8556d2a2009-01-18 12:19:30 +000029#include "llvm/Analysis/CaptureTracking.h"
Duncan Sands338cd6b2009-01-02 11:54:37 +000030#include "llvm/ADT/SmallSet.h"
Duncan Sands9e89ba32008-12-31 16:14:43 +000031#include "llvm/ADT/Statistic.h"
Nick Lewycky199aa3c2009-03-08 06:20:47 +000032#include "llvm/ADT/UniqueVector.h"
Duncan Sands9e89ba32008-12-31 16:14:43 +000033#include "llvm/Support/InstIterator.h"
34using namespace llvm;
35
36STATISTIC(NumReadNone, "Number of functions marked readnone");
37STATISTIC(NumReadOnly, "Number of functions marked readonly");
38STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
Nick Lewycky199aa3c2009-03-08 06:20:47 +000039STATISTIC(NumNoAlias, "Number of function returns marked noalias");
Duncan Sands9e89ba32008-12-31 16:14:43 +000040
41namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000042 struct FunctionAttrs : public CallGraphSCCPass {
Duncan Sands9e89ba32008-12-31 16:14:43 +000043 static char ID; // Pass identification, replacement for typeid
Dan Gohman3c97f7a2010-11-08 16:10:15 +000044 FunctionAttrs() : CallGraphSCCPass(ID), AA(0) {
Owen Anderson081c34b2010-10-19 17:21:58 +000045 initializeFunctionAttrsPass(*PassRegistry::getPassRegistry());
46 }
Duncan Sands9e89ba32008-12-31 16:14:43 +000047
48 // runOnSCC - Analyze the SCC, performing the transformation if possible.
Chris Lattner2decb222010-04-16 22:42:17 +000049 bool runOnSCC(CallGraphSCC &SCC);
Duncan Sands9e89ba32008-12-31 16:14:43 +000050
51 // AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
Chris Lattner2decb222010-04-16 22:42:17 +000052 bool AddReadAttrs(const CallGraphSCC &SCC);
Duncan Sands9e89ba32008-12-31 16:14:43 +000053
54 // AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
Chris Lattner2decb222010-04-16 22:42:17 +000055 bool AddNoCaptureAttrs(const CallGraphSCC &SCC);
Duncan Sands9e89ba32008-12-31 16:14:43 +000056
Nick Lewycky199aa3c2009-03-08 06:20:47 +000057 // IsFunctionMallocLike - Does this function allocate new memory?
58 bool IsFunctionMallocLike(Function *F,
Chris Lattner98a27ce2009-08-31 04:09:04 +000059 SmallPtrSet<Function*, 8> &) const;
Nick Lewycky199aa3c2009-03-08 06:20:47 +000060
61 // AddNoAliasAttrs - Deduce noalias attributes for the SCC.
Chris Lattner2decb222010-04-16 22:42:17 +000062 bool AddNoAliasAttrs(const CallGraphSCC &SCC);
Nick Lewycky199aa3c2009-03-08 06:20:47 +000063
Duncan Sands9e89ba32008-12-31 16:14:43 +000064 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
65 AU.setPreservesCFG();
Dan Gohman3c97f7a2010-11-08 16:10:15 +000066 AU.addRequired<AliasAnalysis>();
Duncan Sands9e89ba32008-12-31 16:14:43 +000067 CallGraphSCCPass::getAnalysisUsage(AU);
68 }
69
Dan Gohman3c97f7a2010-11-08 16:10:15 +000070 private:
71 AliasAnalysis *AA;
Duncan Sands9e89ba32008-12-31 16:14:43 +000072 };
73}
74
75char FunctionAttrs::ID = 0;
Owen Andersonae0a7bc2010-10-13 22:00:45 +000076INITIALIZE_PASS_BEGIN(FunctionAttrs, "functionattrs",
77 "Deduce function attributes", false, false)
78INITIALIZE_AG_DEPENDENCY(CallGraph)
79INITIALIZE_PASS_END(FunctionAttrs, "functionattrs",
Owen Andersonce665bd2010-10-07 22:25:06 +000080 "Deduce function attributes", false, false)
Duncan Sands9e89ba32008-12-31 16:14:43 +000081
82Pass *llvm::createFunctionAttrsPass() { return new FunctionAttrs(); }
83
84
Duncan Sands9e89ba32008-12-31 16:14:43 +000085/// AddReadAttrs - Deduce readonly/readnone attributes for the SCC.
Chris Lattner2decb222010-04-16 22:42:17 +000086bool FunctionAttrs::AddReadAttrs(const CallGraphSCC &SCC) {
Chris Lattner98a27ce2009-08-31 04:09:04 +000087 SmallPtrSet<Function*, 8> SCCNodes;
Duncan Sands9e89ba32008-12-31 16:14:43 +000088
89 // Fill SCCNodes with the elements of the SCC. Used for quickly
90 // looking up whether a given CallGraphNode is in this SCC.
Chris Lattner2decb222010-04-16 22:42:17 +000091 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I)
92 SCCNodes.insert((*I)->getFunction());
Duncan Sands9e89ba32008-12-31 16:14:43 +000093
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;
Chris Lattner2decb222010-04-16 22:42:17 +000097 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
98 Function *F = (*I)->getFunction();
Duncan Sands9e89ba32008-12-31 16:14:43 +000099
100 if (F == 0)
101 // External node - may write memory. Just give up.
102 return false;
103
Dan Gohman6d44d642010-11-09 20:13:27 +0000104 AliasAnalysis::ModRefBehavior MRB = AA->getModRefBehavior(F);
105 if (MRB == AliasAnalysis::DoesNotAccessMemory)
Duncan Sands9e89ba32008-12-31 16:14:43 +0000106 // Already perfect!
107 continue;
108
109 // Definitions with weak linkage may be overridden at linktime with
110 // something that writes memory, so treat them like declarations.
111 if (F->isDeclaration() || F->mayBeOverridden()) {
Dan Gohman6d44d642010-11-09 20:13:27 +0000112 if (!AliasAnalysis::onlyReadsMemory(MRB))
Duncan Sands9e89ba32008-12-31 16:14:43 +0000113 // May write memory. Just give up.
114 return false;
115
116 ReadsMemory = true;
117 continue;
118 }
119
120 // Scan the function body for instructions that may read or write memory.
121 for (inst_iterator II = inst_begin(F), E = inst_end(F); II != E; ++II) {
122 Instruction *I = &*II;
123
124 // Some instructions can be ignored even if they read or write memory.
125 // Detect these now, skipping to the next instruction if one is found.
Gabor Greif7d3056b2010-07-28 22:50:26 +0000126 CallSite CS(cast<Value>(I));
Dan Gohman3c97f7a2010-11-08 16:10:15 +0000127 if (CS) {
Duncan Sands9e89ba32008-12-31 16:14:43 +0000128 // Ignore calls to functions in the same SCC.
Dan Gohman3c97f7a2010-11-08 16:10:15 +0000129 if (CS.getCalledFunction() && SCCNodes.count(CS.getCalledFunction()))
Duncan Sands9e89ba32008-12-31 16:14:43 +0000130 continue;
Dan Gohman42c31a72010-11-10 01:02:18 +0000131 AliasAnalysis::ModRefBehavior MRB = AA->getModRefBehavior(CS);
132 // If the call doesn't access arbitrary memory, we may be able to
133 // figure out something.
Dan Gohman432d08c2010-11-10 17:34:04 +0000134 if (AliasAnalysis::onlyAccessesArgPointees(MRB)) {
135 // If the call does access argument pointees, check each argument.
Dan Gohman42c31a72010-11-10 01:02:18 +0000136 if (MRB & AliasAnalysis::AccessesArguments)
137 // Check whether all pointer arguments point to local memory, and
138 // ignore calls that only access local memory.
139 for (CallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end();
140 CI != CE; ++CI) {
141 Value *Arg = *CI;
142 if (Arg->getType()->isPointerTy()) {
143 AliasAnalysis::Location Loc(Arg,
144 AliasAnalysis::UnknownSize,
145 I->getMetadata(LLVMContext::MD_tbaa));
146 if (!AA->pointsToConstantMemory(Loc, /*OrLocal=*/true)) {
147 if (MRB & AliasAnalysis::Mod)
148 // Writes non-local memory. Give up.
149 return false;
150 if (MRB & AliasAnalysis::Ref)
151 // Ok, it reads non-local memory.
152 ReadsMemory = true;
153 }
Dan Gohman40b6a192010-11-09 19:56:27 +0000154 }
155 }
Dan Gohman40b6a192010-11-09 19:56:27 +0000156 continue;
Dan Gohman3c97f7a2010-11-08 16:10:15 +0000157 }
Dan Gohman42c31a72010-11-10 01:02:18 +0000158 // The call could access any memory. If that includes writes, give up.
159 if (MRB & AliasAnalysis::Mod)
160 return false;
161 // If it reads, note it.
162 if (MRB & AliasAnalysis::Ref)
163 ReadsMemory = true;
164 continue;
Duncan Sands9e89ba32008-12-31 16:14:43 +0000165 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Duncan Sandsad6f5412010-10-30 12:59:44 +0000166 // Ignore non-volatile loads from local memory.
Dan Gohmanea8900f2010-11-08 17:12:04 +0000167 if (!LI->isVolatile()) {
168 AliasAnalysis::Location Loc(LI->getPointerOperand(),
169 AA->getTypeStoreSize(LI->getType()),
170 LI->getMetadata(LLVMContext::MD_tbaa));
171 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
172 continue;
173 }
Duncan Sands9e89ba32008-12-31 16:14:43 +0000174 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Duncan Sandsad6f5412010-10-30 12:59:44 +0000175 // Ignore non-volatile stores to local memory.
Dan Gohmanea8900f2010-11-08 17:12:04 +0000176 if (!SI->isVolatile()) {
177 const Type *StoredType = SI->getValueOperand()->getType();
178 AliasAnalysis::Location Loc(SI->getPointerOperand(),
179 AA->getTypeStoreSize(StoredType),
180 SI->getMetadata(LLVMContext::MD_tbaa));
181 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
182 continue;
183 }
Dan Gohman4cf0dcf2010-11-09 20:17:38 +0000184 } else if (VAArgInst *VI = dyn_cast<VAArgInst>(I)) {
185 // Ignore vaargs on local memory.
186 AliasAnalysis::Location Loc(VI->getPointerOperand(),
187 AliasAnalysis::UnknownSize,
188 VI->getMetadata(LLVMContext::MD_tbaa));
189 if (AA->pointsToConstantMemory(Loc, /*OrLocal=*/true))
190 continue;
Duncan Sands9e89ba32008-12-31 16:14:43 +0000191 }
192
193 // Any remaining instructions need to be taken seriously! Check if they
194 // read or write memory.
195 if (I->mayWriteToMemory())
196 // Writes memory. Just give up.
197 return false;
Duncan Sandscfd0ebe2009-05-06 08:42:00 +0000198
Duncan Sands9e89ba32008-12-31 16:14:43 +0000199 // If this instruction may read memory, remember that.
200 ReadsMemory |= I->mayReadFromMemory();
201 }
202 }
203
204 // Success! Functions in this SCC do not access memory, or only read memory.
205 // Give them the appropriate attribute.
206 bool MadeChange = false;
Chris Lattner2decb222010-04-16 22:42:17 +0000207 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
208 Function *F = (*I)->getFunction();
Duncan Sands9e89ba32008-12-31 16:14:43 +0000209
210 if (F->doesNotAccessMemory())
211 // Already perfect!
212 continue;
213
214 if (F->onlyReadsMemory() && ReadsMemory)
215 // No change.
216 continue;
217
218 MadeChange = true;
219
220 // Clear out any existing attributes.
221 F->removeAttribute(~0, Attribute::ReadOnly | Attribute::ReadNone);
222
223 // Add in the new attribute.
224 F->addAttribute(~0, ReadsMemory? Attribute::ReadOnly : Attribute::ReadNone);
225
226 if (ReadsMemory)
Duncan Sandsb2f22792009-01-02 11:46:24 +0000227 ++NumReadOnly;
Duncan Sands9e89ba32008-12-31 16:14:43 +0000228 else
Duncan Sandsb2f22792009-01-02 11:46:24 +0000229 ++NumReadNone;
Duncan Sands9e89ba32008-12-31 16:14:43 +0000230 }
231
232 return MadeChange;
233}
234
Duncan Sands9e89ba32008-12-31 16:14:43 +0000235/// AddNoCaptureAttrs - Deduce nocapture attributes for the SCC.
Chris Lattner2decb222010-04-16 22:42:17 +0000236bool FunctionAttrs::AddNoCaptureAttrs(const CallGraphSCC &SCC) {
Duncan Sands9e89ba32008-12-31 16:14:43 +0000237 bool Changed = false;
238
239 // Check each function in turn, determining which pointer arguments are not
240 // captured.
Chris Lattner2decb222010-04-16 22:42:17 +0000241 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
242 Function *F = (*I)->getFunction();
Duncan Sands9e89ba32008-12-31 16:14:43 +0000243
244 if (F == 0)
245 // External node - skip it;
246 continue;
247
248 // Definitions with weak linkage may be overridden at linktime with
249 // something that writes memory, so treat them like declarations.
250 if (F->isDeclaration() || F->mayBeOverridden())
251 continue;
252
253 for (Function::arg_iterator A = F->arg_begin(), E = F->arg_end(); A!=E; ++A)
Duncan Sands1df98592010-02-16 11:11:14 +0000254 if (A->getType()->isPointerTy() && !A->hasNoCaptureAttr() &&
Dan Gohmanf94b5ed2009-11-19 21:57:48 +0000255 !PointerMayBeCaptured(A, true, /*StoreCaptures=*/false)) {
Duncan Sands9e89ba32008-12-31 16:14:43 +0000256 A->addAttr(Attribute::NoCapture);
Nick Lewycky6b056862009-01-02 03:46:56 +0000257 ++NumNoCapture;
Duncan Sands9e89ba32008-12-31 16:14:43 +0000258 Changed = true;
259 }
260 }
261
262 return Changed;
263}
264
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000265/// IsFunctionMallocLike - A function is malloc-like if it returns either null
Nick Lewycky4bfba9d2009-03-08 17:08:09 +0000266/// or a pointer that doesn't alias any other pointer visible to the caller.
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000267bool FunctionAttrs::IsFunctionMallocLike(Function *F,
Chris Lattner98a27ce2009-08-31 04:09:04 +0000268 SmallPtrSet<Function*, 8> &SCCNodes) const {
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000269 UniqueVector<Value *> FlowsToReturn;
270 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I)
271 if (ReturnInst *Ret = dyn_cast<ReturnInst>(I->getTerminator()))
272 FlowsToReturn.insert(Ret->getReturnValue());
273
274 for (unsigned i = 0; i != FlowsToReturn.size(); ++i) {
275 Value *RetVal = FlowsToReturn[i+1]; // UniqueVector[0] is reserved.
276
277 if (Constant *C = dyn_cast<Constant>(RetVal)) {
278 if (!C->isNullValue() && !isa<UndefValue>(C))
279 return false;
280
281 continue;
282 }
283
284 if (isa<Argument>(RetVal))
285 return false;
286
287 if (Instruction *RVI = dyn_cast<Instruction>(RetVal))
288 switch (RVI->getOpcode()) {
289 // Extend the analysis by looking upwards.
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000290 case Instruction::BitCast:
Victor Hernandez83d63912009-09-18 22:35:49 +0000291 case Instruction::GetElementPtr:
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000292 FlowsToReturn.insert(RVI->getOperand(0));
293 continue;
294 case Instruction::Select: {
295 SelectInst *SI = cast<SelectInst>(RVI);
296 FlowsToReturn.insert(SI->getTrueValue());
297 FlowsToReturn.insert(SI->getFalseValue());
Chris Lattner439044f2009-09-27 21:29:28 +0000298 continue;
299 }
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000300 case Instruction::PHI: {
301 PHINode *PN = cast<PHINode>(RVI);
302 for (int i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
303 FlowsToReturn.insert(PN->getIncomingValue(i));
Chris Lattner439044f2009-09-27 21:29:28 +0000304 continue;
305 }
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000306
307 // Check whether the pointer came from an allocation.
308 case Instruction::Alloca:
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000309 break;
310 case Instruction::Call:
311 case Instruction::Invoke: {
312 CallSite CS(RVI);
313 if (CS.paramHasAttr(0, Attribute::NoAlias))
314 break;
315 if (CS.getCalledFunction() &&
Chris Lattner98a27ce2009-08-31 04:09:04 +0000316 SCCNodes.count(CS.getCalledFunction()))
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000317 break;
318 } // fall-through
319 default:
320 return false; // Did not come from an allocation.
321 }
322
Dan Gohmanf94b5ed2009-11-19 21:57:48 +0000323 if (PointerMayBeCaptured(RetVal, false, /*StoreCaptures=*/false))
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000324 return false;
325 }
326
327 return true;
328}
329
330/// AddNoAliasAttrs - Deduce noalias attributes for the SCC.
Chris Lattner2decb222010-04-16 22:42:17 +0000331bool FunctionAttrs::AddNoAliasAttrs(const CallGraphSCC &SCC) {
Chris Lattner98a27ce2009-08-31 04:09:04 +0000332 SmallPtrSet<Function*, 8> SCCNodes;
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000333
334 // Fill SCCNodes with the elements of the SCC. Used for quickly
335 // looking up whether a given CallGraphNode is in this SCC.
Chris Lattner2decb222010-04-16 22:42:17 +0000336 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I)
337 SCCNodes.insert((*I)->getFunction());
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000338
Nick Lewycky4bfba9d2009-03-08 17:08:09 +0000339 // Check each function in turn, determining which functions return noalias
340 // pointers.
Chris Lattner2decb222010-04-16 22:42:17 +0000341 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
342 Function *F = (*I)->getFunction();
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000343
344 if (F == 0)
345 // External node - skip it;
346 return false;
347
348 // Already noalias.
349 if (F->doesNotAlias(0))
350 continue;
351
352 // Definitions with weak linkage may be overridden at linktime, so
353 // treat them like declarations.
354 if (F->isDeclaration() || F->mayBeOverridden())
355 return false;
356
357 // We annotate noalias return values, which are only applicable to
358 // pointer types.
Duncan Sands1df98592010-02-16 11:11:14 +0000359 if (!F->getReturnType()->isPointerTy())
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000360 continue;
361
362 if (!IsFunctionMallocLike(F, SCCNodes))
363 return false;
364 }
365
366 bool MadeChange = false;
Chris Lattner2decb222010-04-16 22:42:17 +0000367 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
368 Function *F = (*I)->getFunction();
Duncan Sands1df98592010-02-16 11:11:14 +0000369 if (F->doesNotAlias(0) || !F->getReturnType()->isPointerTy())
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000370 continue;
371
372 F->setDoesNotAlias(0);
373 ++NumNoAlias;
374 MadeChange = true;
375 }
376
377 return MadeChange;
378}
379
Chris Lattner2decb222010-04-16 22:42:17 +0000380bool FunctionAttrs::runOnSCC(CallGraphSCC &SCC) {
Dan Gohman3c97f7a2010-11-08 16:10:15 +0000381 AA = &getAnalysis<AliasAnalysis>();
382
Duncan Sands9e89ba32008-12-31 16:14:43 +0000383 bool Changed = AddReadAttrs(SCC);
384 Changed |= AddNoCaptureAttrs(SCC);
Nick Lewycky199aa3c2009-03-08 06:20:47 +0000385 Changed |= AddNoAliasAttrs(SCC);
Duncan Sands9e89ba32008-12-31 16:14:43 +0000386 return Changed;
387}