blob: 8e312e7d918554de97dadb9205b02ac7c85b3524 [file] [log] [blame]
Devang Patel3fb68372008-09-03 19:52:17 +00001//===- InlineAlways.cpp - Code to inline always_inline functions ----------===//
Devang Patel22ec1992008-09-03 18:50:53 +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//===----------------------------------------------------------------------===//
9//
Devang Patel3fb68372008-09-03 19:52:17 +000010// This file implements a custom inliner that handles only functions that
Devang Patel7946e7b2008-09-03 20:25:40 +000011// are marked as "always inline".
Devang Patel22ec1992008-09-03 18:50:53 +000012//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "inline"
16#include "llvm/CallingConv.h"
17#include "llvm/Instructions.h"
18#include "llvm/IntrinsicInst.h"
19#include "llvm/Module.h"
20#include "llvm/Type.h"
21#include "llvm/Analysis/CallGraph.h"
Dan Gohmane4aeec02009-10-13 18:30:07 +000022#include "llvm/Analysis/InlineCost.h"
Devang Patel22ec1992008-09-03 18:50:53 +000023#include "llvm/Support/CallSite.h"
Devang Patel22ec1992008-09-03 18:50:53 +000024#include "llvm/Transforms/IPO.h"
25#include "llvm/Transforms/IPO/InlinerPass.h"
Devang Patel22ec1992008-09-03 18:50:53 +000026#include "llvm/ADT/SmallPtrSet.h"
27
28using namespace llvm;
29
30namespace {
31
32 // AlwaysInliner only inlines functions that are mark as "always inline".
Nick Lewycky6726b6d2009-10-25 06:33:48 +000033 class AlwaysInliner : public Inliner {
Devang Patel22ec1992008-09-03 18:50:53 +000034 // Functions that are never inlined
35 SmallPtrSet<const Function*, 16> NeverInline;
36 InlineCostAnalyzer CA;
37 public:
38 // Use extremely low threshold.
39 AlwaysInliner() : Inliner(&ID, -2000000000) {}
40 static char ID; // Pass identification, replacement for typeid
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000041 InlineCost getInlineCost(CallSite CS) {
Devang Patel22ec1992008-09-03 18:50:53 +000042 return CA.getInlineCost(CS, NeverInline);
43 }
44 float getInlineFudgeFactor(CallSite CS) {
45 return CA.getInlineFudgeFactor(CS);
46 }
Dale Johannesene3455662009-01-09 01:30:11 +000047 void resetCachedCostInfo(Function *Caller) {
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +000048 CA.resetCachedCostInfo(Caller);
49 }
50 void growCachedCostInfo(Function* Caller, Function* Callee) {
51 CA.growCachedCostInfo(Caller, Callee);
Dale Johannesene3455662009-01-09 01:30:11 +000052 }
Devang Patelb7c6bf12008-11-05 01:39:16 +000053 virtual bool doFinalization(CallGraph &CG) {
54 return removeDeadFunctions(CG, &NeverInline);
55 }
Devang Patel22ec1992008-09-03 18:50:53 +000056 virtual bool doInitialization(CallGraph &CG);
Nick Lewycky54b78dc2010-05-15 04:26:25 +000057 void releaseMemory() {
58 CA.clear();
59 }
Devang Patel22ec1992008-09-03 18:50:53 +000060 };
61}
62
63char AlwaysInliner::ID = 0;
64static RegisterPass<AlwaysInliner>
Daniel Dunbarf184c662008-10-28 23:24:26 +000065X("always-inline", "Inliner for always_inline functions");
Devang Patel22ec1992008-09-03 18:50:53 +000066
67Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); }
68
69// doInitialization - Initializes the vector of functions that have not
70// been annotated with the "always inline" attribute.
71bool AlwaysInliner::doInitialization(CallGraph &CG) {
Devang Patel22ec1992008-09-03 18:50:53 +000072 Module &M = CG.getModule();
73
74 for (Module::iterator I = M.begin(), E = M.end();
75 I != E; ++I)
Devang Patel2c9c3e72008-09-26 23:51:19 +000076 if (!I->isDeclaration() && !I->hasFnAttr(Attribute::AlwaysInline))
Devang Patel22ec1992008-09-03 18:50:53 +000077 NeverInline.insert(I);
78
79 return false;
80}