[Alignment][NFC] Remove dependency on GlobalObject::setAlignment(unsigned)
[llvm-core.git] / include / llvm / IR / IRPrintingPasses.h
blob3be9449c1a9365175a7bf056d9811b02cc86115e
1 //===- IRPrintingPasses.h - Passes to print out IR constructs ---*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 ///
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
14 /// are processed.
15 ///
16 //===----------------------------------------------------------------------===//
18 #ifndef LLVM_IR_IRPRINTINGPASSES_H
19 #define LLVM_IR_IRPRINTINGPASSES_H
21 #include "llvm/ADT/StringRef.h"
22 #include <string>
24 namespace llvm {
25 class Pass;
26 class BasicBlockPass;
27 class Function;
28 class FunctionPass;
29 class Module;
30 class ModulePass;
31 class PreservedAnalyses;
32 class raw_ostream;
33 template <typename IRUnitT, typename... ExtraArgTs> class AnalysisManager;
35 /// Create and return a pass that writes the module to the specified
36 /// \c raw_ostream.
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
47 /// \c raw_ostream.
48 BasicBlockPass *createPrintBasicBlockPass(raw_ostream &OS,
49 const std::string &Banner = "");
51 /// Print out a name of an LLVM value without any prefixes.
52 ///
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.
77 ///
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 {
81 raw_ostream &OS;
82 std::string Banner;
83 bool ShouldPreserveUseListOrder;
85 public:
86 PrintModulePass();
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.
96 ///
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 {
100 raw_ostream &OS;
101 std::string Banner;
103 public:
104 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
114 #endif