mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
60a786e9e9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2800 91177308-0d34-0410-b5e6-96231b3b80d8
36 lines
913 B
C++
36 lines
913 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"
|
|
#include <iostream>
|
|
|
|
class WriteBytecodePass : public Pass {
|
|
std::ostream *Out; // ostream to print on
|
|
bool DeleteStream;
|
|
public:
|
|
inline WriteBytecodePass(std::ostream *o = &std::cout, bool DS = false)
|
|
: Out(o), DeleteStream(DS) {
|
|
}
|
|
|
|
const char *getPassName() const { return "Bytecode Writer"; }
|
|
|
|
inline ~WriteBytecodePass() {
|
|
if (DeleteStream) delete Out;
|
|
}
|
|
|
|
bool run(Module &M) {
|
|
WriteBytecodeToFile(&M, *Out);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
#endif
|