1 //===--- IRPrintingPasses.cpp - Module and Function printing passes -------===//
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 //===----------------------------------------------------------------------===//
9 // PrintModulePass and PrintFunctionPass implementations.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/IR/IRPrintingPasses.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/IR/Function.h"
16 #include "llvm/IR/Module.h"
17 #include "llvm/IR/PrintPasses.h"
18 #include "llvm/InitializePasses.h"
19 #include "llvm/Pass.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/Support/raw_ostream.h"
25 PrintModulePass::PrintModulePass() : OS(dbgs()) {}
26 PrintModulePass::PrintModulePass(raw_ostream
&OS
, const std::string
&Banner
,
27 bool ShouldPreserveUseListOrder
)
28 : OS(OS
), Banner(Banner
),
29 ShouldPreserveUseListOrder(ShouldPreserveUseListOrder
) {}
31 PreservedAnalyses
PrintModulePass::run(Module
&M
, ModuleAnalysisManager
&) {
32 if (llvm::isFunctionInPrintList("*")) {
35 M
.print(OS
, nullptr, ShouldPreserveUseListOrder
);
38 bool BannerPrinted
= false;
39 for(const auto &F
: M
.functions()) {
40 if (llvm::isFunctionInPrintList(F
.getName())) {
41 if (!BannerPrinted
&& !Banner
.empty()) {
49 return PreservedAnalyses::all();
52 PrintFunctionPass::PrintFunctionPass() : OS(dbgs()) {}
53 PrintFunctionPass::PrintFunctionPass(raw_ostream
&OS
, const std::string
&Banner
)
54 : OS(OS
), Banner(Banner
) {}
56 PreservedAnalyses
PrintFunctionPass::run(Function
&F
,
57 FunctionAnalysisManager
&) {
58 if (isFunctionInPrintList(F
.getName())) {
59 if (forcePrintModuleIR())
60 OS
<< Banner
<< " (function: " << F
.getName() << ")\n" << *F
.getParent();
62 OS
<< Banner
<< '\n' << static_cast<Value
&>(F
);
64 return PreservedAnalyses::all();
69 class PrintModulePassWrapper
: public ModulePass
{
74 PrintModulePassWrapper() : ModulePass(ID
) {}
75 PrintModulePassWrapper(raw_ostream
&OS
, const std::string
&Banner
,
76 bool ShouldPreserveUseListOrder
)
77 : ModulePass(ID
), P(OS
, Banner
, ShouldPreserveUseListOrder
) {}
79 bool runOnModule(Module
&M
) override
{
80 ModuleAnalysisManager DummyMAM
;
85 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
89 StringRef
getPassName() const override
{ return "Print Module IR"; }
92 class PrintFunctionPassWrapper
: public FunctionPass
{
97 PrintFunctionPassWrapper() : FunctionPass(ID
) {}
98 PrintFunctionPassWrapper(raw_ostream
&OS
, const std::string
&Banner
)
99 : FunctionPass(ID
), P(OS
, Banner
) {}
101 // This pass just prints a banner followed by the function as it's processed.
102 bool runOnFunction(Function
&F
) override
{
103 FunctionAnalysisManager DummyFAM
;
108 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
109 AU
.setPreservesAll();
112 StringRef
getPassName() const override
{ return "Print Function IR"; }
117 char PrintModulePassWrapper::ID
= 0;
118 INITIALIZE_PASS(PrintModulePassWrapper
, "print-module",
119 "Print module to stderr", false, true)
120 char PrintFunctionPassWrapper::ID
= 0;
121 INITIALIZE_PASS(PrintFunctionPassWrapper
, "print-function",
122 "Print function to stderr", false, true)
124 ModulePass
*llvm::createPrintModulePass(llvm::raw_ostream
&OS
,
125 const std::string
&Banner
,
126 bool ShouldPreserveUseListOrder
) {
127 return new PrintModulePassWrapper(OS
, Banner
, ShouldPreserveUseListOrder
);
130 FunctionPass
*llvm::createPrintFunctionPass(llvm::raw_ostream
&OS
,
131 const std::string
&Banner
) {
132 return new PrintFunctionPassWrapper(OS
, Banner
);
135 bool llvm::isIRPrintingPass(Pass
*P
) {
136 const char *PID
= (const char*)P
->getPassID();
138 return (PID
== &PrintModulePassWrapper::ID
) ||
139 (PID
== &PrintFunctionPassWrapper::ID
);