blob: b2299c3ecfa64a93588b60fb79b7e59bd51158b6 [file] [log] [blame]
Chris Lattner237ef562003-08-31 19:10:30 +00001//===- InlineSimple.cpp - Code to perform simple function inlining --------===//
Chris Lattner00950542001-06-06 20:29:01 +00002//
Chris Lattnerca398dc2003-05-29 15:11:31 +00003// This file implements bottom-up inlining of functions into callees.
Chris Lattner01545052002-04-18 18:52:03 +00004//
Chris Lattner00950542001-06-06 20:29:01 +00005//===----------------------------------------------------------------------===//
6
Chris Lattner237ef562003-08-31 19:10:30 +00007#include "Inliner.h"
8#include "llvm/Function.h"
Chris Lattnerca398dc2003-05-29 15:11:31 +00009#include "llvm/iMemory.h"
Chris Lattnere5445332003-08-24 06:59:28 +000010#include "llvm/Support/CallSite.h"
Chris Lattner237ef562003-08-31 19:10:30 +000011#include "llvm/Transforms/IPO.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000012
13namespace {
Chris Lattner884d6c42003-10-06 15:52:43 +000014 // FunctionInfo - For each function, calculate the size of it in blocks and
15 // instructions.
16 struct FunctionInfo {
17 unsigned NumInsts, NumBlocks;
18
19 FunctionInfo() : NumInsts(0), NumBlocks(0) {}
20 };
21
22 class SimpleInliner : public Inliner {
23 std::map<const Function*, FunctionInfo> CachedFunctionInfo;
24 public:
Chris Lattner237ef562003-08-31 19:10:30 +000025 int getInlineCost(CallSite CS);
Chris Lattnerbd0ef772002-02-26 21:46:54 +000026 };
Chris Lattner237ef562003-08-31 19:10:30 +000027 RegisterOpt<SimpleInliner> X("inline", "Function Integration/Inlining");
Chris Lattnerbd0ef772002-02-26 21:46:54 +000028}
29
Chris Lattner237ef562003-08-31 19:10:30 +000030Pass *createFunctionInliningPass() { return new SimpleInliner(); }
Chris Lattnerca398dc2003-05-29 15:11:31 +000031
Chris Lattner237ef562003-08-31 19:10:30 +000032// getInlineCost - The heuristic used to determine if we should inline the
33// function call or not.
Chris Lattnerca398dc2003-05-29 15:11:31 +000034//
Chris Lattner237ef562003-08-31 19:10:30 +000035int SimpleInliner::getInlineCost(CallSite CS) {
Chris Lattnere5445332003-08-24 06:59:28 +000036 Instruction *TheCall = CS.getInstruction();
Chris Lattnere5445332003-08-24 06:59:28 +000037 const Function *Callee = CS.getCalledFunction();
Chris Lattnere5445332003-08-24 06:59:28 +000038 const Function *Caller = TheCall->getParent()->getParent();
Chris Lattnerca398dc2003-05-29 15:11:31 +000039
Chris Lattner237ef562003-08-31 19:10:30 +000040 // Don't inline a directly recursive call.
41 if (Caller == Callee) return 2000000000;
42
43 // InlineCost - This value measures how good of an inline candidate this call
44 // site is to inline. A lower inline cost make is more likely for the call to
45 // be inlined. This value may go negative.
Chris Lattnerca398dc2003-05-29 15:11:31 +000046 //
Chris Lattner237ef562003-08-31 19:10:30 +000047 int InlineCost = 0;
Chris Lattnerca398dc2003-05-29 15:11:31 +000048
49 // If there is only one call of the function, and it has internal linkage,
50 // make it almost guaranteed to be inlined.
51 //
52 if (Callee->use_size() == 1 && Callee->hasInternalLinkage())
Chris Lattner237ef562003-08-31 19:10:30 +000053 InlineCost -= 30000;
Chris Lattnerca398dc2003-05-29 15:11:31 +000054
Misha Brukmancf00c4a2003-10-10 17:57:28 +000055 // Add to the inline quality for properties that make the call valuable to
Chris Lattnerca398dc2003-05-29 15:11:31 +000056 // inline. This includes factors that indicate that the result of inlining
57 // the function will be optimizable. Currently this just looks at arguments
58 // passed into the function.
59 //
Chris Lattnere5445332003-08-24 06:59:28 +000060 for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
61 I != E; ++I) {
Chris Lattnerca398dc2003-05-29 15:11:31 +000062 // Each argument passed in has a cost at both the caller and the callee
63 // sides. This favors functions that take many arguments over functions
64 // that take few arguments.
Chris Lattner237ef562003-08-31 19:10:30 +000065 InlineCost -= 20;
Chris Lattnerca398dc2003-05-29 15:11:31 +000066
67 // If this is a function being passed in, it is very likely that we will be
68 // able to turn an indirect function call into a direct function call.
69 if (isa<Function>(I))
Chris Lattner237ef562003-08-31 19:10:30 +000070 InlineCost -= 100;
Chris Lattnerca398dc2003-05-29 15:11:31 +000071
72 // If a constant, global variable or alloca is passed in, inlining this
73 // function is likely to allow significant future optimization possibilities
74 // (constant propagation, scalar promotion, and scalarization), so encourage
75 // the inlining of the function.
76 //
77 else if (isa<Constant>(I) || isa<GlobalVariable>(I) || isa<AllocaInst>(I))
Chris Lattner237ef562003-08-31 19:10:30 +000078 InlineCost -= 60;
Chris Lattnerca398dc2003-05-29 15:11:31 +000079 }
80
81 // Now that we have considered all of the factors that make the call site more
82 // likely to be inlined, look at factors that make us not want to inline it.
Chris Lattner884d6c42003-10-06 15:52:43 +000083 FunctionInfo &CalleeFI = CachedFunctionInfo[Callee];
Chris Lattnerca398dc2003-05-29 15:11:31 +000084
Chris Lattner884d6c42003-10-06 15:52:43 +000085 // If we haven't calculated this information yet...
86 if (CalleeFI.NumBlocks == 0) {
87 unsigned NumInsts = 0, NumBlocks = 0;
88
89 // Look at the size of the callee. Each basic block counts as 20 units, and
90 // each instruction counts as 10.
91 for (Function::const_iterator BB = Callee->begin(), E = Callee->end();
92 BB != E; ++BB) {
93 NumInsts += BB->size();
94 NumBlocks++;
95 }
96 CalleeFI.NumBlocks = NumBlocks;
97 CalleeFI.NumInsts = NumInsts;
98 }
99
Chris Lattnerda78b002003-10-07 19:33:31 +0000100 // Don't inline into something too big, which would make it bigger. Here, we
101 // count each basic block as a single unit.
102 InlineCost += Caller->size()*2;
103
104
105 // Look at the size of the callee. Each basic block counts as 20 units, and
Chris Lattnerca398dc2003-05-29 15:11:31 +0000106 // each instruction counts as 10.
Chris Lattner884d6c42003-10-06 15:52:43 +0000107 InlineCost += CalleeFI.NumInsts*10 + CalleeFI.NumBlocks*20;
Chris Lattner237ef562003-08-31 19:10:30 +0000108 return InlineCost;
Chris Lattnerca398dc2003-05-29 15:11:31 +0000109}