2007-05-06 02:30:12 +00:00
|
|
|
//===--- Bitcode/Writer/BitcodeWriterPass.cpp - Bitcode Writer ------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
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)
|
2009-08-23 07:49:08 +00:00
|
|
|
: ModulePass(&ID), OS(o) {}
|
2007-11-04 20:28:31 +00:00
|
|
|
|
|
|
|
const char *getPassName() const { return "Bitcode Writer"; }
|
2007-05-06 02:30:12 +00:00
|
|
|
|
|
|
|
bool runOnModule(Module &M) {
|
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
|
|
|
/// createBitcodeWriterPass - Create and return a pass that writes the module
|
|
|
|
/// to the specified ostream.
|
|
|
|
ModulePass *llvm::createBitcodeWriterPass(raw_ostream &Str) {
|
|
|
|
return new WriteBitcodePass(Str);
|
|
|
|
}
|