blob: a977027eed1eaf78637c1ff69300e5dc6d4d3f26 [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"
Andrew Trickb2ab2fa2011-10-01 01:39:05 +000026#include "llvm/Target/TargetData.h"
Devang Patel22ec1992008-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 Lewycky6726b6d2009-10-25 06:33:48 +000034 class AlwaysInliner : public Inliner {
Devang Patel22ec1992008-09-03 18:50:53 +000035 public:
Andrew Trick5c655412011-10-01 01:27:56 +000036 // Use extremely low threshold.
Chad Rosierdfba3ad2012-02-25 03:07:57 +000037 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) {
Chad Rosierfa086f12012-02-25 02:56:01 +000038 initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry());
39 }
40 AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000,
41 InsertLifetime) {
Owen Anderson081c34b2010-10-19 17:21:58 +000042 initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry());
43 }
Devang Patel22ec1992008-09-03 18:50:53 +000044 static char ID; // Pass identification, replacement for typeid
Chandler Carruthb594a842012-03-31 13:17:18 +000045 virtual InlineCost getInlineCost(CallSite CS);
Andrew Trick5c655412011-10-01 01:27:56 +000046 virtual bool doFinalization(CallGraph &CG) {
Chandler Carruthf91f5af2012-03-16 06:10:13 +000047 return removeDeadFunctions(CG, /*AlwaysInlineOnly=*/true);
Devang Patelb7c6bf12008-11-05 01:39:16 +000048 }
Devang Patel22ec1992008-09-03 18:50:53 +000049 virtual bool doInitialization(CallGraph &CG);
50 };
51}
52
53char AlwaysInliner::ID = 0;
Owen Anderson081c34b2010-10-19 17:21:58 +000054INITIALIZE_PASS_BEGIN(AlwaysInliner, "always-inline",
55 "Inliner for always_inline functions", false, false)
56INITIALIZE_AG_DEPENDENCY(CallGraph)
57INITIALIZE_PASS_END(AlwaysInliner, "always-inline",
Owen Andersonce665bd2010-10-07 22:25:06 +000058 "Inliner for always_inline functions", false, false)
Devang Patel22ec1992008-09-03 18:50:53 +000059
60Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); }
61
Chad Rosierfa086f12012-02-25 02:56:01 +000062Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) {
63 return new AlwaysInliner(InsertLifetime);
64}
65
Chandler Carruthb594a842012-03-31 13:17:18 +000066/// \brief Minimal filter to detect invalid constructs for inlining.
67static bool isInlineViable(Function &F) {
68 bool ReturnsTwice = F.hasFnAttr(Attribute::ReturnsTwice);
69 for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
70 // Disallow inlining of functions which contain an indirect branch.
71 if (isa<IndirectBrInst>(BI->getTerminator()))
72 return false;
73
74 for (BasicBlock::iterator II = BI->begin(), IE = BI->end(); II != IE;
75 ++II) {
76 CallSite CS(II);
77 if (!CS)
78 continue;
79
80 // Disallow recursive calls.
81 if (&F == CS.getCalledFunction())
82 return false;
83
84 // Disallow calls which expose returns-twice to a function not previously
85 // attributed as such.
86 if (ReturnsTwice && CS.isCall() &&
87 cast<CallInst>(CS.getInstruction())->canReturnTwice())
88 return false;
89 }
90 }
91
92 return true;
93}
94
95/// \brief Get the inline cost for the always-inliner.
96///
97/// The always inliner *only* handles functions which are marked with the
98/// attribute to force inlining. As such, it is dramatically simpler and avoids
99/// using the powerful (but expensive) inline cost analysis. Instead it uses
100/// a very simple and boring direct walk of the instructions looking for
101/// impossible-to-inline constructs.
102///
103/// Note, it would be possible to go to some lengths to cache the information
104/// computed here, but as we only expect to do this for relatively few and
105/// small functions which have the explicit attribute to force inlining, it is
106/// likely not worth it in practice.
107InlineCost AlwaysInliner::getInlineCost(CallSite CS) {
108 Function *Callee = CS.getCalledFunction();
109 // We assume indirect calls aren't calling an always-inline function.
110 if (!Callee) return InlineCost::getNever();
111
112 // We can't inline calls to external functions.
113 // FIXME: We shouldn't even get here.
114 if (Callee->isDeclaration()) return InlineCost::getNever();
115
116 // Return never for anything not marked as always inline.
117 if (!Callee->hasFnAttr(Attribute::AlwaysInline))
118 return InlineCost::getNever();
119
120 // Do some minimal analysis to preclude non-viable functions.
121 if (!isInlineViable(*Callee))
122 return InlineCost::getNever();
123
124 // Otherwise, force inlining.
125 return InlineCost::getAlways();
126}
127
Andrew Trick5c655412011-10-01 01:27:56 +0000128// doInitialization - Initializes the vector of functions that have not
Devang Patel22ec1992008-09-03 18:50:53 +0000129// been annotated with the "always inline" attribute.
130bool AlwaysInliner::doInitialization(CallGraph &CG) {
Devang Patel22ec1992008-09-03 18:50:53 +0000131 return false;
132}