blob: d720c3c2cc78b279a5eaa83c2d11ee44171c4ad1 [file] [log] [blame]
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001//===- FunctionInlining.cpp - Code to perform function inlining -----------===//
Chris Lattner00950542001-06-06 20:29:01 +00002//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00003// This file implements inlining of functions.
Chris Lattner00950542001-06-06 20:29:01 +00004//
5// Specifically, this:
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00006// * Exports functionality to inline any function call
7// * Inlines functions that consist of a single basic block
8// * Is able to inline ANY function call
9// . Has a smart heuristic for when to inline a function
Chris Lattner00950542001-06-06 20:29:01 +000010//
11// Notice that:
Chris Lattner59b6b8e2002-01-21 23:17:48 +000012// * This pass opens up a lot of opportunities for constant propogation. It
13// is a good idea to to run a constant propogation pass, then a DCE pass
Chris Lattner00950542001-06-06 20:29:01 +000014// sometime after running this pass.
15//
Chris Lattner00950542001-06-06 20:29:01 +000016//===----------------------------------------------------------------------===//
17
Chris Lattner59b6b8e2002-01-21 23:17:48 +000018#include "llvm/Transforms/MethodInlining.h"
Chris Lattner00950542001-06-06 20:29:01 +000019#include "llvm/Module.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000020#include "llvm/Function.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000021#include "llvm/Pass.h"
Chris Lattner00950542001-06-06 20:29:01 +000022#include "llvm/iTerminators.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000023#include "llvm/iPHINode.h"
Chris Lattner00950542001-06-06 20:29:01 +000024#include "llvm/iOther.h"
Chris Lattner00950542001-06-06 20:29:01 +000025#include <algorithm>
26#include <map>
Chris Lattner697954c2002-01-20 22:54:45 +000027#include <iostream>
28using std::cerr;
Chris Lattner00950542001-06-06 20:29:01 +000029
30#include "llvm/Assembly/Writer.h"
31
32// RemapInstruction - Convert the instruction operands from referencing the
33// current values into those specified by ValueMap.
34//
35static inline void RemapInstruction(Instruction *I,
Chris Lattner697954c2002-01-20 22:54:45 +000036 std::map<const Value *, Value*> &ValueMap) {
Chris Lattner00950542001-06-06 20:29:01 +000037
Chris Lattnerc8b25d42001-07-07 08:36:50 +000038 for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
39 const Value *Op = I->getOperand(op);
Chris Lattner00950542001-06-06 20:29:01 +000040 Value *V = ValueMap[Op];
Chris Lattnere9bb2df2001-12-03 22:26:30 +000041 if (!V && (isa<GlobalValue>(Op) || isa<Constant>(Op)))
Chris Lattner4f685282001-10-31 02:27:26 +000042 continue; // Globals and constants don't get relocated
Chris Lattner00950542001-06-06 20:29:01 +000043
44 if (!V) {
Chris Lattner697954c2002-01-20 22:54:45 +000045 cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
46 cerr << "\nInst = " << I;
Chris Lattner00950542001-06-06 20:29:01 +000047 }
48 assert(V && "Referenced value not in value map!");
49 I->setOperand(op, V);
50 }
51}
52
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000053// InlineMethod - This function forcibly inlines the called function into the
Chris Lattner00950542001-06-06 20:29:01 +000054// basic block of the caller. This returns false if it is not possible to
55// inline this call. The program is still in a well defined state if this
56// occurs though.
57//
58// Note that this only does one level of inlining. For example, if the
59// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
60// exists in the instruction stream. Similiarly this will inline a recursive
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000061// function by one level.
Chris Lattner00950542001-06-06 20:29:01 +000062//
Chris Lattner59b6b8e2002-01-21 23:17:48 +000063bool InlineMethod(BasicBlock::iterator CIIt) {
Chris Lattnerb00c5822001-10-02 03:41:24 +000064 assert(isa<CallInst>(*CIIt) && "InlineMethod only works on CallInst nodes!");
Chris Lattner00950542001-06-06 20:29:01 +000065 assert((*CIIt)->getParent() && "Instruction not embedded in basic block!");
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000066 assert((*CIIt)->getParent()->getParent() && "Instruction not in function!");
Chris Lattner00950542001-06-06 20:29:01 +000067
Chris Lattnerb00c5822001-10-02 03:41:24 +000068 CallInst *CI = cast<CallInst>(*CIIt);
Chris Lattnerdc89f872002-03-29 17:08:29 +000069 const Function *CalledMeth = CI->getCalledFunction();
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000070 if (CalledMeth == 0 || // Can't inline external function or indirect call!
Chris Lattner5a0d4172001-10-13 06:52:31 +000071 CalledMeth->isExternal()) return false;
Chris Lattner00950542001-06-06 20:29:01 +000072
73 //cerr << "Inlining " << CalledMeth->getName() << " into "
Chris Lattner697954c2002-01-20 22:54:45 +000074 // << CurrentMeth->getName() << "\n";
Chris Lattner00950542001-06-06 20:29:01 +000075
76 BasicBlock *OrigBB = CI->getParent();
77
78 // Call splitBasicBlock - The original basic block now ends at the instruction
79 // immediately before the call. The original basic block now ends with an
80 // unconditional branch to NewBB, and NewBB starts with the call instruction.
81 //
82 BasicBlock *NewBB = OrigBB->splitBasicBlock(CIIt);
Chris Lattner41b66b12002-02-25 00:31:02 +000083 NewBB->setName("InlinedFunctionReturnNode");
Chris Lattner00950542001-06-06 20:29:01 +000084
85 // Remove (unlink) the CallInst from the start of the new basic block.
86 NewBB->getInstList().remove(CI);
87
88 // If we have a return value generated by this call, convert it into a PHI
89 // node that gets values from each of the old RET instructions in the original
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000090 // function.
Chris Lattner00950542001-06-06 20:29:01 +000091 //
92 PHINode *PHI = 0;
93 if (CalledMeth->getReturnType() != Type::VoidTy) {
94 PHI = new PHINode(CalledMeth->getReturnType(), CI->getName());
95
96 // The PHI node should go at the front of the new basic block to merge all
97 // possible incoming values.
98 //
99 NewBB->getInstList().push_front(PHI);
100
101 // Anything that used the result of the function call should now use the PHI
102 // node as their operand.
103 //
104 CI->replaceAllUsesWith(PHI);
105 }
106
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000107 // Keep a mapping between the original function's values and the new
108 // duplicated code's values. This includes all of: Function arguments,
109 // instruction values, constant pool entries, and basic blocks.
Chris Lattner00950542001-06-06 20:29:01 +0000110 //
Chris Lattner697954c2002-01-20 22:54:45 +0000111 std::map<const Value *, Value*> ValueMap;
Chris Lattner00950542001-06-06 20:29:01 +0000112
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000113 // Add the function arguments to the mapping: (start counting at 1 to skip the
114 // function reference itself)
Chris Lattner00950542001-06-06 20:29:01 +0000115 //
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000116 Function::ArgumentListType::const_iterator PTI =
Chris Lattner00950542001-06-06 20:29:01 +0000117 CalledMeth->getArgumentList().begin();
Chris Lattnerc8b25d42001-07-07 08:36:50 +0000118 for (unsigned a = 1, E = CI->getNumOperands(); a != E; ++a, ++PTI)
119 ValueMap[*PTI] = CI->getOperand(a);
Chris Lattner00950542001-06-06 20:29:01 +0000120
Chris Lattner00950542001-06-06 20:29:01 +0000121 ValueMap[NewBB] = NewBB; // Returns get converted to reference NewBB
122
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000123 // Loop over all of the basic blocks in the function, inlining them as
124 // appropriate. Keep track of the first basic block of the function...
Chris Lattner00950542001-06-06 20:29:01 +0000125 //
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000126 for (Function::const_iterator BI = CalledMeth->begin();
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000127 BI != CalledMeth->end(); ++BI) {
Chris Lattner00950542001-06-06 20:29:01 +0000128 const BasicBlock *BB = *BI;
129 assert(BB->getTerminator() && "BasicBlock doesn't have terminator!?!?");
130
131 // Create a new basic block to copy instructions into!
132 BasicBlock *IBB = new BasicBlock("", NewBB->getParent());
Chris Lattner41b66b12002-02-25 00:31:02 +0000133 if (BB->hasName()) IBB->setName(BB->getName()+".i"); // .i = inlined once
Chris Lattner00950542001-06-06 20:29:01 +0000134
Chris Lattner5fdc4c92001-10-14 23:29:30 +0000135 ValueMap[BB] = IBB; // Add basic block mapping.
Chris Lattner00950542001-06-06 20:29:01 +0000136
137 // Make sure to capture the mapping that a return will use...
138 // TODO: This assumes that the RET is returning a value computed in the same
139 // basic block as the return was issued from!
140 //
141 const TerminatorInst *TI = BB->getTerminator();
142
143 // Loop over all instructions copying them over...
144 Instruction *NewInst;
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000145 for (BasicBlock::const_iterator II = BB->begin();
146 II != (BB->end()-1); ++II) {
Chris Lattner00950542001-06-06 20:29:01 +0000147 IBB->getInstList().push_back((NewInst = (*II)->clone()));
148 ValueMap[*II] = NewInst; // Add instruction map to value.
Chris Lattner41b66b12002-02-25 00:31:02 +0000149 if ((*II)->hasName())
150 NewInst->setName((*II)->getName()+".i"); // .i = inlined once
Chris Lattner00950542001-06-06 20:29:01 +0000151 }
152
153 // Copy over the terminator now...
Chris Lattnera41f50d2001-07-07 19:24:15 +0000154 switch (TI->getOpcode()) {
Chris Lattner00950542001-06-06 20:29:01 +0000155 case Instruction::Ret: {
Chris Lattnerb00c5822001-10-02 03:41:24 +0000156 const ReturnInst *RI = cast<const ReturnInst>(TI);
Chris Lattner00950542001-06-06 20:29:01 +0000157
158 if (PHI) { // The PHI node should include this value!
159 assert(RI->getReturnValue() && "Ret should have value!");
160 assert(RI->getReturnValue()->getType() == PHI->getType() &&
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000161 "Ret value not consistent in function!");
Chris Lattnerb00c5822001-10-02 03:41:24 +0000162 PHI->addIncoming((Value*)RI->getReturnValue(), cast<BasicBlock>(BB));
Chris Lattner00950542001-06-06 20:29:01 +0000163 }
164
165 // Add a branch to the code that was after the original Call.
166 IBB->getInstList().push_back(new BranchInst(NewBB));
167 break;
168 }
169 case Instruction::Br:
170 IBB->getInstList().push_back(TI->clone());
171 break;
172
173 default:
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000174 cerr << "FunctionInlining: Don't know how to handle terminator: " << TI;
Chris Lattner00950542001-06-06 20:29:01 +0000175 abort();
176 }
177 }
178
179
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000180 // Loop over all of the instructions in the function, fixing up operand
Chris Lattner00950542001-06-06 20:29:01 +0000181 // references as we go. This uses ValueMap to do all the hard work.
182 //
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000183 for (Function::const_iterator BI = CalledMeth->begin();
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000184 BI != CalledMeth->end(); ++BI) {
Chris Lattner00950542001-06-06 20:29:01 +0000185 const BasicBlock *BB = *BI;
186 BasicBlock *NBB = (BasicBlock*)ValueMap[BB];
187
188 // Loop over all instructions, fixing each one as we find it...
189 //
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000190 for (BasicBlock::iterator II = NBB->begin(); II != NBB->end(); II++)
Chris Lattner00950542001-06-06 20:29:01 +0000191 RemapInstruction(*II, ValueMap);
192 }
193
194 if (PHI) RemapInstruction(PHI, ValueMap); // Fix the PHI node also...
195
196 // Change the branch that used to go to NewBB to branch to the first basic
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000197 // block of the inlined function.
Chris Lattner00950542001-06-06 20:29:01 +0000198 //
199 TerminatorInst *Br = OrigBB->getTerminator();
Chris Lattnera41f50d2001-07-07 19:24:15 +0000200 assert(Br && Br->getOpcode() == Instruction::Br &&
Chris Lattner00950542001-06-06 20:29:01 +0000201 "splitBasicBlock broken!");
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000202 Br->setOperand(0, ValueMap[CalledMeth->front()]);
Chris Lattner00950542001-06-06 20:29:01 +0000203
204 // Since we are now done with the CallInst, we can finally delete it.
205 delete CI;
206 return true;
207}
208
Chris Lattner59b6b8e2002-01-21 23:17:48 +0000209bool InlineMethod(CallInst *CI) {
Chris Lattner00950542001-06-06 20:29:01 +0000210 assert(CI->getParent() && "CallInst not embeded in BasicBlock!");
211 BasicBlock *PBB = CI->getParent();
212
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000213 BasicBlock::iterator CallIt = find(PBB->begin(), PBB->end(), CI);
214
215 assert(CallIt != PBB->end() &&
Chris Lattner00950542001-06-06 20:29:01 +0000216 "CallInst has parent that doesn't contain CallInst?!?");
217 return InlineMethod(CallIt);
218}
219
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000220static inline bool ShouldInlineFunction(const CallInst *CI, const Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000221 assert(CI->getParent() && CI->getParent()->getParent() &&
222 "Call not embedded into a method!");
223
224 // Don't inline a recursive call.
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000225 if (CI->getParent()->getParent() == F) return false;
Chris Lattner00950542001-06-06 20:29:01 +0000226
227 // Don't inline something too big. This is a really crappy heuristic
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000228 if (F->size() > 3) return false;
Chris Lattner00950542001-06-06 20:29:01 +0000229
230 // Don't inline into something too big. This is a **really** crappy heuristic
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000231 if (CI->getParent()->getParent()->size() > 10) return false;
Chris Lattner00950542001-06-06 20:29:01 +0000232
233 // Go ahead and try just about anything else.
234 return true;
235}
236
237
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000238static inline bool DoFunctionInlining(BasicBlock *BB) {
Chris Lattner7fc9fe32001-06-27 23:41:11 +0000239 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
Chris Lattnerb00c5822001-10-02 03:41:24 +0000240 if (CallInst *CI = dyn_cast<CallInst>(*I)) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000241 // Check to see if we should inline this function
242 Function *F = CI->getCalledFunction();
243 if (F && ShouldInlineFunction(CI, F))
Chris Lattner00950542001-06-06 20:29:01 +0000244 return InlineMethod(I);
245 }
246 }
247 return false;
248}
249
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000250// doFunctionInlining - Use a heuristic based approach to inline functions that
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000251// seem to look good.
252//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000253static bool doFunctionInlining(Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000254 bool Changed = false;
255
256 // Loop through now and inline instructions a basic block at a time...
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000257 for (Function::iterator I = F->begin(); I != F->end(); )
258 if (DoFunctionInlining(*I)) {
Chris Lattner00950542001-06-06 20:29:01 +0000259 Changed = true;
260 // Iterator is now invalidated by new basic blocks inserted
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000261 I = F->begin();
Chris Lattner00950542001-06-06 20:29:01 +0000262 } else {
263 ++I;
264 }
265
266 return Changed;
267}
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000268
269namespace {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000270 struct FunctionInlining : public MethodPass {
271 virtual bool runOnMethod(Function *F) {
272 return doFunctionInlining(F);
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000273 }
274 };
275}
276
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000277Pass *createMethodInliningPass() { return new FunctionInlining(); }