For PR495:
[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/Bytecode/Reader.h"
19 #include "llvm/Bytecode/Writer.h"
20 #include "llvm/Support/CommandLine.h"
21 #include "llvm/System/Signals.h"
22 #include "llvm/System/Path.h"
23 #include <fstream>
24 #include <iostream>
25 #include <memory>
26
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(false),
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     std::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) std::cerr << "Loading '" << Filename.c_str() << "'\n";
61     Module* Result = ParseBytecodeFile(Filename.toString(), &ErrorMessage);
62     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
63
64     if (Verbose) {
65       std::cerr << "Error opening bytecode file: '" << Filename.c_str() << "'";
66       if (ErrorMessage.size()) std::cerr << ": " << ErrorMessage;
67       std::cerr << "\n";
68     }
69   } else {
70     std::cerr << "Bytecode file: '" << Filename.c_str()
71               << "' does not exist.\n";
72   }
73
74   return std::auto_ptr<Module>();
75 }
76
77 int main(int argc, char **argv) {
78   try {
79     cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
80     sys::PrintStackTraceOnErrorSignal();
81     assert(InputFilenames.size() > 0 && "OneOrMore is not working");
82
83     unsigned BaseArg = 0;
84     std::string ErrorMessage;
85
86     std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
87     if (Composite.get() == 0) {
88       std::cerr << argv[0] << ": error loading file '"
89                 << InputFilenames[BaseArg] << "'\n";
90       return 1;
91     }
92
93     for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
94       std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
95       if (M.get() == 0) {
96         std::cerr << argv[0] << ": error loading file '"
97                   << InputFilenames[i] << "'\n";
98         return 1;
99       }
100
101       if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
102
103       if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
104         std::cerr << argv[0] << ": link error in '" << InputFilenames[i]
105                   << "': " << ErrorMessage << "\n";
106         return 1;
107       }
108     }
109
110     // TODO: Iterate over the -l list and link in any modules containing
111     // global symbols that have not been resolved so far.
112
113     if (DumpAsm) std::cerr << "Here's the assembly:\n" << *Composite.get();
114
115     // FIXME: cout is not binary!
116     std::ostream *Out = &std::cout;  // Default to printing to stdout...
117     if (OutputFilename != "-") {
118       if (!Force && std::ifstream(OutputFilename.c_str())) {
119         // If force is not specified, make sure not to overwrite a file!
120         std::cerr << argv[0] << ": error opening '" << OutputFilename
121                   << "': file exists!\n"
122                   << "Use -f command line argument to force output\n";
123         return 1;
124       }
125       std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
126                                    std::ios::binary;
127       Out = new std::ofstream(OutputFilename.c_str(), io_mode);
128       if (!Out->good()) {
129         std::cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
130         return 1;
131       }
132
133       // Make sure that the Out file gets unlinked from the disk if we get a
134       // SIGINT
135       sys::RemoveFileOnSignal(sys::Path(OutputFilename));
136     }
137
138     if (verifyModule(*Composite.get())) {
139       std::cerr << argv[0] << ": linked module is broken!\n";
140       return 1;
141     }
142
143     if (Verbose) std::cerr << "Writing bytecode...\n";
144     WriteBytecodeToFile(Composite.get(), *Out, !NoCompress);
145
146     if (Out != &std::cout) delete Out;
147     return 0;
148   } catch (const std::string& msg) {
149     std::cerr << argv[0] << ": " << msg << "\n";
150   } catch (...) {
151     std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
152   }
153   return 1;
154 }