2002-04-07 20:49:59 +00:00
|
|
|
//===- FunctionInlining.cpp - Code to perform function inlining -----------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-04-07 20:49:59 +00:00
|
|
|
// This file implements inlining of functions.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// Specifically, this:
|
2002-04-07 20:49:59 +00:00
|
|
|
// * Exports functionality to inline any function call
|
|
|
|
// * Inlines functions that consist of a single basic block
|
|
|
|
// * Is able to inline ANY function call
|
|
|
|
// . Has a smart heuristic for when to inline a function
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// Notice that:
|
2002-01-21 23:17:48 +00:00
|
|
|
// * This pass opens up a lot of opportunities for constant propogation. It
|
|
|
|
// is a good idea to to run a constant propogation pass, then a DCE pass
|
2001-06-06 20:29:01 +00:00
|
|
|
// sometime after running this pass.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-01-21 23:17:48 +00:00
|
|
|
#include "llvm/Transforms/MethodInlining.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/Module.h"
|
2002-04-07 20:49:59 +00:00
|
|
|
#include "llvm/Function.h"
|
2002-02-26 21:46:54 +00:00
|
|
|
#include "llvm/Pass.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/iTerminators.h"
|
2001-12-03 18:02:31 +00:00
|
|
|
#include "llvm/iPHINode.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include "llvm/iOther.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <map>
|
2002-01-20 22:54:45 +00:00
|
|
|
#include <iostream>
|
|
|
|
using std::cerr;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
#include "llvm/Assembly/Writer.h"
|
|
|
|
|
|
|
|
// RemapInstruction - Convert the instruction operands from referencing the
|
|
|
|
// current values into those specified by ValueMap.
|
|
|
|
//
|
|
|
|
static inline void RemapInstruction(Instruction *I,
|
2002-01-20 22:54:45 +00:00
|
|
|
std::map<const Value *, Value*> &ValueMap) {
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-07-07 08:36:50 +00:00
|
|
|
for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
|
|
|
|
const Value *Op = I->getOperand(op);
|
2001-06-06 20:29:01 +00:00
|
|
|
Value *V = ValueMap[Op];
|
2001-12-03 22:26:30 +00:00
|
|
|
if (!V && (isa<GlobalValue>(Op) || isa<Constant>(Op)))
|
2001-10-31 02:27:26 +00:00
|
|
|
continue; // Globals and constants don't get relocated
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
if (!V) {
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
|
|
|
|
cerr << "\nInst = " << I;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
assert(V && "Referenced value not in value map!");
|
|
|
|
I->setOperand(op, V);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// InlineMethod - This function forcibly inlines the called function into the
|
2001-06-06 20:29:01 +00:00
|
|
|
// basic block of the caller. This returns false if it is not possible to
|
|
|
|
// inline this call. The program is still in a well defined state if this
|
|
|
|
// occurs though.
|
|
|
|
//
|
|
|
|
// Note that this only does one level of inlining. For example, if the
|
|
|
|
// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
|
|
|
|
// exists in the instruction stream. Similiarly this will inline a recursive
|
2002-04-07 20:49:59 +00:00
|
|
|
// function by one level.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-01-21 23:17:48 +00:00
|
|
|
bool InlineMethod(BasicBlock::iterator CIIt) {
|
2001-10-02 03:41:24 +00:00
|
|
|
assert(isa<CallInst>(*CIIt) && "InlineMethod only works on CallInst nodes!");
|
2001-06-06 20:29:01 +00:00
|
|
|
assert((*CIIt)->getParent() && "Instruction not embedded in basic block!");
|
2002-04-07 20:49:59 +00:00
|
|
|
assert((*CIIt)->getParent()->getParent() && "Instruction not in function!");
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-10-02 03:41:24 +00:00
|
|
|
CallInst *CI = cast<CallInst>(*CIIt);
|
2002-03-29 17:08:29 +00:00
|
|
|
const Function *CalledMeth = CI->getCalledFunction();
|
2002-04-07 20:49:59 +00:00
|
|
|
if (CalledMeth == 0 || // Can't inline external function or indirect call!
|
2001-10-13 06:52:31 +00:00
|
|
|
CalledMeth->isExternal()) return false;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
//cerr << "Inlining " << CalledMeth->getName() << " into "
|
2002-01-20 22:54:45 +00:00
|
|
|
// << CurrentMeth->getName() << "\n";
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
BasicBlock *OrigBB = CI->getParent();
|
|
|
|
|
|
|
|
// Call splitBasicBlock - The original basic block now ends at the instruction
|
|
|
|
// immediately before the call. The original basic block now ends with an
|
|
|
|
// unconditional branch to NewBB, and NewBB starts with the call instruction.
|
|
|
|
//
|
|
|
|
BasicBlock *NewBB = OrigBB->splitBasicBlock(CIIt);
|
2002-02-25 00:31:02 +00:00
|
|
|
NewBB->setName("InlinedFunctionReturnNode");
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Remove (unlink) the CallInst from the start of the new basic block.
|
|
|
|
NewBB->getInstList().remove(CI);
|
|
|
|
|
|
|
|
// If we have a return value generated by this call, convert it into a PHI
|
|
|
|
// node that gets values from each of the old RET instructions in the original
|
2002-04-07 20:49:59 +00:00
|
|
|
// function.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
PHINode *PHI = 0;
|
|
|
|
if (CalledMeth->getReturnType() != Type::VoidTy) {
|
|
|
|
PHI = new PHINode(CalledMeth->getReturnType(), CI->getName());
|
|
|
|
|
|
|
|
// The PHI node should go at the front of the new basic block to merge all
|
|
|
|
// possible incoming values.
|
|
|
|
//
|
|
|
|
NewBB->getInstList().push_front(PHI);
|
|
|
|
|
|
|
|
// Anything that used the result of the function call should now use the PHI
|
|
|
|
// node as their operand.
|
|
|
|
//
|
|
|
|
CI->replaceAllUsesWith(PHI);
|
|
|
|
}
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// Keep a mapping between the original function's values and the new
|
|
|
|
// duplicated code's values. This includes all of: Function arguments,
|
|
|
|
// instruction values, constant pool entries, and basic blocks.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-01-20 22:54:45 +00:00
|
|
|
std::map<const Value *, Value*> ValueMap;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// Add the function arguments to the mapping: (start counting at 1 to skip the
|
|
|
|
// function reference itself)
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-04-07 20:49:59 +00:00
|
|
|
Function::ArgumentListType::const_iterator PTI =
|
2001-06-06 20:29:01 +00:00
|
|
|
CalledMeth->getArgumentList().begin();
|
2001-07-07 08:36:50 +00:00
|
|
|
for (unsigned a = 1, E = CI->getNumOperands(); a != E; ++a, ++PTI)
|
|
|
|
ValueMap[*PTI] = CI->getOperand(a);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
ValueMap[NewBB] = NewBB; // Returns get converted to reference NewBB
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// Loop over all of the basic blocks in the function, inlining them as
|
|
|
|
// appropriate. Keep track of the first basic block of the function...
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-04-07 20:49:59 +00:00
|
|
|
for (Function::const_iterator BI = CalledMeth->begin();
|
2001-06-27 23:41:11 +00:00
|
|
|
BI != CalledMeth->end(); ++BI) {
|
2001-06-06 20:29:01 +00:00
|
|
|
const BasicBlock *BB = *BI;
|
|
|
|
assert(BB->getTerminator() && "BasicBlock doesn't have terminator!?!?");
|
|
|
|
|
|
|
|
// Create a new basic block to copy instructions into!
|
|
|
|
BasicBlock *IBB = new BasicBlock("", NewBB->getParent());
|
2002-02-25 00:31:02 +00:00
|
|
|
if (BB->hasName()) IBB->setName(BB->getName()+".i"); // .i = inlined once
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-10-14 23:29:30 +00:00
|
|
|
ValueMap[BB] = IBB; // Add basic block mapping.
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Make sure to capture the mapping that a return will use...
|
|
|
|
// TODO: This assumes that the RET is returning a value computed in the same
|
|
|
|
// basic block as the return was issued from!
|
|
|
|
//
|
|
|
|
const TerminatorInst *TI = BB->getTerminator();
|
|
|
|
|
|
|
|
// Loop over all instructions copying them over...
|
|
|
|
Instruction *NewInst;
|
2001-06-27 23:41:11 +00:00
|
|
|
for (BasicBlock::const_iterator II = BB->begin();
|
|
|
|
II != (BB->end()-1); ++II) {
|
2001-06-06 20:29:01 +00:00
|
|
|
IBB->getInstList().push_back((NewInst = (*II)->clone()));
|
|
|
|
ValueMap[*II] = NewInst; // Add instruction map to value.
|
2002-02-25 00:31:02 +00:00
|
|
|
if ((*II)->hasName())
|
|
|
|
NewInst->setName((*II)->getName()+".i"); // .i = inlined once
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy over the terminator now...
|
2001-07-07 19:24:15 +00:00
|
|
|
switch (TI->getOpcode()) {
|
2001-06-06 20:29:01 +00:00
|
|
|
case Instruction::Ret: {
|
2001-10-02 03:41:24 +00:00
|
|
|
const ReturnInst *RI = cast<const ReturnInst>(TI);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
if (PHI) { // The PHI node should include this value!
|
|
|
|
assert(RI->getReturnValue() && "Ret should have value!");
|
|
|
|
assert(RI->getReturnValue()->getType() == PHI->getType() &&
|
2002-04-07 20:49:59 +00:00
|
|
|
"Ret value not consistent in function!");
|
2001-10-02 03:41:24 +00:00
|
|
|
PHI->addIncoming((Value*)RI->getReturnValue(), cast<BasicBlock>(BB));
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add a branch to the code that was after the original Call.
|
|
|
|
IBB->getInstList().push_back(new BranchInst(NewBB));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Instruction::Br:
|
|
|
|
IBB->getInstList().push_back(TI->clone());
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2002-04-07 20:49:59 +00:00
|
|
|
cerr << "FunctionInlining: Don't know how to handle terminator: " << TI;
|
2001-06-06 20:29:01 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// Loop over all of the instructions in the function, fixing up operand
|
2001-06-06 20:29:01 +00:00
|
|
|
// references as we go. This uses ValueMap to do all the hard work.
|
|
|
|
//
|
2002-04-07 20:49:59 +00:00
|
|
|
for (Function::const_iterator BI = CalledMeth->begin();
|
2001-06-27 23:41:11 +00:00
|
|
|
BI != CalledMeth->end(); ++BI) {
|
2001-06-06 20:29:01 +00:00
|
|
|
const BasicBlock *BB = *BI;
|
|
|
|
BasicBlock *NBB = (BasicBlock*)ValueMap[BB];
|
|
|
|
|
|
|
|
// Loop over all instructions, fixing each one as we find it...
|
|
|
|
//
|
2001-06-27 23:41:11 +00:00
|
|
|
for (BasicBlock::iterator II = NBB->begin(); II != NBB->end(); II++)
|
2001-06-06 20:29:01 +00:00
|
|
|
RemapInstruction(*II, ValueMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PHI) RemapInstruction(PHI, ValueMap); // Fix the PHI node also...
|
|
|
|
|
|
|
|
// Change the branch that used to go to NewBB to branch to the first basic
|
2002-04-07 20:49:59 +00:00
|
|
|
// block of the inlined function.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
TerminatorInst *Br = OrigBB->getTerminator();
|
2001-07-07 19:24:15 +00:00
|
|
|
assert(Br && Br->getOpcode() == Instruction::Br &&
|
2001-06-06 20:29:01 +00:00
|
|
|
"splitBasicBlock broken!");
|
2001-06-27 23:41:11 +00:00
|
|
|
Br->setOperand(0, ValueMap[CalledMeth->front()]);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Since we are now done with the CallInst, we can finally delete it.
|
|
|
|
delete CI;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-01-21 23:17:48 +00:00
|
|
|
bool InlineMethod(CallInst *CI) {
|
2001-06-06 20:29:01 +00:00
|
|
|
assert(CI->getParent() && "CallInst not embeded in BasicBlock!");
|
|
|
|
BasicBlock *PBB = CI->getParent();
|
|
|
|
|
2001-06-27 23:41:11 +00:00
|
|
|
BasicBlock::iterator CallIt = find(PBB->begin(), PBB->end(), CI);
|
|
|
|
|
|
|
|
assert(CallIt != PBB->end() &&
|
2001-06-06 20:29:01 +00:00
|
|
|
"CallInst has parent that doesn't contain CallInst?!?");
|
|
|
|
return InlineMethod(CallIt);
|
|
|
|
}
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
static inline bool ShouldInlineFunction(const CallInst *CI, const Function *F) {
|
2001-06-06 20:29:01 +00:00
|
|
|
assert(CI->getParent() && CI->getParent()->getParent() &&
|
|
|
|
"Call not embedded into a method!");
|
|
|
|
|
|
|
|
// Don't inline a recursive call.
|
2002-04-07 20:49:59 +00:00
|
|
|
if (CI->getParent()->getParent() == F) return false;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Don't inline something too big. This is a really crappy heuristic
|
2002-04-07 20:49:59 +00:00
|
|
|
if (F->size() > 3) return false;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Don't inline into something too big. This is a **really** crappy heuristic
|
2001-06-27 23:41:11 +00:00
|
|
|
if (CI->getParent()->getParent()->size() > 10) return false;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Go ahead and try just about anything else.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
static inline bool DoFunctionInlining(BasicBlock *BB) {
|
2001-06-27 23:41:11 +00:00
|
|
|
for (BasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
|
2001-10-02 03:41:24 +00:00
|
|
|
if (CallInst *CI = dyn_cast<CallInst>(*I)) {
|
2002-04-07 20:49:59 +00:00
|
|
|
// Check to see if we should inline this function
|
|
|
|
Function *F = CI->getCalledFunction();
|
|
|
|
if (F && ShouldInlineFunction(CI, F))
|
2001-06-06 20:29:01 +00:00
|
|
|
return InlineMethod(I);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// doFunctionInlining - Use a heuristic based approach to inline functions that
|
2002-02-26 21:46:54 +00:00
|
|
|
// seem to look good.
|
|
|
|
//
|
2002-04-07 20:49:59 +00:00
|
|
|
static bool doFunctionInlining(Function *F) {
|
2001-06-06 20:29:01 +00:00
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
// Loop through now and inline instructions a basic block at a time...
|
2002-04-07 20:49:59 +00:00
|
|
|
for (Function::iterator I = F->begin(); I != F->end(); )
|
|
|
|
if (DoFunctionInlining(*I)) {
|
2001-06-06 20:29:01 +00:00
|
|
|
Changed = true;
|
|
|
|
// Iterator is now invalidated by new basic blocks inserted
|
2002-04-07 20:49:59 +00:00
|
|
|
I = F->begin();
|
2001-06-06 20:29:01 +00:00
|
|
|
} else {
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
2002-02-26 21:46:54 +00:00
|
|
|
|
|
|
|
namespace {
|
2002-04-07 20:49:59 +00:00
|
|
|
struct FunctionInlining : public MethodPass {
|
|
|
|
virtual bool runOnMethod(Function *F) {
|
|
|
|
return doFunctionInlining(F);
|
2002-02-26 21:46:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
Pass *createMethodInliningPass() { return new FunctionInlining(); }
|