1 //===- MIRPrinter.h - MIR serialization format printer --------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the functions that print out the LLVM IR and the machine
11 // functions using the MIR serialization format.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_LIB_CODEGEN_MIRPRINTER_H
16 #define LLVM_LIB_CODEGEN_MIRPRINTER_H
20 class MachineFunction;
24 /// Print LLVM IR using the MIR serialization format to the given output stream.
25 void printMIR(raw_ostream &OS, const Module &M);
27 /// Print a machine function using the MIR serialization format to the given
29 void printMIR(raw_ostream &OS, const MachineFunction &MF);
31 } // end namespace llvm