blob: 3c7fac6cc1047f582c9db673a16f8b52098da3e7 [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 InlineCostAnalyzer CA;
36 public:
Andrew Trick5c655412011-10-01 01:27:56 +000037 // Use extremely low threshold.
Chad Rosierdfba3ad2012-02-25 03:07:57 +000038 AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) {
Chad Rosierfa086f12012-02-25 02:56:01 +000039 initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry());
40 }
41 AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000,
42 InsertLifetime) {
Owen Anderson081c34b2010-10-19 17:21:58 +000043 initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry());
44 }
Devang Patel22ec1992008-09-03 18:50:53 +000045 static char ID; // Pass identification, replacement for typeid
Daniel Dunbarc5e1ec42008-10-30 19:26:59 +000046 InlineCost getInlineCost(CallSite CS) {
Chandler Carruthf91f5af2012-03-16 06:10:13 +000047 Function *Callee = CS.getCalledFunction();
48 // We assume indirect calls aren't calling an always-inline function.
49 if (!Callee) return InlineCost::getNever();
50
51 // We can't inline calls to external functions.
52 // FIXME: We shouldn't even get here.
53 if (Callee->isDeclaration()) return InlineCost::getNever();
54
55 // Return never for anything not marked as always inline.
56 if (!Callee->hasFnAttr(Attribute::AlwaysInline))
57 return InlineCost::getNever();
58
59 // We still have to check the inline cost in case there are reasons to
60 // not inline which trump the always-inline attribute such as setjmp and
61 // indirectbr.
62 return CA.getInlineCost(CS);
Devang Patel22ec1992008-09-03 18:50:53 +000063 }
64 float getInlineFudgeFactor(CallSite CS) {
65 return CA.getInlineFudgeFactor(CS);
66 }
Dale Johannesene3455662009-01-09 01:30:11 +000067 void resetCachedCostInfo(Function *Caller) {
Jakob Stoklund Olesenf7477472010-03-09 23:02:17 +000068 CA.resetCachedCostInfo(Caller);
69 }
70 void growCachedCostInfo(Function* Caller, Function* Callee) {
71 CA.growCachedCostInfo(Caller, Callee);
Dale Johannesene3455662009-01-09 01:30:11 +000072 }
Andrew Trick5c655412011-10-01 01:27:56 +000073 virtual bool doFinalization(CallGraph &CG) {
Chandler Carruthf91f5af2012-03-16 06:10:13 +000074 return removeDeadFunctions(CG, /*AlwaysInlineOnly=*/true);
Devang Patelb7c6bf12008-11-05 01:39:16 +000075 }
Devang Patel22ec1992008-09-03 18:50:53 +000076 virtual bool doInitialization(CallGraph &CG);
Nick Lewycky54b78dc2010-05-15 04:26:25 +000077 void releaseMemory() {
78 CA.clear();
79 }
Devang Patel22ec1992008-09-03 18:50:53 +000080 };
81}
82
83char AlwaysInliner::ID = 0;
Owen Anderson081c34b2010-10-19 17:21:58 +000084INITIALIZE_PASS_BEGIN(AlwaysInliner, "always-inline",
85 "Inliner for always_inline functions", false, false)
86INITIALIZE_AG_DEPENDENCY(CallGraph)
87INITIALIZE_PASS_END(AlwaysInliner, "always-inline",
Owen Andersonce665bd2010-10-07 22:25:06 +000088 "Inliner for always_inline functions", false, false)
Devang Patel22ec1992008-09-03 18:50:53 +000089
90Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); }
91
Chad Rosierfa086f12012-02-25 02:56:01 +000092Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) {
93 return new AlwaysInliner(InsertLifetime);
94}
95
Andrew Trick5c655412011-10-01 01:27:56 +000096// doInitialization - Initializes the vector of functions that have not
Devang Patel22ec1992008-09-03 18:50:53 +000097// been annotated with the "always inline" attribute.
98bool AlwaysInliner::doInitialization(CallGraph &CG) {
Andrew Trickb2ab2fa2011-10-01 01:39:05 +000099 CA.setTargetData(getAnalysisIfAvailable<TargetData>());
Devang Patel22ec1992008-09-03 18:50:53 +0000100 return false;
101}