mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86810 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.0 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 C bindings for libLLVMScalarOpts.a, which implements
 | 
						|
// several scalar transformations over the LLVM intermediate representation.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "llvm-c/Transforms/Scalar.h"
 | 
						|
#include "llvm/PassManager.h"
 | 
						|
#include "llvm/Transforms/Scalar.h"
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
void LLVMAddAggressiveDCEPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createAggressiveDCEPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createCFGSimplificationPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createDeadStoreEliminationPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddGVNPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createGVNPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createIndVarSimplifyPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createInstructionCombiningPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createJumpThreadingPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddLICMPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createLICMPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createLoopDeletionPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddLoopIndexSplitPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createLoopIndexSplitPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddLoopRotatePass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createLoopRotatePass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createLoopUnrollPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createLoopUnswitchPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createMemCpyOptPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createPromoteMemoryToRegisterPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddReassociatePass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createReassociatePass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddSCCPPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createSCCPPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createScalarReplAggregatesPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createSimplifyLibCallsPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createTailCallEliminationPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createConstantPropagationPass());
 | 
						|
}
 | 
						|
 | 
						|
void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM) {
 | 
						|
  unwrap(PM)->add(createDemoteRegisterToMemoryPass());
 | 
						|
}
 |