mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	that merely add passes. This allows them to be used with either FunctionPassManager or PassManager, or even with a custom new kind of pass manager. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48256 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			33 lines
		
	
	
		
			991 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			991 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- FileWriters.h - File Writers Creation Functions ---------*- C++ -*-===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // Functions to add the various file writer passes.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef LLVM_CODEGEN_FILEWRITERS_H
 | |
| #define LLVM_CODEGEN_FILEWRITERS_H
 | |
| 
 | |
| #include <iosfwd>
 | |
| 
 | |
| namespace llvm {
 | |
| 
 | |
|   class PassManagerBase;
 | |
|   class MachineCodeEmitter;
 | |
|   class TargetMachine;
 | |
| 
 | |
|   MachineCodeEmitter *AddELFWriter(PassManagerBase &FPM, std::ostream &O,
 | |
|                                    TargetMachine &TM);
 | |
|   MachineCodeEmitter *AddMachOWriter(PassManagerBase &FPM, std::ostream &O,
 | |
|                                      TargetMachine &TM);
 | |
| 
 | |
| } // end llvm namespace
 | |
| 
 | |
| #endif // LLVM_CODEGEN_FILEWRITERS_H
 |