aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode/ReaderWriter.h
blob: 0522f1bb28eff42b1b08870b9dce7a98f3e933e9 (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
35
36
37
38
//===-- llvm/Bitcode/ReaderWriter.h - Bitcode reader/writers ----*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Chris Lattner and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This header defines interfaces to read and write LLVM bitcode files/streams.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_BITCODE_H
#define LLVM_BITCODE_H

#include <iosfwd>
#include <string>

namespace llvm {
  class Module;
  class ModuleProvider;
  
  ModuleProvider *getBitcodeModuleProvider(const std::string &Filename,
                                           std::string *ErrMsg = 0);

  
  /// ParseBitcodeFile - Read the specified bitcode file, returning the module.
  /// If an error occurs, return null and fill in *ErrMsg if non-null.
  Module *ParseBitcodeFile(const std::string &Filename,
                           std::string *ErrMsg = 0);
  
  /// WriteBitcodeToFile - Write the specified module to the specified output
  /// stream.
  void WriteBitcodeToFile(const Module *M, std::ostream &Out);
} // End llvm namespace

#endif