2003-08-31 21:10:30 +02:00
|
|
|
//===- InlineSimple.cpp - Code to perform simple function inlining --------===//
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2003-05-29 17:11:31 +02:00
|
|
|
// This file implements bottom-up inlining of functions into callees.
|
2002-04-18 20:52:03 +02:00
|
|
|
//
|
2001-06-06 22:29:01 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-06-20 00:29:50 +02:00
|
|
|
#define DEBUG_TYPE "inline"
|
2005-05-18 06:30:33 +02:00
|
|
|
#include "llvm/CallingConv.h"
|
2003-11-21 22:46:09 +01:00
|
|
|
#include "llvm/Instructions.h"
|
2004-11-22 18:21:44 +01:00
|
|
|
#include "llvm/IntrinsicInst.h"
|
2007-06-06 23:59:26 +02:00
|
|
|
#include "llvm/Module.h"
|
2004-03-14 00:15:45 +01:00
|
|
|
#include "llvm/Type.h"
|
2007-06-06 23:59:26 +02:00
|
|
|
#include "llvm/Analysis/CallGraph.h"
|
2009-10-13 20:30:07 +02:00
|
|
|
#include "llvm/Analysis/InlineCost.h"
|
2003-08-24 08:59:28 +02:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2003-08-31 21:10:30 +02:00
|
|
|
#include "llvm/Transforms/IPO.h"
|
2007-06-20 00:29:50 +02:00
|
|
|
#include "llvm/Transforms/IPO/InlinerPass.h"
|
2007-07-27 20:34:27 +02:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2007-06-06 23:59:26 +02:00
|
|
|
|
2003-11-21 22:46:09 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2003-05-29 17:11:31 +02:00
|
|
|
namespace {
|
2003-10-06 17:52:43 +02:00
|
|
|
|
2009-10-25 07:33:48 +01:00
|
|
|
class SimpleInliner : public Inliner {
|
2007-07-27 20:34:27 +02:00
|
|
|
// Functions that are never inlined
|
|
|
|
SmallPtrSet<const Function*, 16> NeverInline;
|
2007-07-25 20:00:25 +02:00
|
|
|
InlineCostAnalyzer CA;
|
2003-10-06 17:52:43 +02:00
|
|
|
public:
|
2007-05-07 01:13:56 +02:00
|
|
|
SimpleInliner() : Inliner(&ID) {}
|
2008-01-12 07:49:13 +01:00
|
|
|
SimpleInliner(int Threshold) : Inliner(&ID, Threshold) {}
|
2007-05-06 15:37:16 +02:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2008-10-30 20:26:59 +01:00
|
|
|
InlineCost getInlineCost(CallSite CS) {
|
2007-07-25 20:00:25 +02:00
|
|
|
return CA.getInlineCost(CS, NeverInline);
|
|
|
|
}
|
2008-03-24 07:37:48 +01:00
|
|
|
float getInlineFudgeFactor(CallSite CS) {
|
|
|
|
return CA.getInlineFudgeFactor(CS);
|
|
|
|
}
|
2009-01-09 02:30:11 +01:00
|
|
|
void resetCachedCostInfo(Function *Caller) {
|
|
|
|
CA.resetCachedCostInfo(Caller);
|
|
|
|
}
|
2007-06-06 23:59:26 +02:00
|
|
|
virtual bool doInitialization(CallGraph &CG);
|
2003-05-29 17:11:31 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
char SimpleInliner::ID = 0;
|
|
|
|
static RegisterPass<SimpleInliner>
|
|
|
|
X("inline", "Function Integration/Inlining");
|
|
|
|
|
2007-01-26 01:47:38 +01:00
|
|
|
Pass *llvm::createFunctionInliningPass() { return new SimpleInliner(); }
|
2003-11-21 22:46:09 +01:00
|
|
|
|
2008-01-12 07:49:13 +01:00
|
|
|
Pass *llvm::createFunctionInliningPass(int Threshold) {
|
|
|
|
return new SimpleInliner(Threshold);
|
|
|
|
}
|
|
|
|
|
2007-06-06 23:59:26 +02:00
|
|
|
// doInitialization - Initializes the vector of functions that have been
|
|
|
|
// annotated with the noinline attribute.
|
|
|
|
bool SimpleInliner::doInitialization(CallGraph &CG) {
|
|
|
|
|
|
|
|
Module &M = CG.getModule();
|
|
|
|
|
2008-09-03 20:10:21 +02:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end();
|
|
|
|
I != E; ++I)
|
2008-09-27 01:51:19 +02:00
|
|
|
if (!I->isDeclaration() && I->hasFnAttr(Attribute::NoInline))
|
2008-09-03 20:10:21 +02:00
|
|
|
NeverInline.insert(I);
|
|
|
|
|
2007-06-06 23:59:26 +02:00
|
|
|
// Get llvm.noinline
|
|
|
|
GlobalVariable *GV = M.getNamedGlobal("llvm.noinline");
|
|
|
|
|
2007-06-07 19:12:16 +02:00
|
|
|
if (GV == 0)
|
2007-06-06 23:59:26 +02:00
|
|
|
return false;
|
|
|
|
|
2007-11-22 23:30:10 +01:00
|
|
|
// Don't crash on invalid code
|
2009-08-19 20:20:44 +02:00
|
|
|
if (!GV->hasDefinitiveInitializer())
|
2007-11-22 23:30:10 +01:00
|
|
|
return false;
|
|
|
|
|
2007-06-06 23:59:26 +02:00
|
|
|
const ConstantArray *InitList = dyn_cast<ConstantArray>(GV->getInitializer());
|
|
|
|
|
2007-06-07 19:12:16 +02:00
|
|
|
if (InitList == 0)
|
2007-06-06 23:59:26 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Iterate over each element and add to the NeverInline set
|
|
|
|
for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
|
|
|
|
|
|
|
|
// Get Source
|
|
|
|
const Constant *Elt = InitList->getOperand(i);
|
|
|
|
|
|
|
|
if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(Elt))
|
|
|
|
if (CE->getOpcode() == Instruction::BitCast)
|
|
|
|
Elt = CE->getOperand(0);
|
|
|
|
|
|
|
|
// Insert into set of functions to never inline
|
2007-06-07 19:12:16 +02:00
|
|
|
if (const Function *F = dyn_cast<Function>(Elt))
|
|
|
|
NeverInline.insert(F);
|
2007-06-06 23:59:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2007-07-25 20:00:25 +02:00
|
|
|
|