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