blob: 9648883b7f27515ba7e1465adfca151fd4fbf4c5 [file] [log] [blame]
Meador Inge6b6a1612013-03-21 00:55:59 +00001//===- FunctionAttrs.cpp - Pass which marks functions attributes ----------===//
Duncan Sands44c8cd92008-12-31 16:14:43 +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//===----------------------------------------------------------------------===//
Chandler Carruth1926b702016-01-08 10:55:52 +00009///
10/// \file
11/// This file implements interprocedural passes which walk the
12/// call-graph deducing and/or propagating function attributes.
13///
Duncan Sands44c8cd92008-12-31 16:14:43 +000014//===----------------------------------------------------------------------===//
15
Chandler Carruth9c4ed172016-02-18 11:03:11 +000016#include "llvm/Transforms/IPO/FunctionAttrs.h"
Duncan Sands44c8cd92008-12-31 16:14:43 +000017#include "llvm/Transforms/IPO.h"
Nick Lewycky4c378a42011-12-28 23:24:21 +000018#include "llvm/ADT/SCCIterator.h"
Benjamin Kramer15591272012-10-31 13:45:49 +000019#include "llvm/ADT/SetVector.h"
Duncan Sandsb193a372009-01-02 11:54:37 +000020#include "llvm/ADT/SmallSet.h"
Duncan Sands44c8cd92008-12-31 16:14:43 +000021#include "llvm/ADT/Statistic.h"
James Molloy0ecdbe72015-11-19 08:49:57 +000022#include "llvm/ADT/StringSwitch.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/Analysis/AliasAnalysis.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000024#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000025#include "llvm/Analysis/BasicAliasAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Analysis/CallGraph.h"
Chandler Carruth839a98e2013-01-07 15:26:48 +000027#include "llvm/Analysis/CallGraphSCCPass.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Analysis/CaptureTracking.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000029#include "llvm/Analysis/TargetLibraryInfo.h"
Philip Reamesa88caea2015-08-31 19:44:38 +000030#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/GlobalVariable.h"
Chandler Carruth83948572014-03-04 10:30:26 +000032#include "llvm/IR/InstIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/IntrinsicInst.h"
34#include "llvm/IR/LLVMContext.h"
Philip Reamesa88caea2015-08-31 19:44:38 +000035#include "llvm/Support/Debug.h"
Hans Wennborg043bf5b2015-08-31 21:19:18 +000036#include "llvm/Support/raw_ostream.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000037#include "llvm/Analysis/TargetLibraryInfo.h"
Duncan Sands44c8cd92008-12-31 16:14:43 +000038using namespace llvm;
39
Chandler Carruth964daaa2014-04-22 02:55:47 +000040#define DEBUG_TYPE "functionattrs"
41
Duncan Sands44c8cd92008-12-31 16:14:43 +000042STATISTIC(NumReadNone, "Number of functions marked readnone");
43STATISTIC(NumReadOnly, "Number of functions marked readonly");
44STATISTIC(NumNoCapture, "Number of arguments marked nocapture");
David Majnemer5246e0b2016-07-19 18:50:26 +000045STATISTIC(NumReturned, "Number of arguments marked returned");
Nick Lewyckyc2ec0722013-07-06 00:29:58 +000046STATISTIC(NumReadNoneArg, "Number of arguments marked readnone");
47STATISTIC(NumReadOnlyArg, "Number of arguments marked readonly");
Nick Lewyckyfbed86a2009-03-08 06:20:47 +000048STATISTIC(NumNoAlias, "Number of function returns marked noalias");
Philip Reamesa88caea2015-08-31 19:44:38 +000049STATISTIC(NumNonNullReturn, "Number of function returns marked nonnull");
James Molloy7e9bdd52015-11-12 10:55:20 +000050STATISTIC(NumNoRecurse, "Number of functions marked as norecurse");
Duncan Sands44c8cd92008-12-31 16:14:43 +000051
Sanjay Patel4f742162017-02-13 23:10:51 +000052// FIXME: This is disabled by default to avoid exposing security vulnerabilities
53// in C/C++ code compiled by clang:
54// http://lists.llvm.org/pipermail/cfe-dev/2017-January/052066.html
55static cl::opt<bool> EnableNonnullArgPropagation(
56 "enable-nonnull-arg-prop", cl::Hidden,
57 cl::desc("Try to propagate nonnull argument attributes from callsites to "
58 "caller functions."));
59
Duncan Sands44c8cd92008-12-31 16:14:43 +000060namespace {
Chandler Carruthc518ebd2015-10-29 18:29:15 +000061typedef SmallSetVector<Function *, 8> SCCNodeSet;
62}
63
Peter Collingbournec45f7f32017-02-14 00:28:13 +000064/// Returns the memory access attribute for function F using AAR for AA results,
65/// where SCCNodes is the current SCC.
66///
67/// If ThisBody is true, this function may examine the function body and will
68/// return a result pertaining to this copy of the function. If it is false, the
69/// result will be based only on AA results for the function declaration; it
70/// will be assumed that some other (perhaps less optimized) version of the
71/// function may be selected at link time.
72static MemoryAccessKind checkFunctionMemoryAccess(Function &F, bool ThisBody,
73 AAResults &AAR,
Chandler Carruthc518ebd2015-10-29 18:29:15 +000074 const SCCNodeSet &SCCNodes) {
Chandler Carruth7542d372015-09-21 17:39:41 +000075 FunctionModRefBehavior MRB = AAR.getModRefBehavior(&F);
76 if (MRB == FMRB_DoesNotAccessMemory)
77 // Already perfect!
78 return MAK_ReadNone;
79
Peter Collingbournec45f7f32017-02-14 00:28:13 +000080 if (!ThisBody) {
Chandler Carruth7542d372015-09-21 17:39:41 +000081 if (AliasAnalysis::onlyReadsMemory(MRB))
82 return MAK_ReadOnly;
83
84 // Conservatively assume it writes to memory.
85 return MAK_MayWrite;
86 }
87
88 // Scan the function body for instructions that may read or write memory.
89 bool ReadsMemory = false;
90 for (inst_iterator II = inst_begin(F), E = inst_end(F); II != E; ++II) {
91 Instruction *I = &*II;
92
93 // Some instructions can be ignored even if they read or write memory.
94 // Detect these now, skipping to the next instruction if one is found.
95 CallSite CS(cast<Value>(I));
96 if (CS) {
Sanjoy Das10c8a042016-02-09 18:40:40 +000097 // Ignore calls to functions in the same SCC, as long as the call sites
98 // don't have operand bundles. Calls with operand bundles are allowed to
99 // have memory effects not described by the memory effects of the call
100 // target.
101 if (!CS.hasOperandBundles() && CS.getCalledFunction() &&
102 SCCNodes.count(CS.getCalledFunction()))
Chandler Carruth7542d372015-09-21 17:39:41 +0000103 continue;
104 FunctionModRefBehavior MRB = AAR.getModRefBehavior(CS);
Chandler Carruth7542d372015-09-21 17:39:41 +0000105
Chandler Carruth69798fb2015-10-27 01:41:43 +0000106 // If the call doesn't access memory, we're done.
107 if (!(MRB & MRI_ModRef))
108 continue;
109
110 if (!AliasAnalysis::onlyAccessesArgPointees(MRB)) {
111 // The call could access any memory. If that includes writes, give up.
112 if (MRB & MRI_Mod)
113 return MAK_MayWrite;
114 // If it reads, note it.
115 if (MRB & MRI_Ref)
116 ReadsMemory = true;
Chandler Carruth7542d372015-09-21 17:39:41 +0000117 continue;
118 }
Chandler Carruth69798fb2015-10-27 01:41:43 +0000119
120 // Check whether all pointer arguments point to local memory, and
121 // ignore calls that only access local memory.
122 for (CallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end();
123 CI != CE; ++CI) {
124 Value *Arg = *CI;
Elena Demikhovsky3ec9e152015-11-17 19:30:51 +0000125 if (!Arg->getType()->isPtrOrPtrVectorTy())
Chandler Carruth69798fb2015-10-27 01:41:43 +0000126 continue;
127
128 AAMDNodes AAInfo;
129 I->getAAMetadata(AAInfo);
130 MemoryLocation Loc(Arg, MemoryLocation::UnknownSize, AAInfo);
131
132 // Skip accesses to local or constant memory as they don't impact the
133 // externally visible mod/ref behavior.
134 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true))
135 continue;
136
137 if (MRB & MRI_Mod)
138 // Writes non-local memory. Give up.
139 return MAK_MayWrite;
140 if (MRB & MRI_Ref)
141 // Ok, it reads non-local memory.
142 ReadsMemory = true;
143 }
Chandler Carruth7542d372015-09-21 17:39:41 +0000144 continue;
145 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
146 // Ignore non-volatile loads from local memory. (Atomic is okay here.)
147 if (!LI->isVolatile()) {
148 MemoryLocation Loc = MemoryLocation::get(LI);
149 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true))
150 continue;
151 }
152 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
153 // Ignore non-volatile stores to local memory. (Atomic is okay here.)
154 if (!SI->isVolatile()) {
155 MemoryLocation Loc = MemoryLocation::get(SI);
156 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true))
157 continue;
158 }
159 } else if (VAArgInst *VI = dyn_cast<VAArgInst>(I)) {
160 // Ignore vaargs on local memory.
161 MemoryLocation Loc = MemoryLocation::get(VI);
162 if (AAR.pointsToConstantMemory(Loc, /*OrLocal=*/true))
163 continue;
164 }
165
166 // Any remaining instructions need to be taken seriously! Check if they
167 // read or write memory.
168 if (I->mayWriteToMemory())
169 // Writes memory. Just give up.
170 return MAK_MayWrite;
171
172 // If this instruction may read memory, remember that.
173 ReadsMemory |= I->mayReadFromMemory();
174 }
175
176 return ReadsMemory ? MAK_ReadOnly : MAK_ReadNone;
177}
178
Peter Collingbournec45f7f32017-02-14 00:28:13 +0000179MemoryAccessKind llvm::computeFunctionBodyMemoryAccess(Function &F,
180 AAResults &AAR) {
181 return checkFunctionMemoryAccess(F, /*ThisBody=*/true, AAR, {});
182}
183
Chandler Carrutha632fb92015-09-13 06:57:25 +0000184/// Deduce readonly/readnone attributes for the SCC.
Chandler Carrutha8125352015-10-30 16:48:08 +0000185template <typename AARGetterT>
Peter Collingbournecea1e4e2017-02-09 23:11:52 +0000186static bool addReadAttrs(const SCCNodeSet &SCCNodes, AARGetterT &&AARGetter) {
Duncan Sands44c8cd92008-12-31 16:14:43 +0000187 // Check if any of the functions in the SCC read or write memory. If they
188 // write memory then they can't be marked readnone or readonly.
189 bool ReadsMemory = false;
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000190 for (Function *F : SCCNodes) {
Chandler Carrutha8125352015-10-30 16:48:08 +0000191 // Call the callable parameter to look up AA results for this function.
192 AAResults &AAR = AARGetter(*F);
Chandler Carruth7b560d42015-09-09 17:55:00 +0000193
Peter Collingbournec45f7f32017-02-14 00:28:13 +0000194 // Non-exact function definitions may not be selected at link time, and an
195 // alternative version that writes to memory may be selected. See the
196 // comment on GlobalValue::isDefinitionExact for more details.
197 switch (checkFunctionMemoryAccess(*F, F->hasExactDefinition(),
198 AAR, SCCNodes)) {
Chandler Carruth7542d372015-09-21 17:39:41 +0000199 case MAK_MayWrite:
200 return false;
201 case MAK_ReadOnly:
Duncan Sands44c8cd92008-12-31 16:14:43 +0000202 ReadsMemory = true;
Chandler Carruth7542d372015-09-21 17:39:41 +0000203 break;
204 case MAK_ReadNone:
205 // Nothing to do!
206 break;
Duncan Sands44c8cd92008-12-31 16:14:43 +0000207 }
208 }
209
210 // Success! Functions in this SCC do not access memory, or only read memory.
211 // Give them the appropriate attribute.
212 bool MadeChange = false;
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000213 for (Function *F : SCCNodes) {
Duncan Sands44c8cd92008-12-31 16:14:43 +0000214 if (F->doesNotAccessMemory())
215 // Already perfect!
216 continue;
217
218 if (F->onlyReadsMemory() && ReadsMemory)
219 // No change.
220 continue;
221
222 MadeChange = true;
223
224 // Clear out any existing attributes.
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000225 F->removeFnAttr(Attribute::ReadOnly);
226 F->removeFnAttr(Attribute::ReadNone);
Duncan Sands44c8cd92008-12-31 16:14:43 +0000227
228 // Add in the new attribute.
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000229 F->addFnAttr(ReadsMemory ? Attribute::ReadOnly : Attribute::ReadNone);
Duncan Sands44c8cd92008-12-31 16:14:43 +0000230
231 if (ReadsMemory)
Duncan Sandscefc8602009-01-02 11:46:24 +0000232 ++NumReadOnly;
Duncan Sands44c8cd92008-12-31 16:14:43 +0000233 else
Duncan Sandscefc8602009-01-02 11:46:24 +0000234 ++NumReadNone;
Duncan Sands44c8cd92008-12-31 16:14:43 +0000235 }
236
237 return MadeChange;
238}
239
Nick Lewycky4c378a42011-12-28 23:24:21 +0000240namespace {
Chandler Carrutha632fb92015-09-13 06:57:25 +0000241/// For a given pointer Argument, this retains a list of Arguments of functions
242/// in the same SCC that the pointer data flows into. We use this to build an
243/// SCC of the arguments.
Chandler Carruth63559d72015-09-13 06:47:20 +0000244struct ArgumentGraphNode {
245 Argument *Definition;
246 SmallVector<ArgumentGraphNode *, 4> Uses;
247};
Nick Lewycky4c378a42011-12-28 23:24:21 +0000248
Chandler Carruth63559d72015-09-13 06:47:20 +0000249class ArgumentGraph {
250 // We store pointers to ArgumentGraphNode objects, so it's important that
251 // that they not move around upon insert.
252 typedef std::map<Argument *, ArgumentGraphNode> ArgumentMapTy;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000253
Chandler Carruth63559d72015-09-13 06:47:20 +0000254 ArgumentMapTy ArgumentMap;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000255
Chandler Carruth63559d72015-09-13 06:47:20 +0000256 // There is no root node for the argument graph, in fact:
257 // void f(int *x, int *y) { if (...) f(x, y); }
258 // is an example where the graph is disconnected. The SCCIterator requires a
259 // single entry point, so we maintain a fake ("synthetic") root node that
260 // uses every node. Because the graph is directed and nothing points into
261 // the root, it will not participate in any SCCs (except for its own).
262 ArgumentGraphNode SyntheticRoot;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000263
Chandler Carruth63559d72015-09-13 06:47:20 +0000264public:
265 ArgumentGraph() { SyntheticRoot.Definition = nullptr; }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000266
Chandler Carruth63559d72015-09-13 06:47:20 +0000267 typedef SmallVectorImpl<ArgumentGraphNode *>::iterator iterator;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000268
Chandler Carruth63559d72015-09-13 06:47:20 +0000269 iterator begin() { return SyntheticRoot.Uses.begin(); }
270 iterator end() { return SyntheticRoot.Uses.end(); }
271 ArgumentGraphNode *getEntryNode() { return &SyntheticRoot; }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000272
Chandler Carruth63559d72015-09-13 06:47:20 +0000273 ArgumentGraphNode *operator[](Argument *A) {
274 ArgumentGraphNode &Node = ArgumentMap[A];
275 Node.Definition = A;
276 SyntheticRoot.Uses.push_back(&Node);
277 return &Node;
278 }
279};
Nick Lewycky4c378a42011-12-28 23:24:21 +0000280
Chandler Carrutha632fb92015-09-13 06:57:25 +0000281/// This tracker checks whether callees are in the SCC, and if so it does not
282/// consider that a capture, instead adding it to the "Uses" list and
283/// continuing with the analysis.
Chandler Carruth63559d72015-09-13 06:47:20 +0000284struct ArgumentUsesTracker : public CaptureTracker {
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000285 ArgumentUsesTracker(const SCCNodeSet &SCCNodes)
Nick Lewycky4c378a42011-12-28 23:24:21 +0000286 : Captured(false), SCCNodes(SCCNodes) {}
287
Chandler Carruth63559d72015-09-13 06:47:20 +0000288 void tooManyUses() override { Captured = true; }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000289
Chandler Carruth63559d72015-09-13 06:47:20 +0000290 bool captured(const Use *U) override {
291 CallSite CS(U->getUser());
292 if (!CS.getInstruction()) {
293 Captured = true;
294 return true;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000295 }
296
Chandler Carruth63559d72015-09-13 06:47:20 +0000297 Function *F = CS.getCalledFunction();
Sanjoy Das5ce32722016-04-08 00:48:30 +0000298 if (!F || !F->hasExactDefinition() || !SCCNodes.count(F)) {
Chandler Carruth63559d72015-09-13 06:47:20 +0000299 Captured = true;
300 return true;
301 }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000302
Sanjoy Das98bfe262015-11-05 03:04:40 +0000303 // Note: the callee and the two successor blocks *follow* the argument
304 // operands. This means there is no need to adjust UseIndex to account for
305 // these.
306
307 unsigned UseIndex =
308 std::distance(const_cast<const Use *>(CS.arg_begin()), U);
309
Sanjoy Das71fe81f2015-11-07 01:56:00 +0000310 assert(UseIndex < CS.data_operands_size() &&
311 "Indirect function calls should have been filtered above!");
312
313 if (UseIndex >= CS.getNumArgOperands()) {
314 // Data operand, but not a argument operand -- must be a bundle operand
315 assert(CS.hasOperandBundles() && "Must be!");
316
317 // CaptureTracking told us that we're being captured by an operand bundle
318 // use. In this case it does not matter if the callee is within our SCC
319 // or not -- we've been captured in some unknown way, and we have to be
320 // conservative.
321 Captured = true;
322 return true;
323 }
324
Sanjoy Das98bfe262015-11-05 03:04:40 +0000325 if (UseIndex >= F->arg_size()) {
326 assert(F->isVarArg() && "More params than args in non-varargs call");
327 Captured = true;
328 return true;
Chandler Carruth63559d72015-09-13 06:47:20 +0000329 }
Sanjoy Das98bfe262015-11-05 03:04:40 +0000330
Duncan P. N. Exon Smith83c4b682015-11-07 00:01:16 +0000331 Uses.push_back(&*std::next(F->arg_begin(), UseIndex));
Chandler Carruth63559d72015-09-13 06:47:20 +0000332 return false;
333 }
334
335 bool Captured; // True only if certainly captured (used outside our SCC).
336 SmallVector<Argument *, 4> Uses; // Uses within our SCC.
337
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000338 const SCCNodeSet &SCCNodes;
Chandler Carruth63559d72015-09-13 06:47:20 +0000339};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000340}
Nick Lewycky4c378a42011-12-28 23:24:21 +0000341
342namespace llvm {
Chandler Carruth63559d72015-09-13 06:47:20 +0000343template <> struct GraphTraits<ArgumentGraphNode *> {
Tim Shenb44909e2016-08-01 22:32:20 +0000344 typedef ArgumentGraphNode *NodeRef;
Chandler Carruth63559d72015-09-13 06:47:20 +0000345 typedef SmallVectorImpl<ArgumentGraphNode *>::iterator ChildIteratorType;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000346
Tim Shen48f814e2016-08-31 16:48:13 +0000347 static NodeRef getEntryNode(NodeRef A) { return A; }
348 static ChildIteratorType child_begin(NodeRef N) { return N->Uses.begin(); }
349 static ChildIteratorType child_end(NodeRef N) { return N->Uses.end(); }
Chandler Carruth63559d72015-09-13 06:47:20 +0000350};
351template <>
352struct GraphTraits<ArgumentGraph *> : public GraphTraits<ArgumentGraphNode *> {
Tim Shenf2187ed2016-08-22 21:09:30 +0000353 static NodeRef getEntryNode(ArgumentGraph *AG) { return AG->getEntryNode(); }
Chandler Carruth63559d72015-09-13 06:47:20 +0000354 static ChildIteratorType nodes_begin(ArgumentGraph *AG) {
355 return AG->begin();
356 }
357 static ChildIteratorType nodes_end(ArgumentGraph *AG) { return AG->end(); }
358};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000359}
Nick Lewycky4c378a42011-12-28 23:24:21 +0000360
Chandler Carrutha632fb92015-09-13 06:57:25 +0000361/// Returns Attribute::None, Attribute::ReadOnly or Attribute::ReadNone.
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000362static Attribute::AttrKind
363determinePointerReadAttrs(Argument *A,
Chandler Carruth63559d72015-09-13 06:47:20 +0000364 const SmallPtrSet<Argument *, 8> &SCCNodes) {
365
366 SmallVector<Use *, 32> Worklist;
367 SmallSet<Use *, 32> Visited;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000368
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000369 // inalloca arguments are always clobbered by the call.
370 if (A->hasInAllocaAttr())
371 return Attribute::None;
372
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000373 bool IsRead = false;
374 // We don't need to track IsWritten. If A is written to, return immediately.
375
Chandler Carruthcdf47882014-03-09 03:16:01 +0000376 for (Use &U : A->uses()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000377 Visited.insert(&U);
378 Worklist.push_back(&U);
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000379 }
380
381 while (!Worklist.empty()) {
382 Use *U = Worklist.pop_back_val();
383 Instruction *I = cast<Instruction>(U->getUser());
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000384
385 switch (I->getOpcode()) {
386 case Instruction::BitCast:
387 case Instruction::GetElementPtr:
388 case Instruction::PHI:
389 case Instruction::Select:
Matt Arsenaulte55a2c22014-01-14 19:11:52 +0000390 case Instruction::AddrSpaceCast:
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000391 // The original value is not read/written via this if the new value isn't.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000392 for (Use &UU : I->uses())
David Blaikie70573dc2014-11-19 07:49:26 +0000393 if (Visited.insert(&UU).second)
Chandler Carruthcdf47882014-03-09 03:16:01 +0000394 Worklist.push_back(&UU);
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000395 break;
396
397 case Instruction::Call:
398 case Instruction::Invoke: {
Nick Lewycky59633cb2014-05-30 02:31:27 +0000399 bool Captures = true;
400
401 if (I->getType()->isVoidTy())
402 Captures = false;
403
404 auto AddUsersToWorklistIfCapturing = [&] {
405 if (Captures)
406 for (Use &UU : I->uses())
David Blaikie70573dc2014-11-19 07:49:26 +0000407 if (Visited.insert(&UU).second)
Nick Lewycky59633cb2014-05-30 02:31:27 +0000408 Worklist.push_back(&UU);
409 };
410
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000411 CallSite CS(I);
Nick Lewycky59633cb2014-05-30 02:31:27 +0000412 if (CS.doesNotAccessMemory()) {
413 AddUsersToWorklistIfCapturing();
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000414 continue;
Nick Lewycky59633cb2014-05-30 02:31:27 +0000415 }
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000416
417 Function *F = CS.getCalledFunction();
418 if (!F) {
419 if (CS.onlyReadsMemory()) {
420 IsRead = true;
Nick Lewycky59633cb2014-05-30 02:31:27 +0000421 AddUsersToWorklistIfCapturing();
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000422 continue;
423 }
424 return Attribute::None;
425 }
426
Sanjoy Das436e2392015-11-07 01:55:53 +0000427 // Note: the callee and the two successor blocks *follow* the argument
428 // operands. This means there is no need to adjust UseIndex to account
429 // for these.
430
431 unsigned UseIndex = std::distance(CS.arg_begin(), U);
432
Sanjoy Dasea1df7f2015-11-07 01:56:07 +0000433 // U cannot be the callee operand use: since we're exploring the
434 // transitive uses of an Argument, having such a use be a callee would
435 // imply the CallSite is an indirect call or invoke; and we'd take the
436 // early exit above.
437 assert(UseIndex < CS.data_operands_size() &&
438 "Data operand use expected!");
Sanjoy Das71fe81f2015-11-07 01:56:00 +0000439
440 bool IsOperandBundleUse = UseIndex >= CS.getNumArgOperands();
441
442 if (UseIndex >= F->arg_size() && !IsOperandBundleUse) {
Sanjoy Das436e2392015-11-07 01:55:53 +0000443 assert(F->isVarArg() && "More params than args in non-varargs call");
444 return Attribute::None;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000445 }
Sanjoy Das436e2392015-11-07 01:55:53 +0000446
Tilmann Scheller925b1932015-11-20 19:17:10 +0000447 Captures &= !CS.doesNotCapture(UseIndex);
448
Sanjoy Das71fe81f2015-11-07 01:56:00 +0000449 // Since the optimizer (by design) cannot see the data flow corresponding
450 // to a operand bundle use, these cannot participate in the optimistic SCC
451 // analysis. Instead, we model the operand bundle uses as arguments in
452 // call to a function external to the SCC.
Duncan P. N. Exon Smith9e3edad2016-08-17 01:23:58 +0000453 if (IsOperandBundleUse ||
454 !SCCNodes.count(&*std::next(F->arg_begin(), UseIndex))) {
Sanjoy Das71fe81f2015-11-07 01:56:00 +0000455
456 // The accessors used on CallSite here do the right thing for calls and
457 // invokes with operand bundles.
458
Sanjoy Das436e2392015-11-07 01:55:53 +0000459 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(UseIndex))
460 return Attribute::None;
461 if (!CS.doesNotAccessMemory(UseIndex))
462 IsRead = true;
463 }
464
Nick Lewycky59633cb2014-05-30 02:31:27 +0000465 AddUsersToWorklistIfCapturing();
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000466 break;
467 }
468
469 case Instruction::Load:
David Majnemer124bdb72016-05-25 05:53:04 +0000470 // A volatile load has side effects beyond what readonly can be relied
471 // upon.
472 if (cast<LoadInst>(I)->isVolatile())
473 return Attribute::None;
474
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000475 IsRead = true;
476 break;
477
478 case Instruction::ICmp:
479 case Instruction::Ret:
480 break;
481
482 default:
483 return Attribute::None;
484 }
485 }
486
487 return IsRead ? Attribute::ReadOnly : Attribute::ReadNone;
488}
489
David Majnemer5246e0b2016-07-19 18:50:26 +0000490/// Deduce returned attributes for the SCC.
491static bool addArgumentReturnedAttrs(const SCCNodeSet &SCCNodes) {
492 bool Changed = false;
493
David Majnemer5246e0b2016-07-19 18:50:26 +0000494 // Check each function in turn, determining if an argument is always returned.
495 for (Function *F : SCCNodes) {
496 // We can infer and propagate function attributes only when we know that the
497 // definition we'll get at link time is *exactly* the definition we see now.
498 // For more details, see GlobalValue::mayBeDerefined.
499 if (!F->hasExactDefinition())
500 continue;
501
502 if (F->getReturnType()->isVoidTy())
503 continue;
504
David Majnemerc83044d2016-09-12 16:04:59 +0000505 // There is nothing to do if an argument is already marked as 'returned'.
506 if (any_of(F->args(),
507 [](const Argument &Arg) { return Arg.hasReturnedAttr(); }))
508 continue;
509
David Majnemer5246e0b2016-07-19 18:50:26 +0000510 auto FindRetArg = [&]() -> Value * {
511 Value *RetArg = nullptr;
512 for (BasicBlock &BB : *F)
513 if (auto *Ret = dyn_cast<ReturnInst>(BB.getTerminator())) {
514 // Note that stripPointerCasts should look through functions with
515 // returned arguments.
516 Value *RetVal = Ret->getReturnValue()->stripPointerCasts();
517 if (!isa<Argument>(RetVal) || RetVal->getType() != F->getReturnType())
518 return nullptr;
519
520 if (!RetArg)
521 RetArg = RetVal;
522 else if (RetArg != RetVal)
523 return nullptr;
524 }
525
526 return RetArg;
527 };
528
529 if (Value *RetArg = FindRetArg()) {
530 auto *A = cast<Argument>(RetArg);
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000531 A->addAttr(Attribute::Returned);
David Majnemer5246e0b2016-07-19 18:50:26 +0000532 ++NumReturned;
533 Changed = true;
534 }
535 }
536
537 return Changed;
538}
539
Sanjay Patel4f742162017-02-13 23:10:51 +0000540/// If a callsite has arguments that are also arguments to the parent function,
541/// try to propagate attributes from the callsite's arguments to the parent's
542/// arguments. This may be important because inlining can cause information loss
543/// when attribute knowledge disappears with the inlined call.
544static bool addArgumentAttrsFromCallsites(Function &F) {
545 if (!EnableNonnullArgPropagation)
546 return false;
547
548 bool Changed = false;
549
550 // For an argument attribute to transfer from a callsite to the parent, the
551 // call must be guaranteed to execute every time the parent is called.
552 // Conservatively, just check for calls in the entry block that are guaranteed
553 // to execute.
554 // TODO: This could be enhanced by testing if the callsite post-dominates the
555 // entry block or by doing simple forward walks or backward walks to the
556 // callsite.
557 BasicBlock &Entry = F.getEntryBlock();
558 for (Instruction &I : Entry) {
559 if (auto CS = CallSite(&I)) {
560 if (auto *CalledFunc = CS.getCalledFunction()) {
561 for (auto &CSArg : CalledFunc->args()) {
562 if (!CSArg.hasNonNullAttr())
563 continue;
564
565 // If the non-null callsite argument operand is an argument to 'F'
566 // (the caller) and the call is guaranteed to execute, then the value
567 // must be non-null throughout 'F'.
568 auto *FArg = dyn_cast<Argument>(CS.getArgOperand(CSArg.getArgNo()));
569 if (FArg && !FArg->hasNonNullAttr()) {
570 FArg->addAttr(Attribute::NonNull);
571 Changed = true;
572 }
573 }
574 }
575 }
576 if (!isGuaranteedToTransferExecutionToSuccessor(&I))
577 break;
578 }
579
580 return Changed;
581}
582
Chandler Carrutha632fb92015-09-13 06:57:25 +0000583/// Deduce nocapture attributes for the SCC.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000584static bool addArgumentAttrs(const SCCNodeSet &SCCNodes) {
Duncan Sands44c8cd92008-12-31 16:14:43 +0000585 bool Changed = false;
586
Nick Lewycky4c378a42011-12-28 23:24:21 +0000587 ArgumentGraph AG;
588
Duncan Sands44c8cd92008-12-31 16:14:43 +0000589 // Check each function in turn, determining which pointer arguments are not
590 // captured.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000591 for (Function *F : SCCNodes) {
Sanjoy Das5ce32722016-04-08 00:48:30 +0000592 // We can infer and propagate function attributes only when we know that the
593 // definition we'll get at link time is *exactly* the definition we see now.
594 // For more details, see GlobalValue::mayBeDerefined.
595 if (!F->hasExactDefinition())
Duncan Sands44c8cd92008-12-31 16:14:43 +0000596 continue;
597
Sanjay Patel4f742162017-02-13 23:10:51 +0000598 Changed |= addArgumentAttrsFromCallsites(*F);
599
Nick Lewycky4c378a42011-12-28 23:24:21 +0000600 // Functions that are readonly (or readnone) and nounwind and don't return
601 // a value can't capture arguments. Don't analyze them.
602 if (F->onlyReadsMemory() && F->doesNotThrow() &&
603 F->getReturnType()->isVoidTy()) {
Chandler Carruth63559d72015-09-13 06:47:20 +0000604 for (Function::arg_iterator A = F->arg_begin(), E = F->arg_end(); A != E;
605 ++A) {
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000606 if (A->getType()->isPointerTy() && !A->hasNoCaptureAttr()) {
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000607 A->addAttr(Attribute::NoCapture);
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000608 ++NumNoCapture;
609 Changed = true;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000610 }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000611 }
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000612 continue;
Benjamin Kramer76b7bd02013-06-22 15:51:19 +0000613 }
614
Chandler Carruth63559d72015-09-13 06:47:20 +0000615 for (Function::arg_iterator A = F->arg_begin(), E = F->arg_end(); A != E;
616 ++A) {
617 if (!A->getType()->isPointerTy())
618 continue;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000619 bool HasNonLocalUses = false;
620 if (!A->hasNoCaptureAttr()) {
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000621 ArgumentUsesTracker Tracker(SCCNodes);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000622 PointerMayBeCaptured(&*A, &Tracker);
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000623 if (!Tracker.Captured) {
624 if (Tracker.Uses.empty()) {
625 // If it's trivially not captured, mark it nocapture now.
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000626 A->addAttr(Attribute::NoCapture);
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000627 ++NumNoCapture;
628 Changed = true;
629 } else {
630 // If it's not trivially captured and not trivially not captured,
631 // then it must be calling into another function in our SCC. Save
632 // its particulars for Argument-SCC analysis later.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000633 ArgumentGraphNode *Node = AG[&*A];
Benjamin Kramer135f7352016-06-26 12:28:59 +0000634 for (Argument *Use : Tracker.Uses) {
635 Node->Uses.push_back(AG[Use]);
636 if (Use != &*A)
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000637 HasNonLocalUses = true;
638 }
Benjamin Kramer40d7f352013-06-22 16:56:32 +0000639 }
640 }
641 // Otherwise, it's captured. Don't bother doing SCC analysis on it.
642 }
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000643 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
644 // Can we determine that it's readonly/readnone without doing an SCC?
645 // Note that we don't allow any calls at all here, or else our result
646 // will be dependent on the iteration order through the functions in the
647 // SCC.
Chandler Carruth63559d72015-09-13 06:47:20 +0000648 SmallPtrSet<Argument *, 8> Self;
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000649 Self.insert(&*A);
650 Attribute::AttrKind R = determinePointerReadAttrs(&*A, Self);
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000651 if (R != Attribute::None) {
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000652 A->addAttr(R);
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000653 Changed = true;
654 R == Attribute::ReadOnly ? ++NumReadOnlyArg : ++NumReadNoneArg;
655 }
656 }
657 }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000658 }
659
660 // The graph we've collected is partial because we stopped scanning for
661 // argument uses once we solved the argument trivially. These partial nodes
662 // show up as ArgumentGraphNode objects with an empty Uses list, and for
663 // these nodes the final decision about whether they capture has already been
664 // made. If the definition doesn't have a 'nocapture' attribute by now, it
665 // captures.
666
Chandler Carruth63559d72015-09-13 06:47:20 +0000667 for (scc_iterator<ArgumentGraph *> I = scc_begin(&AG); !I.isAtEnd(); ++I) {
Duncan P. N. Exon Smithd2b2fac2014-04-25 18:24:50 +0000668 const std::vector<ArgumentGraphNode *> &ArgumentSCC = *I;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000669 if (ArgumentSCC.size() == 1) {
Chandler Carruth63559d72015-09-13 06:47:20 +0000670 if (!ArgumentSCC[0]->Definition)
671 continue; // synthetic root node
Nick Lewycky4c378a42011-12-28 23:24:21 +0000672
673 // eg. "void f(int* x) { if (...) f(x); }"
674 if (ArgumentSCC[0]->Uses.size() == 1 &&
675 ArgumentSCC[0]->Uses[0] == ArgumentSCC[0]) {
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000676 Argument *A = ArgumentSCC[0]->Definition;
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000677 A->addAttr(Attribute::NoCapture);
Nick Lewycky7e820552009-01-02 03:46:56 +0000678 ++NumNoCapture;
Duncan Sands44c8cd92008-12-31 16:14:43 +0000679 Changed = true;
680 }
Nick Lewycky4c378a42011-12-28 23:24:21 +0000681 continue;
682 }
683
684 bool SCCCaptured = false;
Duncan P. N. Exon Smithd2b2fac2014-04-25 18:24:50 +0000685 for (auto I = ArgumentSCC.begin(), E = ArgumentSCC.end();
686 I != E && !SCCCaptured; ++I) {
Nick Lewycky4c378a42011-12-28 23:24:21 +0000687 ArgumentGraphNode *Node = *I;
688 if (Node->Uses.empty()) {
689 if (!Node->Definition->hasNoCaptureAttr())
690 SCCCaptured = true;
691 }
692 }
Chandler Carruth63559d72015-09-13 06:47:20 +0000693 if (SCCCaptured)
694 continue;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000695
Chandler Carruth63559d72015-09-13 06:47:20 +0000696 SmallPtrSet<Argument *, 8> ArgumentSCCNodes;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000697 // Fill ArgumentSCCNodes with the elements of the ArgumentSCC. Used for
698 // quickly looking up whether a given Argument is in this ArgumentSCC.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000699 for (ArgumentGraphNode *I : ArgumentSCC) {
700 ArgumentSCCNodes.insert(I->Definition);
Nick Lewycky4c378a42011-12-28 23:24:21 +0000701 }
702
Duncan P. N. Exon Smithd2b2fac2014-04-25 18:24:50 +0000703 for (auto I = ArgumentSCC.begin(), E = ArgumentSCC.end();
704 I != E && !SCCCaptured; ++I) {
Nick Lewycky4c378a42011-12-28 23:24:21 +0000705 ArgumentGraphNode *N = *I;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000706 for (ArgumentGraphNode *Use : N->Uses) {
707 Argument *A = Use->Definition;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000708 if (A->hasNoCaptureAttr() || ArgumentSCCNodes.count(A))
709 continue;
710 SCCCaptured = true;
711 break;
712 }
713 }
Chandler Carruth63559d72015-09-13 06:47:20 +0000714 if (SCCCaptured)
715 continue;
Nick Lewycky4c378a42011-12-28 23:24:21 +0000716
Nick Lewyckyf740db32012-01-05 22:21:45 +0000717 for (unsigned i = 0, e = ArgumentSCC.size(); i != e; ++i) {
Nick Lewycky4c378a42011-12-28 23:24:21 +0000718 Argument *A = ArgumentSCC[i]->Definition;
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000719 A->addAttr(Attribute::NoCapture);
Nick Lewycky4c378a42011-12-28 23:24:21 +0000720 ++NumNoCapture;
721 Changed = true;
722 }
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000723
724 // We also want to compute readonly/readnone. With a small number of false
725 // negatives, we can assume that any pointer which is captured isn't going
726 // to be provably readonly or readnone, since by definition we can't
727 // analyze all uses of a captured pointer.
728 //
729 // The false negatives happen when the pointer is captured by a function
730 // that promises readonly/readnone behaviour on the pointer, then the
731 // pointer's lifetime ends before anything that writes to arbitrary memory.
732 // Also, a readonly/readnone pointer may be returned, but returning a
733 // pointer is capturing it.
734
735 Attribute::AttrKind ReadAttr = Attribute::ReadNone;
736 for (unsigned i = 0, e = ArgumentSCC.size(); i != e; ++i) {
737 Argument *A = ArgumentSCC[i]->Definition;
738 Attribute::AttrKind K = determinePointerReadAttrs(A, ArgumentSCCNodes);
739 if (K == Attribute::ReadNone)
740 continue;
741 if (K == Attribute::ReadOnly) {
742 ReadAttr = Attribute::ReadOnly;
743 continue;
744 }
745 ReadAttr = K;
746 break;
747 }
748
749 if (ReadAttr != Attribute::None) {
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000750 for (unsigned i = 0, e = ArgumentSCC.size(); i != e; ++i) {
751 Argument *A = ArgumentSCC[i]->Definition;
Bjorn Steinbrink236446c2015-05-25 19:46:38 +0000752 // Clear out existing readonly/readnone attributes
Reid Kleckner9d16fa02017-04-19 17:28:52 +0000753 A->removeAttr(Attribute::ReadOnly);
754 A->removeAttr(Attribute::ReadNone);
755 A->addAttr(ReadAttr);
Nick Lewyckyc2ec0722013-07-06 00:29:58 +0000756 ReadAttr == Attribute::ReadOnly ? ++NumReadOnlyArg : ++NumReadNoneArg;
757 Changed = true;
758 }
759 }
Duncan Sands44c8cd92008-12-31 16:14:43 +0000760 }
761
762 return Changed;
763}
764
Chandler Carrutha632fb92015-09-13 06:57:25 +0000765/// Tests whether a function is "malloc-like".
766///
767/// A function is "malloc-like" if it returns either null or a pointer that
768/// doesn't alias any other pointer visible to the caller.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000769static bool isFunctionMallocLike(Function *F, const SCCNodeSet &SCCNodes) {
Benjamin Kramer15591272012-10-31 13:45:49 +0000770 SmallSetVector<Value *, 8> FlowsToReturn;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000771 for (BasicBlock &BB : *F)
772 if (ReturnInst *Ret = dyn_cast<ReturnInst>(BB.getTerminator()))
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000773 FlowsToReturn.insert(Ret->getReturnValue());
774
775 for (unsigned i = 0; i != FlowsToReturn.size(); ++i) {
Benjamin Kramer15591272012-10-31 13:45:49 +0000776 Value *RetVal = FlowsToReturn[i];
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000777
778 if (Constant *C = dyn_cast<Constant>(RetVal)) {
779 if (!C->isNullValue() && !isa<UndefValue>(C))
780 return false;
781
782 continue;
783 }
784
785 if (isa<Argument>(RetVal))
786 return false;
787
788 if (Instruction *RVI = dyn_cast<Instruction>(RetVal))
789 switch (RVI->getOpcode()) {
Chandler Carruth63559d72015-09-13 06:47:20 +0000790 // Extend the analysis by looking upwards.
791 case Instruction::BitCast:
792 case Instruction::GetElementPtr:
793 case Instruction::AddrSpaceCast:
794 FlowsToReturn.insert(RVI->getOperand(0));
795 continue;
796 case Instruction::Select: {
797 SelectInst *SI = cast<SelectInst>(RVI);
798 FlowsToReturn.insert(SI->getTrueValue());
799 FlowsToReturn.insert(SI->getFalseValue());
800 continue;
801 }
802 case Instruction::PHI: {
803 PHINode *PN = cast<PHINode>(RVI);
804 for (Value *IncValue : PN->incoming_values())
805 FlowsToReturn.insert(IncValue);
806 continue;
807 }
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000808
Chandler Carruth63559d72015-09-13 06:47:20 +0000809 // Check whether the pointer came from an allocation.
810 case Instruction::Alloca:
811 break;
812 case Instruction::Call:
813 case Instruction::Invoke: {
814 CallSite CS(RVI);
Reid Klecknerfb502d22017-04-14 20:19:02 +0000815 if (CS.hasRetAttr(Attribute::NoAlias))
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000816 break;
Chandler Carruth63559d72015-09-13 06:47:20 +0000817 if (CS.getCalledFunction() && SCCNodes.count(CS.getCalledFunction()))
818 break;
Justin Bognercd1d5aa2016-08-17 20:30:52 +0000819 LLVM_FALLTHROUGH;
820 }
Chandler Carruth63559d72015-09-13 06:47:20 +0000821 default:
822 return false; // Did not come from an allocation.
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000823 }
824
Dan Gohman94e61762009-11-19 21:57:48 +0000825 if (PointerMayBeCaptured(RetVal, false, /*StoreCaptures=*/false))
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000826 return false;
827 }
828
829 return true;
830}
831
Chandler Carrutha632fb92015-09-13 06:57:25 +0000832/// Deduce noalias attributes for the SCC.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000833static bool addNoAliasAttrs(const SCCNodeSet &SCCNodes) {
Nick Lewycky9ec96d12009-03-08 17:08:09 +0000834 // Check each function in turn, determining which functions return noalias
835 // pointers.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000836 for (Function *F : SCCNodes) {
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000837 // Already noalias.
838 if (F->doesNotAlias(0))
839 continue;
840
Sanjoy Das5ce32722016-04-08 00:48:30 +0000841 // We can infer and propagate function attributes only when we know that the
842 // definition we'll get at link time is *exactly* the definition we see now.
843 // For more details, see GlobalValue::mayBeDerefined.
844 if (!F->hasExactDefinition())
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000845 return false;
846
Chandler Carruth63559d72015-09-13 06:47:20 +0000847 // We annotate noalias return values, which are only applicable to
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000848 // pointer types.
Duncan Sands19d0b472010-02-16 11:11:14 +0000849 if (!F->getReturnType()->isPointerTy())
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000850 continue;
851
Chandler Carruth3824f852015-09-13 08:23:27 +0000852 if (!isFunctionMallocLike(F, SCCNodes))
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000853 return false;
854 }
855
856 bool MadeChange = false;
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000857 for (Function *F : SCCNodes) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000858 if (F->doesNotAlias(0) || !F->getReturnType()->isPointerTy())
Nick Lewyckyfbed86a2009-03-08 06:20:47 +0000859 continue;
860
861 F->setDoesNotAlias(0);
862 ++NumNoAlias;
863 MadeChange = true;
864 }
865
866 return MadeChange;
867}
868
Chandler Carrutha632fb92015-09-13 06:57:25 +0000869/// Tests whether this function is known to not return null.
Chandler Carruth8874b782015-09-13 08:17:14 +0000870///
871/// Requires that the function returns a pointer.
872///
873/// Returns true if it believes the function will not return a null, and sets
874/// \p Speculative based on whether the returned conclusion is a speculative
875/// conclusion due to SCC calls.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000876static bool isReturnNonNull(Function *F, const SCCNodeSet &SCCNodes,
Sean Silva45835e72016-07-02 23:47:27 +0000877 bool &Speculative) {
Philip Reamesa88caea2015-08-31 19:44:38 +0000878 assert(F->getReturnType()->isPointerTy() &&
879 "nonnull only meaningful on pointer types");
880 Speculative = false;
Chandler Carruth63559d72015-09-13 06:47:20 +0000881
Philip Reamesa88caea2015-08-31 19:44:38 +0000882 SmallSetVector<Value *, 8> FlowsToReturn;
883 for (BasicBlock &BB : *F)
884 if (auto *Ret = dyn_cast<ReturnInst>(BB.getTerminator()))
885 FlowsToReturn.insert(Ret->getReturnValue());
886
887 for (unsigned i = 0; i != FlowsToReturn.size(); ++i) {
888 Value *RetVal = FlowsToReturn[i];
889
890 // If this value is locally known to be non-null, we're good
Sean Silva45835e72016-07-02 23:47:27 +0000891 if (isKnownNonNull(RetVal))
Philip Reamesa88caea2015-08-31 19:44:38 +0000892 continue;
893
894 // Otherwise, we need to look upwards since we can't make any local
Chandler Carruth63559d72015-09-13 06:47:20 +0000895 // conclusions.
Philip Reamesa88caea2015-08-31 19:44:38 +0000896 Instruction *RVI = dyn_cast<Instruction>(RetVal);
897 if (!RVI)
898 return false;
899 switch (RVI->getOpcode()) {
Chandler Carruth63559d72015-09-13 06:47:20 +0000900 // Extend the analysis by looking upwards.
Philip Reamesa88caea2015-08-31 19:44:38 +0000901 case Instruction::BitCast:
902 case Instruction::GetElementPtr:
903 case Instruction::AddrSpaceCast:
904 FlowsToReturn.insert(RVI->getOperand(0));
905 continue;
906 case Instruction::Select: {
907 SelectInst *SI = cast<SelectInst>(RVI);
908 FlowsToReturn.insert(SI->getTrueValue());
909 FlowsToReturn.insert(SI->getFalseValue());
910 continue;
911 }
912 case Instruction::PHI: {
913 PHINode *PN = cast<PHINode>(RVI);
914 for (int i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
915 FlowsToReturn.insert(PN->getIncomingValue(i));
916 continue;
917 }
918 case Instruction::Call:
919 case Instruction::Invoke: {
920 CallSite CS(RVI);
921 Function *Callee = CS.getCalledFunction();
922 // A call to a node within the SCC is assumed to return null until
923 // proven otherwise
924 if (Callee && SCCNodes.count(Callee)) {
925 Speculative = true;
926 continue;
927 }
928 return false;
929 }
930 default:
Chandler Carruth63559d72015-09-13 06:47:20 +0000931 return false; // Unknown source, may be null
Philip Reamesa88caea2015-08-31 19:44:38 +0000932 };
933 llvm_unreachable("should have either continued or returned");
934 }
935
936 return true;
937}
938
Chandler Carrutha632fb92015-09-13 06:57:25 +0000939/// Deduce nonnull attributes for the SCC.
Sean Silva45835e72016-07-02 23:47:27 +0000940static bool addNonNullAttrs(const SCCNodeSet &SCCNodes) {
Philip Reamesa88caea2015-08-31 19:44:38 +0000941 // Speculative that all functions in the SCC return only nonnull
942 // pointers. We may refute this as we analyze functions.
943 bool SCCReturnsNonNull = true;
944
945 bool MadeChange = false;
946
947 // Check each function in turn, determining which functions return nonnull
948 // pointers.
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000949 for (Function *F : SCCNodes) {
Philip Reamesa88caea2015-08-31 19:44:38 +0000950 // Already nonnull.
Reid Klecknerb5180542017-03-21 16:57:19 +0000951 if (F->getAttributes().hasAttribute(AttributeList::ReturnIndex,
Philip Reamesa88caea2015-08-31 19:44:38 +0000952 Attribute::NonNull))
953 continue;
954
Sanjoy Das5ce32722016-04-08 00:48:30 +0000955 // We can infer and propagate function attributes only when we know that the
956 // definition we'll get at link time is *exactly* the definition we see now.
957 // For more details, see GlobalValue::mayBeDerefined.
958 if (!F->hasExactDefinition())
Philip Reamesa88caea2015-08-31 19:44:38 +0000959 return false;
960
Chandler Carruth63559d72015-09-13 06:47:20 +0000961 // We annotate nonnull return values, which are only applicable to
Philip Reamesa88caea2015-08-31 19:44:38 +0000962 // pointer types.
963 if (!F->getReturnType()->isPointerTy())
964 continue;
965
966 bool Speculative = false;
Sean Silva45835e72016-07-02 23:47:27 +0000967 if (isReturnNonNull(F, SCCNodes, Speculative)) {
Philip Reamesa88caea2015-08-31 19:44:38 +0000968 if (!Speculative) {
969 // Mark the function eagerly since we may discover a function
970 // which prevents us from speculating about the entire SCC
971 DEBUG(dbgs() << "Eagerly marking " << F->getName() << " as nonnull\n");
Reid Klecknerb5180542017-03-21 16:57:19 +0000972 F->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
Philip Reamesa88caea2015-08-31 19:44:38 +0000973 ++NumNonNullReturn;
974 MadeChange = true;
975 }
976 continue;
977 }
978 // At least one function returns something which could be null, can't
979 // speculate any more.
980 SCCReturnsNonNull = false;
981 }
982
983 if (SCCReturnsNonNull) {
Chandler Carruthc518ebd2015-10-29 18:29:15 +0000984 for (Function *F : SCCNodes) {
Reid Klecknerb5180542017-03-21 16:57:19 +0000985 if (F->getAttributes().hasAttribute(AttributeList::ReturnIndex,
Philip Reamesa88caea2015-08-31 19:44:38 +0000986 Attribute::NonNull) ||
987 !F->getReturnType()->isPointerTy())
988 continue;
989
990 DEBUG(dbgs() << "SCC marking " << F->getName() << " as nonnull\n");
Reid Klecknerb5180542017-03-21 16:57:19 +0000991 F->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
Philip Reamesa88caea2015-08-31 19:44:38 +0000992 ++NumNonNullReturn;
993 MadeChange = true;
994 }
995 }
996
997 return MadeChange;
998}
999
Justin Lebar9d943972016-03-14 20:18:54 +00001000/// Remove the convergent attribute from all functions in the SCC if every
1001/// callsite within the SCC is not convergent (except for calls to functions
1002/// within the SCC). Returns true if changes were made.
Chandler Carruth3937bc72016-02-12 09:47:49 +00001003static bool removeConvergentAttrs(const SCCNodeSet &SCCNodes) {
Justin Lebar9d943972016-03-14 20:18:54 +00001004 // For every function in SCC, ensure that either
1005 // * it is not convergent, or
1006 // * we can remove its convergent attribute.
1007 bool HasConvergentFn = false;
Chandler Carruth3937bc72016-02-12 09:47:49 +00001008 for (Function *F : SCCNodes) {
Justin Lebar9d943972016-03-14 20:18:54 +00001009 if (!F->isConvergent()) continue;
1010 HasConvergentFn = true;
1011
1012 // Can't remove convergent from function declarations.
1013 if (F->isDeclaration()) return false;
1014
1015 // Can't remove convergent if any of our functions has a convergent call to a
1016 // function not in the SCC.
1017 for (Instruction &I : instructions(*F)) {
1018 CallSite CS(&I);
1019 // Bail if CS is a convergent call to a function not in the SCC.
1020 if (CS && CS.isConvergent() &&
1021 SCCNodes.count(CS.getCalledFunction()) == 0)
1022 return false;
1023 }
1024 }
1025
1026 // If the SCC doesn't have any convergent functions, we have nothing to do.
1027 if (!HasConvergentFn) return false;
1028
1029 // If we got here, all of the calls the SCC makes to functions not in the SCC
1030 // are non-convergent. Therefore all of the SCC's functions can also be made
1031 // non-convergent. We'll remove the attr from the callsites in
1032 // InstCombineCalls.
1033 for (Function *F : SCCNodes) {
1034 if (!F->isConvergent()) continue;
1035
1036 DEBUG(dbgs() << "Removing convergent attr from fn " << F->getName()
1037 << "\n");
Chandler Carruth3937bc72016-02-12 09:47:49 +00001038 F->setNotConvergent();
1039 }
Justin Lebar260854b2016-02-09 23:03:22 +00001040 return true;
1041}
1042
James Molloy7e9bdd52015-11-12 10:55:20 +00001043static bool setDoesNotRecurse(Function &F) {
1044 if (F.doesNotRecurse())
1045 return false;
1046 F.setDoesNotRecurse();
1047 ++NumNoRecurse;
1048 return true;
1049}
1050
Chandler Carruth632d2082016-02-13 08:47:51 +00001051static bool addNoRecurseAttrs(const SCCNodeSet &SCCNodes) {
James Molloy7e9bdd52015-11-12 10:55:20 +00001052 // Try and identify functions that do not recurse.
1053
1054 // If the SCC contains multiple nodes we know for sure there is recursion.
Chandler Carruth632d2082016-02-13 08:47:51 +00001055 if (SCCNodes.size() != 1)
James Molloy7e9bdd52015-11-12 10:55:20 +00001056 return false;
1057
Chandler Carruth632d2082016-02-13 08:47:51 +00001058 Function *F = *SCCNodes.begin();
James Molloy7e9bdd52015-11-12 10:55:20 +00001059 if (!F || F->isDeclaration() || F->doesNotRecurse())
1060 return false;
1061
1062 // If all of the calls in F are identifiable and are to norecurse functions, F
1063 // is norecurse. This check also detects self-recursion as F is not currently
1064 // marked norecurse, so any called from F to F will not be marked norecurse.
Chandler Carruth632d2082016-02-13 08:47:51 +00001065 for (Instruction &I : instructions(*F))
1066 if (auto CS = CallSite(&I)) {
1067 Function *Callee = CS.getCalledFunction();
1068 if (!Callee || Callee == F || !Callee->doesNotRecurse())
1069 // Function calls a potentially recursive function.
1070 return false;
1071 }
James Molloy7e9bdd52015-11-12 10:55:20 +00001072
Chandler Carruth632d2082016-02-13 08:47:51 +00001073 // Every call was to a non-recursive function other than this function, and
1074 // we have no indirect recursion as the SCC size is one. This function cannot
1075 // recurse.
1076 return setDoesNotRecurse(*F);
James Molloy7e9bdd52015-11-12 10:55:20 +00001077}
1078
Chandler Carruthb47f8012016-03-11 11:05:24 +00001079PreservedAnalyses PostOrderFunctionAttrsPass::run(LazyCallGraph::SCC &C,
Chandler Carruth88823462016-08-24 09:37:14 +00001080 CGSCCAnalysisManager &AM,
1081 LazyCallGraph &CG,
1082 CGSCCUpdateResult &) {
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001083 FunctionAnalysisManager &FAM =
Chandler Carruth88823462016-08-24 09:37:14 +00001084 AM.getResult<FunctionAnalysisManagerCGSCCProxy>(C, CG).getManager();
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001085
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001086 // We pass a lambda into functions to wire them up to the analysis manager
1087 // for getting function analyses.
1088 auto AARGetter = [&](Function &F) -> AAResults & {
1089 return FAM.getResult<AAManager>(F);
1090 };
1091
1092 // Fill SCCNodes with the elements of the SCC. Also track whether there are
1093 // any external or opt-none nodes that will prevent us from optimizing any
1094 // part of the SCC.
1095 SCCNodeSet SCCNodes;
1096 bool HasUnknownCall = false;
1097 for (LazyCallGraph::Node &N : C) {
1098 Function &F = N.getFunction();
1099 if (F.hasFnAttribute(Attribute::OptimizeNone)) {
1100 // Treat any function we're trying not to optimize as if it were an
1101 // indirect call and omit it from the node set used below.
1102 HasUnknownCall = true;
1103 continue;
1104 }
1105 // Track whether any functions in this SCC have an unknown call edge.
1106 // Note: if this is ever a performance hit, we can common it with
1107 // subsequent routines which also do scans over the instructions of the
1108 // function.
1109 if (!HasUnknownCall)
1110 for (Instruction &I : instructions(F))
1111 if (auto CS = CallSite(&I))
1112 if (!CS.getCalledFunction()) {
1113 HasUnknownCall = true;
1114 break;
1115 }
1116
1117 SCCNodes.insert(&F);
1118 }
1119
1120 bool Changed = false;
David Majnemer5246e0b2016-07-19 18:50:26 +00001121 Changed |= addArgumentReturnedAttrs(SCCNodes);
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001122 Changed |= addReadAttrs(SCCNodes, AARGetter);
1123 Changed |= addArgumentAttrs(SCCNodes);
1124
1125 // If we have no external nodes participating in the SCC, we can deduce some
1126 // more precise attributes as well.
1127 if (!HasUnknownCall) {
1128 Changed |= addNoAliasAttrs(SCCNodes);
Sean Silva45835e72016-07-02 23:47:27 +00001129 Changed |= addNonNullAttrs(SCCNodes);
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001130 Changed |= removeConvergentAttrs(SCCNodes);
1131 Changed |= addNoRecurseAttrs(SCCNodes);
1132 }
1133
1134 return Changed ? PreservedAnalyses::none() : PreservedAnalyses::all();
1135}
1136
1137namespace {
1138struct PostOrderFunctionAttrsLegacyPass : public CallGraphSCCPass {
1139 static char ID; // Pass identification, replacement for typeid
1140 PostOrderFunctionAttrsLegacyPass() : CallGraphSCCPass(ID) {
Chad Rosier611b73b2016-11-07 16:28:04 +00001141 initializePostOrderFunctionAttrsLegacyPassPass(
1142 *PassRegistry::getPassRegistry());
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001143 }
1144
1145 bool runOnSCC(CallGraphSCC &SCC) override;
1146
1147 void getAnalysisUsage(AnalysisUsage &AU) const override {
1148 AU.setPreservesCFG();
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001149 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruth12884f72016-03-02 15:56:53 +00001150 getAAResultsAnalysisUsage(AU);
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001151 CallGraphSCCPass::getAnalysisUsage(AU);
1152 }
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001153};
1154}
1155
1156char PostOrderFunctionAttrsLegacyPass::ID = 0;
1157INITIALIZE_PASS_BEGIN(PostOrderFunctionAttrsLegacyPass, "functionattrs",
1158 "Deduce function attributes", false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001159INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001160INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001161INITIALIZE_PASS_END(PostOrderFunctionAttrsLegacyPass, "functionattrs",
1162 "Deduce function attributes", false, false)
1163
Chad Rosier611b73b2016-11-07 16:28:04 +00001164Pass *llvm::createPostOrderFunctionAttrsLegacyPass() {
1165 return new PostOrderFunctionAttrsLegacyPass();
1166}
Chandler Carruth9c4ed172016-02-18 11:03:11 +00001167
Sean Silva997cbea2016-07-03 03:35:03 +00001168template <typename AARGetterT>
1169static bool runImpl(CallGraphSCC &SCC, AARGetterT AARGetter) {
Chandler Carruthcada2d82015-10-31 00:28:37 +00001170 bool Changed = false;
Chandler Carruthc518ebd2015-10-29 18:29:15 +00001171
1172 // Fill SCCNodes with the elements of the SCC. Used for quickly looking up
1173 // whether a given CallGraphNode is in this SCC. Also track whether there are
1174 // any external or opt-none nodes that will prevent us from optimizing any
1175 // part of the SCC.
1176 SCCNodeSet SCCNodes;
1177 bool ExternalNode = false;
Benjamin Kramer135f7352016-06-26 12:28:59 +00001178 for (CallGraphNode *I : SCC) {
1179 Function *F = I->getFunction();
Chandler Carruthc518ebd2015-10-29 18:29:15 +00001180 if (!F || F->hasFnAttribute(Attribute::OptimizeNone)) {
1181 // External node or function we're trying not to optimize - we both avoid
1182 // transform them and avoid leveraging information they provide.
1183 ExternalNode = true;
1184 continue;
1185 }
1186
1187 SCCNodes.insert(F);
1188 }
1189
David Majnemer5246e0b2016-07-19 18:50:26 +00001190 Changed |= addArgumentReturnedAttrs(SCCNodes);
Chandler Carrutha8125352015-10-30 16:48:08 +00001191 Changed |= addReadAttrs(SCCNodes, AARGetter);
Chandler Carruthc518ebd2015-10-29 18:29:15 +00001192 Changed |= addArgumentAttrs(SCCNodes);
1193
Chandler Carruth3a040e62015-12-27 08:41:34 +00001194 // If we have no external nodes participating in the SCC, we can deduce some
Chandler Carruthc518ebd2015-10-29 18:29:15 +00001195 // more precise attributes as well.
1196 if (!ExternalNode) {
1197 Changed |= addNoAliasAttrs(SCCNodes);
Sean Silva45835e72016-07-02 23:47:27 +00001198 Changed |= addNonNullAttrs(SCCNodes);
Chandler Carruth3937bc72016-02-12 09:47:49 +00001199 Changed |= removeConvergentAttrs(SCCNodes);
Chandler Carruth632d2082016-02-13 08:47:51 +00001200 Changed |= addNoRecurseAttrs(SCCNodes);
Chandler Carruthc518ebd2015-10-29 18:29:15 +00001201 }
Chandler Carruth1926b702016-01-08 10:55:52 +00001202
James Molloy7e9bdd52015-11-12 10:55:20 +00001203 return Changed;
1204}
Chandler Carruthc518ebd2015-10-29 18:29:15 +00001205
Sean Silva997cbea2016-07-03 03:35:03 +00001206bool PostOrderFunctionAttrsLegacyPass::runOnSCC(CallGraphSCC &SCC) {
1207 if (skipSCC(SCC))
1208 return false;
Peter Collingbournecea1e4e2017-02-09 23:11:52 +00001209 return runImpl(SCC, LegacyAARGetter(*this));
Sean Silva997cbea2016-07-03 03:35:03 +00001210}
1211
Chandler Carruth1926b702016-01-08 10:55:52 +00001212namespace {
Sean Silvaf5080192016-06-12 07:48:51 +00001213struct ReversePostOrderFunctionAttrsLegacyPass : public ModulePass {
Chandler Carruth1926b702016-01-08 10:55:52 +00001214 static char ID; // Pass identification, replacement for typeid
Sean Silvaf5080192016-06-12 07:48:51 +00001215 ReversePostOrderFunctionAttrsLegacyPass() : ModulePass(ID) {
Chad Rosier611b73b2016-11-07 16:28:04 +00001216 initializeReversePostOrderFunctionAttrsLegacyPassPass(
1217 *PassRegistry::getPassRegistry());
Chandler Carruth1926b702016-01-08 10:55:52 +00001218 }
1219
1220 bool runOnModule(Module &M) override;
1221
1222 void getAnalysisUsage(AnalysisUsage &AU) const override {
1223 AU.setPreservesCFG();
1224 AU.addRequired<CallGraphWrapperPass>();
Mehdi Amini0ddf4042016-05-02 18:03:33 +00001225 AU.addPreserved<CallGraphWrapperPass>();
Chandler Carruth1926b702016-01-08 10:55:52 +00001226 }
1227};
1228}
1229
Sean Silvaf5080192016-06-12 07:48:51 +00001230char ReversePostOrderFunctionAttrsLegacyPass::ID = 0;
1231INITIALIZE_PASS_BEGIN(ReversePostOrderFunctionAttrsLegacyPass, "rpo-functionattrs",
Chandler Carruth1926b702016-01-08 10:55:52 +00001232 "Deduce function attributes in RPO", false, false)
1233INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
Sean Silvaf5080192016-06-12 07:48:51 +00001234INITIALIZE_PASS_END(ReversePostOrderFunctionAttrsLegacyPass, "rpo-functionattrs",
Chandler Carruth1926b702016-01-08 10:55:52 +00001235 "Deduce function attributes in RPO", false, false)
1236
1237Pass *llvm::createReversePostOrderFunctionAttrsPass() {
Sean Silvaf5080192016-06-12 07:48:51 +00001238 return new ReversePostOrderFunctionAttrsLegacyPass();
Chandler Carruth1926b702016-01-08 10:55:52 +00001239}
1240
1241static bool addNoRecurseAttrsTopDown(Function &F) {
1242 // We check the preconditions for the function prior to calling this to avoid
1243 // the cost of building up a reversible post-order list. We assert them here
1244 // to make sure none of the invariants this relies on were violated.
1245 assert(!F.isDeclaration() && "Cannot deduce norecurse without a definition!");
1246 assert(!F.doesNotRecurse() &&
1247 "This function has already been deduced as norecurs!");
1248 assert(F.hasInternalLinkage() &&
1249 "Can only do top-down deduction for internal linkage functions!");
1250
1251 // If F is internal and all of its uses are calls from a non-recursive
1252 // functions, then none of its calls could in fact recurse without going
1253 // through a function marked norecurse, and so we can mark this function too
1254 // as norecurse. Note that the uses must actually be calls -- otherwise
1255 // a pointer to this function could be returned from a norecurse function but
1256 // this function could be recursively (indirectly) called. Note that this
1257 // also detects if F is directly recursive as F is not yet marked as
1258 // a norecurse function.
1259 for (auto *U : F.users()) {
1260 auto *I = dyn_cast<Instruction>(U);
1261 if (!I)
1262 return false;
1263 CallSite CS(I);
1264 if (!CS || !CS.getParent()->getParent()->doesNotRecurse())
1265 return false;
1266 }
1267 return setDoesNotRecurse(F);
1268}
1269
Sean Silvaadc79392016-06-12 05:44:51 +00001270static bool deduceFunctionAttributeInRPO(Module &M, CallGraph &CG) {
Chandler Carruth1926b702016-01-08 10:55:52 +00001271 // We only have a post-order SCC traversal (because SCCs are inherently
1272 // discovered in post-order), so we accumulate them in a vector and then walk
1273 // it in reverse. This is simpler than using the RPO iterator infrastructure
1274 // because we need to combine SCC detection and the PO walk of the call
1275 // graph. We can also cheat egregiously because we're primarily interested in
1276 // synthesizing norecurse and so we can only save the singular SCCs as SCCs
1277 // with multiple functions in them will clearly be recursive.
Chandler Carruth1926b702016-01-08 10:55:52 +00001278 SmallVector<Function *, 16> Worklist;
1279 for (scc_iterator<CallGraph *> I = scc_begin(&CG); !I.isAtEnd(); ++I) {
1280 if (I->size() != 1)
1281 continue;
1282
1283 Function *F = I->front()->getFunction();
1284 if (F && !F->isDeclaration() && !F->doesNotRecurse() &&
1285 F->hasInternalLinkage())
1286 Worklist.push_back(F);
1287 }
1288
James Molloy7e9bdd52015-11-12 10:55:20 +00001289 bool Changed = false;
Chandler Carruth1926b702016-01-08 10:55:52 +00001290 for (auto *F : reverse(Worklist))
1291 Changed |= addNoRecurseAttrsTopDown(*F);
1292
Duncan Sands44c8cd92008-12-31 16:14:43 +00001293 return Changed;
1294}
Sean Silvaadc79392016-06-12 05:44:51 +00001295
Sean Silvaf5080192016-06-12 07:48:51 +00001296bool ReversePostOrderFunctionAttrsLegacyPass::runOnModule(Module &M) {
Sean Silvaadc79392016-06-12 05:44:51 +00001297 if (skipModule(M))
1298 return false;
1299
1300 auto &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
1301
1302 return deduceFunctionAttributeInRPO(M, CG);
1303}
Sean Silvaf5080192016-06-12 07:48:51 +00001304
1305PreservedAnalyses
Sean Silvafd03ac62016-08-09 00:28:38 +00001306ReversePostOrderFunctionAttrsPass::run(Module &M, ModuleAnalysisManager &AM) {
Sean Silvaf5080192016-06-12 07:48:51 +00001307 auto &CG = AM.getResult<CallGraphAnalysis>(M);
1308
Chandler Carruth6acdca72017-01-24 12:55:57 +00001309 if (!deduceFunctionAttributeInRPO(M, CG))
Sean Silvaf5080192016-06-12 07:48:51 +00001310 return PreservedAnalyses::all();
Chandler Carruth6acdca72017-01-24 12:55:57 +00001311
Sean Silvaf5080192016-06-12 07:48:51 +00001312 PreservedAnalyses PA;
1313 PA.preserve<CallGraphAnalysis>();
1314 return PA;
1315}