Devang Patel | 3fb6837 | 2008-09-03 19:52:17 +0000 | [diff] [blame] | 1 | //===- InlineAlways.cpp - Code to inline always_inline functions ----------===// |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 2 | // |
| 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 Patel | 3fb6837 | 2008-09-03 19:52:17 +0000 | [diff] [blame] | 10 | // This file implements a custom inliner that handles only functions that |
Devang Patel | 7946e7b | 2008-09-03 20:25:40 +0000 | [diff] [blame] | 11 | // are marked as "always inline". |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "inline" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/Transforms/IPO.h" |
| 17 | #include "llvm/ADT/SmallPtrSet.h" |
| 18 | #include "llvm/Analysis/CallGraph.h" |
| 19 | #include "llvm/Analysis/InlineCost.h" |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 20 | #include "llvm/CallingConv.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/DataLayout.h" |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 22 | #include "llvm/Instructions.h" |
| 23 | #include "llvm/IntrinsicInst.h" |
| 24 | #include "llvm/Module.h" |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 25 | #include "llvm/Support/CallSite.h" |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 26 | #include "llvm/Transforms/IPO/InlinerPass.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/Type.h" |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 28 | |
| 29 | using namespace llvm; |
| 30 | |
| 31 | namespace { |
| 32 | |
| 33 | // AlwaysInliner only inlines functions that are mark as "always inline". |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 34 | class AlwaysInliner : public Inliner { |
Bob Wilson | 28f872f | 2012-11-19 07:04:35 +0000 | [diff] [blame] | 35 | InlineCostAnalyzer CA; |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 36 | public: |
Andrew Trick | 5c65541 | 2011-10-01 01:27:56 +0000 | [diff] [blame] | 37 | // Use extremely low threshold. |
Chad Rosier | dfba3ad | 2012-02-25 03:07:57 +0000 | [diff] [blame] | 38 | AlwaysInliner() : Inliner(ID, -2000000000, /*InsertLifetime*/true) { |
Chad Rosier | fa086f1 | 2012-02-25 02:56:01 +0000 | [diff] [blame] | 39 | initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry()); |
| 40 | } |
| 41 | AlwaysInliner(bool InsertLifetime) : Inliner(ID, -2000000000, |
| 42 | InsertLifetime) { |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 43 | initializeAlwaysInlinerPass(*PassRegistry::getPassRegistry()); |
| 44 | } |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 45 | static char ID; // Pass identification, replacement for typeid |
Chandler Carruth | b594a84 | 2012-03-31 13:17:18 +0000 | [diff] [blame] | 46 | virtual InlineCost getInlineCost(CallSite CS); |
Matt Beaumont-Gay | ee72115 | 2012-12-04 05:41:27 +0000 | [diff] [blame^] | 47 | |
| 48 | using llvm::Pass::doInitialization; |
| 49 | using llvm::Pass::doFinalization; |
| 50 | |
Andrew Trick | 5c65541 | 2011-10-01 01:27:56 +0000 | [diff] [blame] | 51 | virtual bool doFinalization(CallGraph &CG) { |
Chandler Carruth | f91f5af | 2012-03-16 06:10:13 +0000 | [diff] [blame] | 52 | return removeDeadFunctions(CG, /*AlwaysInlineOnly=*/true); |
Devang Patel | b7c6bf1 | 2008-11-05 01:39:16 +0000 | [diff] [blame] | 53 | } |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 54 | virtual bool doInitialization(CallGraph &CG); |
| 55 | }; |
| 56 | } |
| 57 | |
| 58 | char AlwaysInliner::ID = 0; |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 59 | INITIALIZE_PASS_BEGIN(AlwaysInliner, "always-inline", |
| 60 | "Inliner for always_inline functions", false, false) |
| 61 | INITIALIZE_AG_DEPENDENCY(CallGraph) |
| 62 | INITIALIZE_PASS_END(AlwaysInliner, "always-inline", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 63 | "Inliner for always_inline functions", false, false) |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 64 | |
| 65 | Pass *llvm::createAlwaysInlinerPass() { return new AlwaysInliner(); } |
| 66 | |
Chad Rosier | fa086f1 | 2012-02-25 02:56:01 +0000 | [diff] [blame] | 67 | Pass *llvm::createAlwaysInlinerPass(bool InsertLifetime) { |
| 68 | return new AlwaysInliner(InsertLifetime); |
| 69 | } |
| 70 | |
Chandler Carruth | b594a84 | 2012-03-31 13:17:18 +0000 | [diff] [blame] | 71 | /// \brief Get the inline cost for the always-inliner. |
| 72 | /// |
| 73 | /// The always inliner *only* handles functions which are marked with the |
| 74 | /// attribute to force inlining. As such, it is dramatically simpler and avoids |
| 75 | /// using the powerful (but expensive) inline cost analysis. Instead it uses |
| 76 | /// a very simple and boring direct walk of the instructions looking for |
| 77 | /// impossible-to-inline constructs. |
| 78 | /// |
| 79 | /// Note, it would be possible to go to some lengths to cache the information |
| 80 | /// computed here, but as we only expect to do this for relatively few and |
| 81 | /// small functions which have the explicit attribute to force inlining, it is |
| 82 | /// likely not worth it in practice. |
| 83 | InlineCost AlwaysInliner::getInlineCost(CallSite CS) { |
| 84 | Function *Callee = CS.getCalledFunction(); |
Chandler Carruth | b594a84 | 2012-03-31 13:17:18 +0000 | [diff] [blame] | 85 | |
Bob Wilson | 28f872f | 2012-11-19 07:04:35 +0000 | [diff] [blame] | 86 | // Only inline direct calls to functions with always-inline attributes |
| 87 | // that are viable for inlining. FIXME: We shouldn't even get here for |
| 88 | // declarations. |
| 89 | if (Callee && !Callee->isDeclaration() && |
| 90 | Callee->getFnAttributes().hasAttribute(Attributes::AlwaysInline) && |
| 91 | CA.isInlineViable(*Callee)) |
| 92 | return InlineCost::getAlways(); |
Chandler Carruth | b594a84 | 2012-03-31 13:17:18 +0000 | [diff] [blame] | 93 | |
Bob Wilson | 28f872f | 2012-11-19 07:04:35 +0000 | [diff] [blame] | 94 | return InlineCost::getNever(); |
Chandler Carruth | b594a84 | 2012-03-31 13:17:18 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Andrew Trick | 5c65541 | 2011-10-01 01:27:56 +0000 | [diff] [blame] | 97 | // doInitialization - Initializes the vector of functions that have not |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 98 | // been annotated with the "always inline" attribute. |
| 99 | bool AlwaysInliner::doInitialization(CallGraph &CG) { |
Bob Wilson | 28f872f | 2012-11-19 07:04:35 +0000 | [diff] [blame] | 100 | CA.setDataLayout(getAnalysisIfAvailable<DataLayout>()); |
Devang Patel | 22ec199 | 2008-09-03 18:50:53 +0000 | [diff] [blame] | 101 | return false; |
| 102 | } |