mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	This commit decouples the MIR printer and the MIR printing pass so that it will be possible to move the MIR printer into a separate machine IR library later on. Reviewers: Duncan P. N. Exon Smith git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239788 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===- MIRPrinter.h - MIR serialization format printer --------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file declares the functions that print out the LLVM IR and the machine
 | 
						|
// functions using the MIR serialization format.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#ifndef LLVM_LIB_CODEGEN_MIRPRINTER_H
 | 
						|
#define LLVM_LIB_CODEGEN_MIRPRINTER_H
 | 
						|
 | 
						|
namespace llvm {
 | 
						|
 | 
						|
class MachineFunction;
 | 
						|
class Module;
 | 
						|
class raw_ostream;
 | 
						|
 | 
						|
/// Print LLVM IR using the MIR serialization format to the given output stream.
 | 
						|
void printMIR(raw_ostream &OS, const Module &M);
 | 
						|
 | 
						|
/// Print a machine function using the MIR serialization format to the given
 | 
						|
/// output stream.
 | 
						|
void printMIR(raw_ostream &OS, const MachineFunction &MF);
 | 
						|
 | 
						|
} // end namespace llvm
 | 
						|
 | 
						|
#endif
 |