blob: 9031432162e07b2970e098a8f9264c6d84257a12 [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"
22#include "llvm/Support/CallSite.h"
23#include "llvm/Support/Compiler.h"
24#include "llvm/Transforms/IPO.h"
25#include "llvm/Transforms/IPO/InlinerPass.h"
26#include "llvm/Transforms/Utils/InlineCost.h"
27#include "llvm/ADT/SmallPtrSet.h"
28
29using namespace llvm;
30
31namespace {
32
33 // AlwaysInliner only inlines functions that are mark as "always inline".
34 class VISIBILITY_HIDDEN AlwaysInliner : public Inliner {
35 // Functions that are never inlined
36 SmallPtrSet<const Function*, 16> NeverInline;
37 InlineCostAnalyzer CA;
38 public:
39 // Use extremely low threshold.
40 AlwaysInliner() : Inliner(&ID, -2000000000) {}
41 static char ID; // Pass identification, replacement for typeid
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000042 InlineCost getInlineCost(CallSite CS) {
Devang Patel22ec1992008-09-03 18:50:53 +000043 return CA.getInlineCost(CS, NeverInline);
44 }
45 float getInlineFudgeFactor(CallSite CS) {
46 return CA.getInlineFudgeFactor(CS);
47 }
Devang Patelb7c6bf12008-11-05 01:39:16 +000048 virtual bool doFinalization(CallGraph &CG) {
49 return removeDeadFunctions(CG, &NeverInline);
50 }
Devang Patel22ec1992008-09-03 18:50:53 +000051 virtual bool doInitialization(CallGraph &CG);
52 };
53}
54
55char AlwaysInliner::ID = 0;
56static RegisterPass<AlwaysInliner>
Daniel Dunbarf184c662008-10-28 23:24:26 +000057X("always-inline", "Inliner for always_inline functions");
Devang Patel22ec1992008-09-03 18:50:53 +000058
59Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); }
60
61// doInitialization - Initializes the vector of functions that have not
62// been annotated with the "always inline" attribute.
63bool AlwaysInliner::doInitialization(CallGraph &CG) {
Devang Patel22ec1992008-09-03 18:50:53 +000064 Module &M = CG.getModule();
65
66 for (Module::iterator I = M.begin(), E = M.end();
67 I != E; ++I)
Devang Patel2c9c3e72008-09-26 23:51:19 +000068 if (!I->isDeclaration() && !I->hasFnAttr(Attribute::AlwaysInline))
Devang Patel22ec1992008-09-03 18:50:53 +000069 NeverInline.insert(I);
70
71 return false;
72}