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