2001-10-18 20:31:42 +00:00
|
|
|
//===- llvm/Bytecode/WriteBytecodePass.h - Bytecode Writer Pass --*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file defines a simple pass to write the working module to a file after
|
|
|
|
// pass processing is completed.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_BYTECODE_WRITEBYTECODEPASS_H
|
|
|
|
#define LLVM_BYTECODE_WRITEBYTECODEPASS_H
|
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Bytecode/Writer.h"
|
|
|
|
|
|
|
|
class WriteBytecodePass : public Pass {
|
|
|
|
ostream *Out; // ostream to print on
|
|
|
|
bool DeleteStream;
|
|
|
|
public:
|
|
|
|
inline WriteBytecodePass(ostream *o = &cout, bool DS = false)
|
|
|
|
: Out(o), DeleteStream(DS) {
|
|
|
|
}
|
|
|
|
|
2002-04-29 14:57:45 +00:00
|
|
|
const char *getPassName() const { return "Bytecode Writer"; }
|
|
|
|
|
2001-10-18 20:31:42 +00:00
|
|
|
inline ~WriteBytecodePass() {
|
|
|
|
if (DeleteStream) delete Out;
|
|
|
|
}
|
|
|
|
|
2002-01-21 07:31:50 +00:00
|
|
|
bool run(Module *M) {
|
2001-10-18 20:31:42 +00:00
|
|
|
WriteBytecodeToFile(M, *Out);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|