be556d1ed2570127ac1b2417b793e91c80bf2a31
[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/Support/ManagedStatic.h"
22 #include "llvm/Support/Streams.h"
23 #include "llvm/System/Signals.h"
24 #include "llvm/System/Path.h"
25 #include <fstream>
26 #include <iostream>
27 #include <memory>
28 using namespace llvm;
29
30 static cl::list<std::string>
31 InputFilenames(cl::Positional, cl::OneOrMore,
32                cl::desc("<input bytecode files>"));
33
34 static cl::opt<std::string>
35 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
36                cl::value_desc("filename"));
37
38 static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
39
40 static cl::opt<bool>
41 Verbose("v", cl::desc("Print information about actions taken"));
42
43 static cl::opt<bool>
44 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
45
46 static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
47        cl::desc("Don't compress the generated bytecode"));
48
49 // LoadFile - Read the specified bytecode file in and return it.  This routine
50 // searches the link path for the specified file to try to find it...
51 //
52 static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
53   sys::Path Filename;
54   if (!Filename.set(FN)) {
55     cerr << "Invalid file name: '" << FN << "'\n";
56     return std::auto_ptr<Module>();
57   }
58
59   std::string ErrorMessage;
60   if (Filename.exists()) {
61     if (Verbose) cerr << "Loading '" << Filename.c_str() << "'\n";
62     Module* Result = ParseBytecodeFile(Filename.toString(), &ErrorMessage);
63     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
64
65     if (Verbose) {
66       cerr << "Error opening bytecode file: '" << Filename.c_str() << "'";
67       if (ErrorMessage.size()) cerr << ": " << ErrorMessage;
68       cerr << "\n";
69     }
70   } else {
71     cerr << "Bytecode file: '" << Filename.c_str() << "' does not exist.\n";
72   }
73
74   return std::auto_ptr<Module>();
75 }
76
77 int main(int argc, char **argv) {
78   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
79   try {
80     cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
81     sys::PrintStackTraceOnErrorSignal();
82     assert(InputFilenames.size() > 0 && "OneOrMore is not working");
83
84     unsigned BaseArg = 0;
85     std::string ErrorMessage;
86
87     std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
88     if (Composite.get() == 0) {
89       cerr << argv[0] << ": error loading file '"
90            << InputFilenames[BaseArg] << "'\n";
91       return 1;
92     }
93
94     for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
95       std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
96       if (M.get() == 0) {
97         cerr << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
98         return 1;
99       }
100
101       if (Verbose) cerr << "Linking in '" << InputFilenames[i] << "'\n";
102
103       if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
104         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) 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         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         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       cerr << argv[0] << ": linked module is broken!\n";
140       return 1;
141     }
142
143     if (Verbose) cerr << "Writing bytecode...\n";
144     OStream L(*Out);
145     WriteBytecodeToFile(Composite.get(), L, !NoCompress);
146
147     if (Out != &std::cout) delete Out;
148     return 0;
149   } catch (const std::string& msg) {
150     cerr << argv[0] << ": " << msg << "\n";
151   } catch (...) {
152     cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
153   }
154   return 1;
155 }