summaryrefslogtreecommitdiff
path: root/include/llvm/Bytecode/WriteBytecodePass.h
blob: 3e6d7fef7150f6f8dfff16f169106bd038732d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//===- 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 {
  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