1 //===- IRPrintingPasses.h - Passes to print out IR constructs ---*- C++ -*-===//
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 //===----------------------------------------------------------------------===//
11 /// This file defines passes to print out IR in various granularities. The
12 /// PrintModulePass pass simply prints out the entire module when it is
13 /// executed. The PrintFunctionPass class is designed to be pipelined with
14 /// other FunctionPass's, and prints out the functions of the module as they
17 //===----------------------------------------------------------------------===//
19 #ifndef LLVM_IR_IR_PRINTING_PASSES_H
20 #define LLVM_IR_IR_PRINTING_PASSES_H
22 #include "llvm/ADT/StringRef.h"
31 class PreservedAnalyses;
34 /// \brief Create and return a pass that writes the module to the specified
36 ModulePass *createPrintModulePass(raw_ostream &OS,
37 const std::string &Banner = "");
39 /// \brief Create and return a pass that prints functions to the specified
40 /// \c raw_ostream as they are processed.
41 FunctionPass *createPrintFunctionPass(raw_ostream &OS,
42 const std::string &Banner = "");
44 /// \brief Create and return a pass that writes the BB to the specified
46 BasicBlockPass *createPrintBasicBlockPass(raw_ostream &OS,
47 const std::string &Banner = "");
49 /// \brief Pass for printing a Module as LLVM's text IR assembly.
51 /// Note: This pass is for use with the new pass manager. Use the create...Pass
52 /// functions above to create passes for use with the legacy pass manager.
53 class PrintModulePass {
59 PrintModulePass(raw_ostream &OS, const std::string &Banner = "");
61 PreservedAnalyses run(Module *M);
63 static StringRef name() { return "PrintModulePass"; }
66 /// \brief Pass for printing a Function as LLVM's text IR assembly.
68 /// Note: This pass is for use with the new pass manager. Use the create...Pass
69 /// functions above to create passes for use with the legacy pass manager.
70 class PrintFunctionPass {
76 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
78 PreservedAnalyses run(Function *F);
80 static StringRef name() { return "PrintFunctionPass"; }
83 } // End llvm namespace