blob: 749a3fa23de1d2d756a16f55292edfad0678c99d [file] [log] [blame]
Devang Patel50c66cd2008-09-03 19:52:17 +00001//===- InlineAlways.cpp - Code to inline always_inline functions ----------===//
Devang Patel924d9082008-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 Patel50c66cd2008-09-03 19:52:17 +000010// This file implements a custom inliner that handles only functions that
Devang Patela563d242008-09-03 20:25:40 +000011// are marked as "always inline".
Devang Patel924d9082008-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 Gohman4552e3c2009-10-13 18:30:07 +000022#include "llvm/Analysis/InlineCost.h"
Devang Patel924d9082008-09-03 18:50:53 +000023#include "llvm/Support/CallSite.h"
Devang Patel924d9082008-09-03 18:50:53 +000024#include "llvm/Transforms/IPO.h"
25#include "llvm/Transforms/IPO/InlinerPass.h"
Andrew Trickf7656012011-10-01 01:39:05 +000026#include "llvm/Target/TargetData.h"
Devang Patel924d9082008-09-03 18:50:53 +000027#include "llvm/ADT/SmallPtrSet.h"
28
29using namespace llvm;
30
31namespace {
32
33 // AlwaysInliner only inlines functions that are mark as "always inline".
Nick Lewycky02d5f772009-10-25 06:33:48 +000034 class AlwaysInliner : public Inliner {
Devang Patel924d9082008-09-03 18:50:53 +000035 // Functions that are never inlined
Andrew Trickcaa500b2011-10-01 01:27:56 +000036 SmallPtrSet<const Function*, 16> NeverInline;
Devang Patel924d9082008-09-03 18:50:53 +000037 InlineCostAnalyzer CA;
38 public:
Andrew Trickcaa500b2011-10-01 01:27:56 +000039 // Use extremely low threshold.
Chad Rosier50e0b812012-02-25 03:07:57 +000040 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) {
Chad Rosier07d37bc2012-02-25 02:56:01 +000041 initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry());
42 }
43 AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000,
44 InsertLifetime) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000045 initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry());
46 }
Devang Patel924d9082008-09-03 18:50:53 +000047 static char ID; // Pass identification, replacement for typeid
Daniel Dunbar3933e662008-10-30 19:26:59 +000048 InlineCost getInlineCost(CallSite CS) {
Devang Patel924d9082008-09-03 18:50:53 +000049 return CA.getInlineCost(CS, NeverInline);
50 }
51 float getInlineFudgeFactor(CallSite CS) {
52 return CA.getInlineFudgeFactor(CS);
53 }
Dale Johannesen4755d9d2009-01-09 01:30:11 +000054 void resetCachedCostInfo(Function *Caller) {
Jakob Stoklund Olesenb495cad2010-03-09 23:02:17 +000055 CA.resetCachedCostInfo(Caller);
56 }
57 void growCachedCostInfo(Function* Caller, Function* Callee) {
58 CA.growCachedCostInfo(Caller, Callee);
Dale Johannesen4755d9d2009-01-09 01:30:11 +000059 }
Andrew Trickcaa500b2011-10-01 01:27:56 +000060 virtual bool doFinalization(CallGraph &CG) {
61 return removeDeadFunctions(CG, &NeverInline);
Devang Patelf0ef3572008-11-05 01:39:16 +000062 }
Devang Patel924d9082008-09-03 18:50:53 +000063 virtual bool doInitialization(CallGraph &CG);
Nick Lewyckyb35818e2010-05-15 04:26:25 +000064 void releaseMemory() {
65 CA.clear();
66 }
Devang Patel924d9082008-09-03 18:50:53 +000067 };
68}
69
70char AlwaysInliner::ID = 0;
Owen Anderson6c18d1a2010-10-19 17:21:58 +000071INITIALIZE_PASS_BEGIN(AlwaysInliner, "always-inline",
72 "Inliner for always_inline functions", false, false)
73INITIALIZE_AG_DEPENDENCY(CallGraph)
74INITIALIZE_PASS_END(AlwaysInliner, "always-inline",
Owen Andersondf7a4f22010-10-07 22:25:06 +000075 "Inliner for always_inline functions", false, false)
Devang Patel924d9082008-09-03 18:50:53 +000076
77Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); }
78
Chad Rosier07d37bc2012-02-25 02:56:01 +000079Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) {
80 return new AlwaysInliner(InsertLifetime);
81}
82
Andrew Trickcaa500b2011-10-01 01:27:56 +000083// doInitialization - Initializes the vector of functions that have not
Devang Patel924d9082008-09-03 18:50:53 +000084// been annotated with the "always inline" attribute.
85bool AlwaysInliner::doInitialization(CallGraph &CG) {
Andrew Trickf7656012011-10-01 01:39:05 +000086 CA.setTargetData(getAnalysisIfAvailable<TargetData>());
87
Devang Patel924d9082008-09-03 18:50:53 +000088 Module &M = CG.getModule();
Andrew Trickcaa500b2011-10-01 01:27:56 +000089
Chad Rosiere48e5d22012-02-25 01:10:59 +000090 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Devang Patel9eb525d2008-09-26 23:51:19 +000091 if (!I->isDeclaration() && !I->hasFnAttr(Attribute::AlwaysInline))
Devang Patel924d9082008-09-03 18:50:53 +000092 NeverInline.insert(I);
93
94 return false;
95}