llvm-6502/include/llvm/Bytecode/WriteBytecodePass.h
Chris Lattner f4de63f65f Implement a more powerful, simpler, pass system. This pass system can figure
out how to run a collection of passes optimially given their behaviors and
charactaristics.

Convert code to use it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1507 91177308-0d34-0410-b5e6-96231b3b80d8
2002-01-21 07:31:50 +00:00

33 lines
812 B
C++

//===- 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) {
}
inline ~WriteBytecodePass() {
if (DeleteStream) delete Out;
}
bool run(Module *M) {
WriteBytecodeToFile(M, *Out);
return false;
}
};
#endif