2014-01-09 10:39:45 +08:00
|
|
|
//===--- IRPrintingPasses.cpp - Module and Function printing passes -------===//
|
2008-10-22 07:33:38 +08: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 19:10:32 +08:00
|
|
|
#include "llvm/IR/IRPrintingPasses.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2008-10-22 07:33:38 +08:00
|
|
|
#include "llvm/Pass.h"
|
2010-01-05 09:30:18 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2008-10-22 11:25:22 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-10-22 07:33:38 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2014-01-12 19:16:01 +08:00
|
|
|
class PrintModulePass : public ModulePass {
|
2014-01-12 19:40:03 +08:00
|
|
|
raw_ostream &Out;
|
2014-01-12 19:16:01 +08:00
|
|
|
std::string Banner;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
2014-01-12 19:40:03 +08:00
|
|
|
PrintModulePass() : ModulePass(ID), Out(dbgs()) {}
|
|
|
|
PrintModulePass(raw_ostream &Out, const std::string &Banner)
|
|
|
|
: ModulePass(ID), Out(Out), Banner(Banner) {}
|
2014-01-12 19:16:01 +08:00
|
|
|
|
|
|
|
bool runOnModule(Module &M) {
|
2014-01-12 19:40:03 +08:00
|
|
|
Out << Banner << M;
|
2014-01-12 19:16:01 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class PrintFunctionPass : public FunctionPass {
|
2014-01-12 19:40:03 +08:00
|
|
|
raw_ostream &Out;
|
2014-01-12 19:16:01 +08:00
|
|
|
std::string Banner;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
2014-01-12 19:40:03 +08:00
|
|
|
PrintFunctionPass() : FunctionPass(ID), Out(dbgs()) {}
|
|
|
|
PrintFunctionPass(raw_ostream &Out, const std::string &Banner)
|
|
|
|
: FunctionPass(ID), Out(Out), Banner(Banner) {}
|
2014-01-12 19:16:01 +08:00
|
|
|
|
|
|
|
// This pass just prints a banner followed by the function as it's processed.
|
|
|
|
bool runOnFunction(Function &F) {
|
2014-01-12 19:40:03 +08:00
|
|
|
Out << Banner << static_cast<Value &>(F);
|
2014-01-12 19:16:01 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class PrintBasicBlockPass : public BasicBlockPass {
|
2014-01-12 19:40:03 +08:00
|
|
|
raw_ostream &Out;
|
2014-01-12 19:16:01 +08:00
|
|
|
std::string Banner;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
2014-01-12 19:40:03 +08:00
|
|
|
PrintBasicBlockPass() : BasicBlockPass(ID), Out(dbgs()) {}
|
|
|
|
PrintBasicBlockPass(raw_ostream &Out, const std::string &Banner)
|
|
|
|
: BasicBlockPass(ID), Out(Out), Banner(Banner) {}
|
2014-01-12 19:16:01 +08:00
|
|
|
|
|
|
|
bool runOnBasicBlock(BasicBlock &BB) {
|
2014-01-12 19:40:03 +08:00
|
|
|
Out << Banner << BB;
|
2014-01-12 19:16:01 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
2014-01-12 19:40:03 +08:00
|
|
|
|
2008-10-22 07:33:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
char PrintModulePass::ID = 0;
|
2014-01-12 19:16:01 +08:00
|
|
|
INITIALIZE_PASS(PrintModulePass, "print-module", "Print module to stderr",
|
|
|
|
false, false)
|
2008-10-22 07:33:38 +08:00
|
|
|
char PrintFunctionPass::ID = 0;
|
2014-01-12 19:16:01 +08:00
|
|
|
INITIALIZE_PASS(PrintFunctionPass, "print-function", "Print function to stderr",
|
|
|
|
false, false)
|
2013-02-09 07:37:41 +08:00
|
|
|
char PrintBasicBlockPass::ID = 0;
|
2014-01-12 19:16:01 +08:00
|
|
|
INITIALIZE_PASS(PrintBasicBlockPass, "print-bb", "Print BB to stderr", false,
|
|
|
|
false)
|
2008-10-22 07:33:38 +08:00
|
|
|
|
2014-01-12 19:30:46 +08:00
|
|
|
ModulePass *llvm::createPrintModulePass(llvm::raw_ostream &OS,
|
2010-04-03 07:17:14 +08:00
|
|
|
const std::string &Banner) {
|
2014-01-12 19:40:03 +08:00
|
|
|
return new PrintModulePass(OS, Banner);
|
2008-10-22 07:33:38 +08:00
|
|
|
}
|
|
|
|
|
2014-01-12 19:30:46 +08:00
|
|
|
FunctionPass *llvm::createPrintFunctionPass(llvm::raw_ostream &OS,
|
|
|
|
const std::string &Banner) {
|
2014-01-12 19:40:03 +08:00
|
|
|
return new PrintFunctionPass(OS, Banner);
|
2008-10-22 07:33:38 +08:00
|
|
|
}
|
|
|
|
|
2014-01-12 19:30:46 +08:00
|
|
|
BasicBlockPass *llvm::createPrintBasicBlockPass(llvm::raw_ostream &OS,
|
2014-01-12 19:16:01 +08:00
|
|
|
const std::string &Banner) {
|
2014-01-12 19:40:03 +08:00
|
|
|
return new PrintBasicBlockPass(OS, Banner);
|
2013-02-09 07:37:41 +08:00
|
|
|
}
|