Use binary mode for reading/writing bytecode files
[oota-llvm.git] / tools / gccld / gccld.h
1 //===- gccld.h - Utility functions header file ------------------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains function prototypes for the functions in util.cpp.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Module.h"
15 #include "llvm/Linker.h"
16
17 #include <string>
18 #include <set>
19 #include <ostream>
20
21 namespace llvm {
22
23 int
24 GenerateBytecode (Module * M,
25                   int StripLevel,
26                   bool Internalize,
27                   std::ostream * Out);
28
29 int
30 GenerateAssembly (const std::string & OutputFilename,
31                   const std::string & InputFilename,
32                   const sys::Path & llc);
33
34 int GenerateCFile(const std::string &OutputFile, const std::string &InputFile,
35                   const sys::Path &llc);
36 int
37 GenerateNative (const std::string & OutputFilename,
38                 const std::string & InputFilename,
39                 const std::vector<std::string> & Libraries,
40                 const sys::Path & gcc,
41                 char ** const envp);
42
43 } // End llvm namespace