switch tools to bitcode instead of bytecode
[oota-llvm.git] / tools / llvm-link / llvm-link.cpp
1 //===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
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 utility may be invoked in the following manner:
11 //  llvm-link a.bc b.bc c.bc -o x.bc
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Linker.h"
16 #include "llvm/Module.h"
17 #include "llvm/Analysis/Verifier.h"
18 #include "llvm/Bitcode/ReaderWriter.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Support/ManagedStatic.h"
21 #include "llvm/Support/MemoryBuffer.h"
22 #include "llvm/System/Signals.h"
23 #include "llvm/System/Path.h"
24 #include <fstream>
25 #include <iostream>
26 #include <memory>
27 using namespace llvm;
28
29 static cl::list<std::string>
30 InputFilenames(cl::Positional, cl::OneOrMore,
31                cl::desc("<input bytecode files>"));
32
33 static cl::opt<std::string>
34 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
35                cl::value_desc("filename"));
36
37 static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
38
39 static cl::opt<bool>
40 Verbose("v", cl::desc("Print information about actions taken"));
41
42 static cl::opt<bool>
43 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
44
45 static cl::opt<bool> NoCompress("disable-compression", cl::init(true),
46        cl::desc("Don't compress the generated bytecode"));
47
48 // LoadFile - Read the specified bytecode file in and return it.  This routine
49 // searches the link path for the specified file to try to find it...
50 //
51 static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
52   sys::Path Filename;
53   if (!Filename.set(FN)) {
54     cerr << "Invalid file name: '" << FN << "'\n";
55     return std::auto_ptr<Module>();
56   }
57
58   std::string ErrorMessage;
59   if (Filename.exists()) {
60     if (Verbose) cerr << "Loading '" << Filename.c_str() << "'\n";
61     Module* Result = 0;
62     
63     const std::string &FNStr = Filename.toString();
64     MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(&FNStr[0],
65                                                         FNStr.size());
66     if (Buffer == 0)
67       ErrorMessage = "Error reading file '" + FNStr + "'";
68     else
69       Result = ParseBitcodeFile(Buffer, &ErrorMessage);
70     delete Buffer;
71     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
72
73     if (Verbose) {
74       cerr << "Error opening bytecode file: '" << Filename.c_str() << "'";
75       if (ErrorMessage.size()) cerr << ": " << ErrorMessage;
76       cerr << "\n";
77     }
78   } else {
79     cerr << "Bytecode file: '" << Filename.c_str() << "' does not exist.\n";
80   }
81
82   return std::auto_ptr<Module>();
83 }
84
85 int main(int argc, char **argv) {
86   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
87   cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
88   sys::PrintStackTraceOnErrorSignal();
89   assert(InputFilenames.size() > 0 && "OneOrMore is not working");
90
91   unsigned BaseArg = 0;
92   std::string ErrorMessage;
93
94   std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
95   if (Composite.get() == 0) {
96     cerr << argv[0] << ": error loading file '"
97          << InputFilenames[BaseArg] << "'\n";
98     return 1;
99   }
100
101   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
102     std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
103     if (M.get() == 0) {
104       cerr << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
105       return 1;
106     }
107
108     if (Verbose) cerr << "Linking in '" << InputFilenames[i] << "'\n";
109
110     if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
111       cerr << argv[0] << ": link error in '" << InputFilenames[i]
112            << "': " << ErrorMessage << "\n";
113       return 1;
114     }
115   }
116
117   // TODO: Iterate over the -l list and link in any modules containing
118   // global symbols that have not been resolved so far.
119
120   if (DumpAsm) cerr << "Here's the assembly:\n" << *Composite.get();
121
122   // FIXME: cout is not binary!
123   std::ostream *Out = &std::cout;  // Default to printing to stdout...
124   if (OutputFilename != "-") {
125     if (!Force && std::ifstream(OutputFilename.c_str())) {
126       // If force is not specified, make sure not to overwrite a file!
127       cerr << argv[0] << ": error opening '" << OutputFilename
128            << "': file exists!\n"
129            << "Use -f command line argument to force output\n";
130       return 1;
131     }
132     std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
133                                  std::ios::binary;
134     Out = new std::ofstream(OutputFilename.c_str(), io_mode);
135     if (!Out->good()) {
136       cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
137       return 1;
138     }
139
140     // Make sure that the Out file gets unlinked from the disk if we get a
141     // SIGINT
142     sys::RemoveFileOnSignal(sys::Path(OutputFilename));
143   }
144
145   if (verifyModule(*Composite.get())) {
146     cerr << argv[0] << ": linked module is broken!\n";
147     return 1;
148   }
149
150   if (Verbose) cerr << "Writing bytecode...\n";
151   WriteBitcodeToFile(Composite.get(), *Out);
152
153   if (Out != &std::cout) delete Out;
154   return 0;
155 }