mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169214 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===- InlineSimple.cpp - Code to perform simple function inlining --------===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file implements bottom-up inlining of functions into callees.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #define DEBUG_TYPE "inline"
 | |
| #include "llvm/Transforms/IPO.h"
 | |
| #include "llvm/Analysis/CallGraph.h"
 | |
| #include "llvm/Analysis/InlineCost.h"
 | |
| #include "llvm/CallingConv.h"
 | |
| #include "llvm/DataLayout.h"
 | |
| #include "llvm/Instructions.h"
 | |
| #include "llvm/IntrinsicInst.h"
 | |
| #include "llvm/Module.h"
 | |
| #include "llvm/Support/CallSite.h"
 | |
| #include "llvm/Transforms/IPO/InlinerPass.h"
 | |
| #include "llvm/Type.h"
 | |
| 
 | |
| using namespace llvm;
 | |
| 
 | |
| namespace {
 | |
| 
 | |
|   class SimpleInliner : public Inliner {
 | |
|     InlineCostAnalyzer CA;
 | |
|   public:
 | |
|     SimpleInliner() : Inliner(ID) {
 | |
|       initializeSimpleInlinerPass(*PassRegistry::getPassRegistry());
 | |
|     }
 | |
|     SimpleInliner(int Threshold) : Inliner(ID, Threshold,
 | |
|                                            /*InsertLifetime*/true) {
 | |
|       initializeSimpleInlinerPass(*PassRegistry::getPassRegistry());
 | |
|     }
 | |
|     static char ID; // Pass identification, replacement for typeid
 | |
|     InlineCost getInlineCost(CallSite CS) {
 | |
|       return CA.getInlineCost(CS, getInlineThreshold(CS));
 | |
|     }
 | |
|     using llvm::Pass::doInitialization;
 | |
|     virtual bool doInitialization(CallGraph &CG);
 | |
|   };
 | |
| }
 | |
| 
 | |
| char SimpleInliner::ID = 0;
 | |
| INITIALIZE_PASS_BEGIN(SimpleInliner, "inline",
 | |
|                 "Function Integration/Inlining", false, false)
 | |
| INITIALIZE_AG_DEPENDENCY(CallGraph)
 | |
| INITIALIZE_PASS_END(SimpleInliner, "inline",
 | |
|                 "Function Integration/Inlining", false, false)
 | |
| 
 | |
| Pass *llvm::createFunctionInliningPass() { return new SimpleInliner(); }
 | |
| 
 | |
| Pass *llvm::createFunctionInliningPass(int Threshold) {
 | |
|   return new SimpleInliner(Threshold);
 | |
| }
 | |
| 
 | |
| // doInitialization - Initializes the vector of functions that have been
 | |
| // annotated with the noinline attribute.
 | |
| bool SimpleInliner::doInitialization(CallGraph &CG) {
 | |
|   CA.setDataLayout(getAnalysisIfAvailable<DataLayout>());
 | |
|   return false;
 | |
| }
 | |
| 
 |