2014-01-09 02:39:45 +00:00
|
|
|
//===--- IRPrintingPasses.cpp - Module and Function printing passes -------===//
|
2008-10-21 23:33:38 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2008-10-21 23:33:38 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// PrintModulePass and PrintFunctionPass implementations.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-01-12 11:10:32 +00:00
|
|
|
#include "llvm/IR/IRPrintingPasses.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2014-01-12 12:15:39 +00:00
|
|
|
#include "llvm/IR/PassManager.h"
|
2008-10-21 23:33:38 +00:00
|
|
|
#include "llvm/Pass.h"
|
2010-01-05 01:30:18 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2008-10-22 03:25:22 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-10-21 23:33:38 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-01-12 12:15:39 +00:00
|
|
|
PrintModulePass::PrintModulePass() : OS(dbgs()) {}
|
2015-04-15 02:38:06 +00:00
|
|
|
PrintModulePass::PrintModulePass(raw_ostream &OS, const std::string &Banner,
|
|
|
|
bool ShouldPreserveUseListOrder)
|
|
|
|
: OS(OS), Banner(Banner),
|
|
|
|
ShouldPreserveUseListOrder(ShouldPreserveUseListOrder) {}
|
2014-01-12 12:15:39 +00:00
|
|
|
|
2016-08-09 00:28:38 +00:00
|
|
|
PreservedAnalyses PrintModulePass::run(Module &M, ModuleAnalysisManager &) {
|
2019-09-04 08:08:58 +00:00
|
|
|
if (llvm::isFunctionInPrintList("*")) {
|
|
|
|
if (!Banner.empty())
|
|
|
|
OS << Banner << "\n";
|
2016-01-06 22:55:03 +00:00
|
|
|
M.print(OS, nullptr, ShouldPreserveUseListOrder);
|
2019-09-04 08:08:58 +00:00
|
|
|
}
|
2016-01-06 22:55:03 +00:00
|
|
|
else {
|
2019-09-04 08:08:58 +00:00
|
|
|
bool BannerPrinted = false;
|
|
|
|
for(const auto &F : M.functions()) {
|
|
|
|
if (llvm::isFunctionInPrintList(F.getName())) {
|
|
|
|
if (!BannerPrinted && !Banner.empty()) {
|
|
|
|
OS << Banner << "\n";
|
|
|
|
BannerPrinted = true;
|
|
|
|
}
|
2016-01-06 22:55:03 +00:00
|
|
|
F.print(OS);
|
2019-09-04 08:08:58 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-06 22:55:03 +00:00
|
|
|
}
|
2014-01-12 12:15:39 +00:00
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintFunctionPass::PrintFunctionPass() : OS(dbgs()) {}
|
|
|
|
PrintFunctionPass::PrintFunctionPass(raw_ostream &OS, const std::string &Banner)
|
|
|
|
: OS(OS), Banner(Banner) {}
|
|
|
|
|
2016-06-17 00:11:01 +00:00
|
|
|
PreservedAnalyses PrintFunctionPass::run(Function &F,
|
2016-08-09 00:28:15 +00:00
|
|
|
FunctionAnalysisManager &) {
|
2017-12-01 18:39:58 +00:00
|
|
|
if (isFunctionInPrintList(F.getName())) {
|
2017-12-01 17:42:46 +00:00
|
|
|
if (forcePrintModuleIR())
|
|
|
|
OS << Banner << " (function: " << F.getName() << ")\n" << *F.getParent();
|
|
|
|
else
|
|
|
|
OS << Banner << static_cast<Value &>(F);
|
2017-12-01 18:39:58 +00:00
|
|
|
}
|
2014-01-12 12:15:39 +00:00
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|
|
|
|
|
2008-10-21 23:33:38 +00:00
|
|
|
namespace {
|
|
|
|
|
2014-01-12 12:15:39 +00:00
|
|
|
class PrintModulePassWrapper : public ModulePass {
|
|
|
|
PrintModulePass P;
|
2014-01-12 11:16:01 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
2014-01-12 12:15:39 +00:00
|
|
|
PrintModulePassWrapper() : ModulePass(ID) {}
|
2015-04-15 02:38:06 +00:00
|
|
|
PrintModulePassWrapper(raw_ostream &OS, const std::string &Banner,
|
|
|
|
bool ShouldPreserveUseListOrder)
|
|
|
|
: ModulePass(ID), P(OS, Banner, ShouldPreserveUseListOrder) {}
|
2014-01-12 11:16:01 +00:00
|
|
|
|
2014-03-05 06:35:38 +00:00
|
|
|
bool runOnModule(Module &M) override {
|
2016-06-17 00:11:01 +00:00
|
|
|
ModuleAnalysisManager DummyMAM;
|
|
|
|
P.run(M, DummyMAM);
|
2014-01-12 11:16:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-05 06:35:38 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2014-01-12 11:16:01 +00:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2017-03-10 07:09:20 +00:00
|
|
|
|
2017-08-25 12:38:53 +00:00
|
|
|
StringRef getPassName() const override { return "Print Module IR"; }
|
2014-01-12 11:16:01 +00:00
|
|
|
};
|
|
|
|
|
2014-01-12 12:15:39 +00:00
|
|
|
class PrintFunctionPassWrapper : public FunctionPass {
|
|
|
|
PrintFunctionPass P;
|
2014-01-12 11:16:01 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
2014-01-12 12:15:39 +00:00
|
|
|
PrintFunctionPassWrapper() : FunctionPass(ID) {}
|
|
|
|
PrintFunctionPassWrapper(raw_ostream &OS, const std::string &Banner)
|
|
|
|
: FunctionPass(ID), P(OS, Banner) {}
|
2014-01-12 11:16:01 +00:00
|
|
|
|
|
|
|
// This pass just prints a banner followed by the function as it's processed.
|
2014-03-05 06:35:38 +00:00
|
|
|
bool runOnFunction(Function &F) override {
|
2016-06-17 00:11:01 +00:00
|
|
|
FunctionAnalysisManager DummyFAM;
|
|
|
|
P.run(F, DummyFAM);
|
2014-01-12 11:16:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-05 06:35:38 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2014-01-12 11:16:01 +00:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2017-03-10 07:09:20 +00:00
|
|
|
|
2017-08-25 12:38:53 +00:00
|
|
|
StringRef getPassName() const override { return "Print Function IR"; }
|
2014-01-12 11:16:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PrintBasicBlockPass : public BasicBlockPass {
|
2014-01-12 11:40:03 +00:00
|
|
|
raw_ostream &Out;
|
2014-01-12 11:16:01 +00:00
|
|
|
std::string Banner;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
2014-01-12 11:40:03 +00:00
|
|
|
PrintBasicBlockPass() : BasicBlockPass(ID), Out(dbgs()) {}
|
|
|
|
PrintBasicBlockPass(raw_ostream &Out, const std::string &Banner)
|
|
|
|
: BasicBlockPass(ID), Out(Out), Banner(Banner) {}
|
2014-01-12 11:16:01 +00:00
|
|
|
|
2014-03-05 06:35:38 +00:00
|
|
|
bool runOnBasicBlock(BasicBlock &BB) override {
|
2014-01-12 11:40:03 +00:00
|
|
|
Out << Banner << BB;
|
2014-01-12 11:16:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-24 20:19:40 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2014-01-12 11:16:01 +00:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2017-03-10 07:09:20 +00:00
|
|
|
|
|
|
|
StringRef getPassName() const override { return "Print BasicBlock IR"; }
|
2014-01-12 11:16:01 +00:00
|
|
|
};
|
2014-01-12 11:40:03 +00:00
|
|
|
|
2015-06-23 09:49:53 +00:00
|
|
|
}
|
2008-10-21 23:33:38 +00:00
|
|
|
|
2014-01-12 12:15:39 +00:00
|
|
|
char PrintModulePassWrapper::ID = 0;
|
|
|
|
INITIALIZE_PASS(PrintModulePassWrapper, "print-module",
|
2018-07-11 23:30:25 +00:00
|
|
|
"Print module to stderr", false, true)
|
2014-01-12 12:15:39 +00:00
|
|
|
char PrintFunctionPassWrapper::ID = 0;
|
|
|
|
INITIALIZE_PASS(PrintFunctionPassWrapper, "print-function",
|
2018-07-11 23:30:25 +00:00
|
|
|
"Print function to stderr", false, true)
|
2013-02-08 23:37:41 +00:00
|
|
|
char PrintBasicBlockPass::ID = 0;
|
2014-01-12 11:16:01 +00:00
|
|
|
INITIALIZE_PASS(PrintBasicBlockPass, "print-bb", "Print BB to stderr", false,
|
2018-07-11 23:30:25 +00:00
|
|
|
true)
|
2008-10-21 23:33:38 +00:00
|
|
|
|
2014-01-12 11:30:46 +00:00
|
|
|
ModulePass *llvm::createPrintModulePass(llvm::raw_ostream &OS,
|
2015-04-15 02:38:06 +00:00
|
|
|
const std::string &Banner,
|
|
|
|
bool ShouldPreserveUseListOrder) {
|
|
|
|
return new PrintModulePassWrapper(OS, Banner, ShouldPreserveUseListOrder);
|
2008-10-21 23:33:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-12 11:30:46 +00:00
|
|
|
FunctionPass *llvm::createPrintFunctionPass(llvm::raw_ostream &OS,
|
|
|
|
const std::string &Banner) {
|
2014-01-12 12:15:39 +00:00
|
|
|
return new PrintFunctionPassWrapper(OS, Banner);
|
2008-10-21 23:33:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-12 11:30:46 +00:00
|
|
|
BasicBlockPass *llvm::createPrintBasicBlockPass(llvm::raw_ostream &OS,
|
2014-01-12 11:16:01 +00:00
|
|
|
const std::string &Banner) {
|
2014-01-12 11:40:03 +00:00
|
|
|
return new PrintBasicBlockPass(OS, Banner);
|
2013-02-08 23:37:41 +00:00
|
|
|
}
|
2018-05-15 00:29:27 +00:00
|
|
|
|
|
|
|
bool llvm::isIRPrintingPass(Pass *P) {
|
|
|
|
const char *PID = (const char*)P->getPassID();
|
|
|
|
|
|
|
|
return (PID == &PrintModulePassWrapper::ID)
|
|
|
|
|| (PID == &PrintFunctionPassWrapper::ID)
|
|
|
|
|| (PID == &PrintBasicBlockPass::ID);
|
|
|
|
}
|