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 {
|
|
|
|
std::string Banner;
|
|
|
|
raw_ostream *Out;
|
|
|
|
bool DeleteStream;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
PrintModulePass() : ModulePass(ID), Out(&dbgs()), DeleteStream(false) {}
|
|
|
|
PrintModulePass(const std::string &B, raw_ostream *o, bool DS)
|
|
|
|
: ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {}
|
|
|
|
|
|
|
|
~PrintModulePass() {
|
|
|
|
if (DeleteStream)
|
|
|
|
delete Out;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnModule(Module &M) {
|
|
|
|
(*Out) << Banner << M;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class PrintFunctionPass : public FunctionPass {
|
|
|
|
std::string Banner;
|
|
|
|
raw_ostream *Out;
|
|
|
|
bool DeleteStream;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
PrintFunctionPass()
|
|
|
|
: FunctionPass(ID), Banner(""), Out(&dbgs()), DeleteStream(false) {}
|
|
|
|
PrintFunctionPass(const std::string &B, raw_ostream *o, bool DS)
|
2010-08-07 02:33:48 +08:00
|
|
|
: FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
|
2014-01-12 19:16:01 +08:00
|
|
|
|
|
|
|
~PrintFunctionPass() {
|
|
|
|
if (DeleteStream)
|
|
|
|
delete Out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This pass just prints a banner followed by the function as it's processed.
|
|
|
|
bool runOnFunction(Function &F) {
|
|
|
|
(*Out) << Banner << static_cast<Value &>(F);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class PrintBasicBlockPass : public BasicBlockPass {
|
|
|
|
std::string Banner;
|
|
|
|
raw_ostream *Out;
|
|
|
|
bool DeleteStream;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
PrintBasicBlockPass()
|
|
|
|
: BasicBlockPass(ID), Out(&dbgs()), DeleteStream(false) {}
|
|
|
|
PrintBasicBlockPass(const std::string &B, raw_ostream *o, bool DS)
|
|
|
|
: BasicBlockPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
|
|
|
|
|
|
|
|
~PrintBasicBlockPass() {
|
|
|
|
if (DeleteStream)
|
|
|
|
delete Out;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnBasicBlock(BasicBlock &BB) {
|
|
|
|
(*Out) << Banner << BB;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
};
|
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:16:01 +08:00
|
|
|
ModulePass *llvm::createPrintModulePass(llvm::raw_ostream *OS,
|
2010-04-03 07:17:14 +08:00
|
|
|
bool DeleteStream,
|
|
|
|
const std::string &Banner) {
|
|
|
|
return new PrintModulePass(Banner, OS, DeleteStream);
|
2008-10-22 07:33:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass *llvm::createPrintFunctionPass(const std::string &Banner,
|
2014-01-12 19:16:01 +08:00
|
|
|
llvm::raw_ostream *OS,
|
2008-10-22 11:25:22 +08:00
|
|
|
bool DeleteStream) {
|
2008-10-22 07:33:38 +08:00
|
|
|
return new PrintFunctionPass(Banner, OS, DeleteStream);
|
|
|
|
}
|
|
|
|
|
2013-02-09 07:37:41 +08:00
|
|
|
BasicBlockPass *llvm::createPrintBasicBlockPass(llvm::raw_ostream *OS,
|
2014-01-12 19:16:01 +08:00
|
|
|
bool DeleteStream,
|
|
|
|
const std::string &Banner) {
|
2013-02-09 07:37:41 +08:00
|
|
|
return new PrintBasicBlockPass(Banner, OS, DeleteStream);
|
|
|
|
}
|