2007-05-06 10:30:12 +08:00
|
|
|
//===--- Bitcode/Writer/BitcodeWriterPass.cpp - Bitcode Writer ------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-05-06 10:30:12 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// BitcodeWriterPass implementation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class WriteBitcodePass : public ModulePass {
|
2009-08-23 15:49:08 +08:00
|
|
|
raw_ostream &OS; // raw_ostream to print on
|
2007-05-06 10:30:12 +08:00
|
|
|
public:
|
2008-10-23 01:39:14 +08:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
|
|
|
explicit WriteBitcodePass(raw_ostream &o)
|
2010-08-07 02:33:48 +08:00
|
|
|
: ModulePass(ID), OS(o) {}
|
2012-11-25 23:23:39 +08:00
|
|
|
|
2007-11-05 04:28:31 +08:00
|
|
|
const char *getPassName() const { return "Bitcode Writer"; }
|
2012-11-25 23:23:39 +08:00
|
|
|
|
2007-05-06 10:30:12 +08:00
|
|
|
bool runOnModule(Module &M) {
|
2009-08-23 15:49:08 +08:00
|
|
|
WriteBitcodeToFile(&M, OS);
|
2007-05-06 10:30:12 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
char WriteBitcodePass::ID = 0;
|
|
|
|
|
2008-10-23 01:39:14 +08: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);
|
|
|
|
}
|