1 //===- IRPrintingPasses.h - Passes to print out IR constructs ---*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// This file defines passes to print out IR in various granularities. The
11 /// PrintModulePass pass simply prints out the entire module when it is
12 /// executed. The PrintFunctionPass class is designed to be pipelined with
13 /// other FunctionPass's, and prints out the functions of the module as they
16 //===----------------------------------------------------------------------===//
18 #ifndef LLVM_IR_IRPRINTINGPASSES_H
19 #define LLVM_IR_IRPRINTINGPASSES_H
21 #include "llvm/ADT/StringRef.h"
31 class PreservedAnalyses
;
33 template <typename IRUnitT
, typename
... ExtraArgTs
> class AnalysisManager
;
35 /// Create and return a pass that writes the module to the specified
37 ModulePass
*createPrintModulePass(raw_ostream
&OS
,
38 const std::string
&Banner
= "",
39 bool ShouldPreserveUseListOrder
= false);
41 /// Create and return a pass that prints functions to the specified
42 /// \c raw_ostream as they are processed.
43 FunctionPass
*createPrintFunctionPass(raw_ostream
&OS
,
44 const std::string
&Banner
= "");
46 /// Create and return a pass that writes the BB to the specified
48 BasicBlockPass
*createPrintBasicBlockPass(raw_ostream
&OS
,
49 const std::string
&Banner
= "");
51 /// Print out a name of an LLVM value without any prefixes.
53 /// The name is surrounded with ""'s and escaped if it has any special or
54 /// non-printable characters in it.
55 void printLLVMNameWithoutPrefix(raw_ostream
&OS
, StringRef Name
);
57 /// Return true if a pass is for IR printing.
58 bool isIRPrintingPass(Pass
*P
);
60 /// isFunctionInPrintList - returns true if a function should be printed via
61 // debugging options like -print-after-all/-print-before-all.
62 // Tells if the function IR should be printed by PrinterPass.
63 extern bool isFunctionInPrintList(StringRef FunctionName
);
65 /// forcePrintModuleIR - returns true if IR printing passes should
66 // be printing module IR (even for local-pass printers e.g. function-pass)
67 // to provide more context, as enabled by debugging option -print-module-scope
68 // Tells if IR printer should be printing module IR
69 extern bool forcePrintModuleIR();
71 extern bool shouldPrintBeforePass();
72 extern bool shouldPrintBeforePass(StringRef
);
73 extern bool shouldPrintAfterPass();
74 extern bool shouldPrintAfterPass(StringRef
);
76 /// Pass for printing a Module as LLVM's text IR assembly.
78 /// Note: This pass is for use with the new pass manager. Use the create...Pass
79 /// functions above to create passes for use with the legacy pass manager.
80 class PrintModulePass
{
83 bool ShouldPreserveUseListOrder
;
87 PrintModulePass(raw_ostream
&OS
, const std::string
&Banner
= "",
88 bool ShouldPreserveUseListOrder
= false);
90 PreservedAnalyses
run(Module
&M
, AnalysisManager
<Module
> &);
92 static StringRef
name() { return "PrintModulePass"; }
95 /// Pass for printing a Function as LLVM's text IR assembly.
97 /// Note: This pass is for use with the new pass manager. Use the create...Pass
98 /// functions above to create passes for use with the legacy pass manager.
99 class PrintFunctionPass
{
105 PrintFunctionPass(raw_ostream
&OS
, const std::string
&Banner
= "");
107 PreservedAnalyses
run(Function
&F
, AnalysisManager
<Function
> &);
109 static StringRef
name() { return "PrintFunctionPass"; }
112 } // End llvm namespace