blob: ffefad0eefcd46376773207775baf17521009d73 [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/Transforms/IPO.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/Analysis/CallGraph.h"
19#include "llvm/Analysis/InlineCost.h"
Devang Patel22ec1992008-09-03 18:50:53 +000020#include "llvm/CallingConv.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/DataLayout.h"
Devang Patel22ec1992008-09-03 18:50:53 +000022#include "llvm/Instructions.h"
23#include "llvm/IntrinsicInst.h"
24#include "llvm/Module.h"
Devang Patel22ec1992008-09-03 18:50:53 +000025#include "llvm/Support/CallSite.h"
Devang Patel22ec1992008-09-03 18:50:53 +000026#include "llvm/Transforms/IPO/InlinerPass.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000027#include "llvm/Type.h"
Devang Patel22ec1992008-09-03 18:50:53 +000028
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 {
Bob Wilson28f872f2012-11-19 07:04:35 +000035 InlineCostAnalyzer CA;
Devang Patel22ec1992008-09-03 18:50:53 +000036 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
Chandler Carruthb594a842012-03-31 13:17:18 +000046 virtual InlineCost getInlineCost(CallSite CS);
Andrew Trick5c655412011-10-01 01:27:56 +000047 virtual bool doFinalization(CallGraph &CG) {
Chandler Carruthf91f5af2012-03-16 06:10:13 +000048 return removeDeadFunctions(CG, /*AlwaysInlineOnly=*/true);
Devang Patelb7c6bf12008-11-05 01:39:16 +000049 }
Devang Patel22ec1992008-09-03 18:50:53 +000050 virtual bool doInitialization(CallGraph &CG);
51 };
52}
53
54char AlwaysInliner::ID = 0;
Owen Anderson081c34b2010-10-19 17:21:58 +000055INITIALIZE_PASS_BEGIN(AlwaysInliner, "always-inline",
56 "Inliner for always_inline functions", false, false)
57INITIALIZE_AG_DEPENDENCY(CallGraph)
58INITIALIZE_PASS_END(AlwaysInliner, "always-inline",
Owen Andersonce665bd2010-10-07 22:25:06 +000059 "Inliner for always_inline functions", false, false)
Devang Patel22ec1992008-09-03 18:50:53 +000060
61Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); }
62
Chad Rosierfa086f12012-02-25 02:56:01 +000063Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) {
64 return new AlwaysInliner(InsertLifetime);
65}
66
Chandler Carruthb594a842012-03-31 13:17:18 +000067/// \brief Get the inline cost for the always-inliner.
68///
69/// The always inliner *only* handles functions which are marked with the
70/// attribute to force inlining. As such, it is dramatically simpler and avoids
71/// using the powerful (but expensive) inline cost analysis. Instead it uses
72/// a very simple and boring direct walk of the instructions looking for
73/// impossible-to-inline constructs.
74///
75/// Note, it would be possible to go to some lengths to cache the information
76/// computed here, but as we only expect to do this for relatively few and
77/// small functions which have the explicit attribute to force inlining, it is
78/// likely not worth it in practice.
79InlineCost AlwaysInliner::getInlineCost(CallSite CS) {
80 Function *Callee = CS.getCalledFunction();
Chandler Carruthb594a842012-03-31 13:17:18 +000081
Bob Wilson28f872f2012-11-19 07:04:35 +000082 // Only inline direct calls to functions with always-inline attributes
83 // that are viable for inlining. FIXME: We shouldn't even get here for
84 // declarations.
85 if (Callee && !Callee->isDeclaration() &&
86 Callee->getFnAttributes().hasAttribute(Attributes::AlwaysInline) &&
87 CA.isInlineViable(*Callee))
88 return InlineCost::getAlways();
Chandler Carruthb594a842012-03-31 13:17:18 +000089
Bob Wilson28f872f2012-11-19 07:04:35 +000090 return InlineCost::getNever();
Chandler Carruthb594a842012-03-31 13:17:18 +000091}
92
Andrew Trick5c655412011-10-01 01:27:56 +000093// doInitialization - Initializes the vector of functions that have not
Devang Patel22ec1992008-09-03 18:50:53 +000094// been annotated with the "always inline" attribute.
95bool AlwaysInliner::doInitialization(CallGraph &CG) {
Bob Wilson28f872f2012-11-19 07:04:35 +000096 CA.setDataLayout(getAnalysisIfAvailable<DataLayout>());
Devang Patel22ec1992008-09-03 18:50:53 +000097 return false;
98}