2014-01-13 07:38:24 +00:00
|
|
|
//===- BitcodeWriterPass.cpp - Bitcode writing pass -----------------------===//
|
2007-05-06 02:30:12 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-05-06 02:30:12 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// BitcodeWriterPass implementation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-01-13 07:38:24 +00:00
|
|
|
#include "llvm/Bitcode/BitcodeWriterPass.h"
|
2007-05-06 02:30:12 +00:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2014-01-13 07:38:24 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/PassManager.h"
|
2007-05-06 02:30:12 +00:00
|
|
|
#include "llvm/Pass.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2014-01-13 07:38:24 +00:00
|
|
|
PreservedAnalyses BitcodeWriterPass::run(Module *M) {
|
|
|
|
WriteBitcodeToFile(M, OS);
|
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|
|
|
|
|
2007-05-06 02:30:12 +00:00
|
|
|
namespace {
|
|
|
|
class WriteBitcodePass : public ModulePass {
|
2009-08-23 07:49:08 +00:00
|
|
|
raw_ostream &OS; // raw_ostream to print on
|
2007-05-06 02:30:12 +00:00
|
|
|
public:
|
2008-10-22 17:39:14 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
|
|
|
explicit WriteBitcodePass(raw_ostream &o)
|
2010-08-06 18:33:48 +00:00
|
|
|
: ModulePass(ID), OS(o) {}
|
2012-11-25 15:23:39 +00:00
|
|
|
|
2014-03-05 07:52:44 +00:00
|
|
|
const char *getPassName() const override { return "Bitcode Writer"; }
|
2012-11-25 15:23:39 +00:00
|
|
|
|
2014-03-05 07:52:44 +00:00
|
|
|
bool runOnModule(Module &M) override {
|
2009-08-23 07:49:08 +00:00
|
|
|
WriteBitcodeToFile(&M, OS);
|
2007-05-06 02:30:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
char WriteBitcodePass::ID = 0;
|
|
|
|
|
2008-10-22 17:39:14 +00:00
|
|
|
ModulePass *llvm::createBitcodeWriterPass(raw_ostream &Str) {
|
|
|
|
return new WriteBitcodePass(Str);
|
|
|
|
}
|