1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/include/llvm/Bytecode/WriteBytecodePass.h

47 lines
1.3 KiB
C
Raw Normal View History

//===- llvm/Bytecode/WriteBytecodePass.h - Bytecode Writer Pass -*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
2001-10-18 22:31:42 +02:00
//
// 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>
2001-10-18 22:31:42 +02:00
namespace llvm {
class WriteBytecodePass : public ModulePass {
std::ostream *Out; // ostream to print on
2001-10-18 22:31:42 +02:00
bool DeleteStream;
bool CompressFile;
2001-10-18 22:31:42 +02:00
public:
WriteBytecodePass()
: Out(&std::cout), DeleteStream(false), CompressFile(true) {}
WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = true)
2004-11-08 20:01:03 +01:00
: Out(o), DeleteStream(DS), CompressFile(CF) {}
2001-10-18 22:31:42 +02:00
inline ~WriteBytecodePass() {
if (DeleteStream) delete Out;
}
bool runOnModule(Module &M) {
WriteBytecodeToFile(&M, *Out, CompressFile );
2001-10-18 22:31:42 +02:00
return false;
}
};
} // End llvm namespace
2001-10-18 22:31:42 +02:00
#endif