mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-29 08:16:51 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115933 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			120 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- Scalar.cpp --------------------------------------------------------===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file implements the common infrastructure (including C bindings) for 
 | |
| // libLLVMIPO.a, which implements several transformations over the LLVM 
 | |
| // intermediate representation.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "llvm-c/Transforms/IPO.h"
 | |
| #include "llvm/InitializePasses.h"
 | |
| #include "llvm/PassManager.h"
 | |
| #include "llvm/Transforms/IPO.h"
 | |
| 
 | |
| using namespace llvm;
 | |
| 
 | |
| void llvm::initializeIPO(PassRegistry &Registry) {
 | |
|   initializeArgPromotionPass(Registry);
 | |
|   initializeConstantMergePass(Registry);
 | |
|   initializeDAEPass(Registry);
 | |
|   initializeDAHPass(Registry);
 | |
|   initializeDTEPass(Registry);
 | |
|   initializeFunctionAttrsPass(Registry);
 | |
|   initializeGlobalDCEPass(Registry);
 | |
|   initializeGlobalOptPass(Registry);
 | |
|   initializeIPCPPass(Registry);
 | |
|   initializeAlwaysInlinerPass(Registry);
 | |
|   initializeSimpleInlinerPass(Registry);
 | |
|   initializeInternalizePassPass(Registry);
 | |
|   initializeLoopExtractorPass(Registry);
 | |
|   initializeBlockExtractorPassPass(Registry);
 | |
|   initializeSingleLoopExtractorPass(Registry);
 | |
|   initializeLowerSetJmpPass(Registry);
 | |
|   initializeMergeFunctionsPass(Registry);
 | |
|   initializePartialInlinerPass(Registry);
 | |
|   initializePartSpecPass(Registry);
 | |
|   initializePruneEHPass(Registry);
 | |
|   initializeStripDeadPrototypesPassPass(Registry);
 | |
|   initializeStripSymbolsPass(Registry);
 | |
|   initializeStripDebugDeclarePass(Registry);
 | |
|   initializeStripDeadDebugInfoPass(Registry);
 | |
|   initializeStripNonDebugSymbolsPass(Registry);
 | |
|   initializeSRETPromotionPass(Registry);
 | |
| }
 | |
| 
 | |
| void LLVMInitializeIPO(LLVMPassRegistryRef R) {
 | |
|   initializeIPO(*unwrap(R));
 | |
| }
 | |
| 
 | |
| void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createArgumentPromotionPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddConstantMergePass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createConstantMergePass());
 | |
| }
 | |
| 
 | |
| void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createDeadArgEliminationPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddDeadTypeEliminationPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createDeadTypeEliminationPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createFunctionAttrsPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createFunctionInliningPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createGlobalDCEPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createGlobalOptimizerPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createIPConstantPropagationPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddLowerSetJmpPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createLowerSetJmpPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddPruneEHPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createPruneEHPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddIPSCCPPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createIPSCCPPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddInternalizePass(LLVMPassManagerRef PM, unsigned AllButMain) {
 | |
|   unwrap(PM)->add(createInternalizePass(AllButMain != 0));
 | |
| }
 | |
| 
 | |
| 
 | |
| void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM) {
 | |
|   // FIXME: Remove in LLVM 3.0.
 | |
| }
 | |
| 
 | |
| void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createStripDeadPrototypesPass());
 | |
| }
 | |
| 
 | |
| void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM) {
 | |
|   unwrap(PM)->add(createStripSymbolsPass());
 | |
| }
 |