For PR351:
[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 ompress 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.setFile(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     std::ostream *Out = &std::cout;  // Default to printing to stdout...
116     if (OutputFilename != "-") {
117       if (!Force && std::ifstream(OutputFilename.c_str())) {
118         // If force is not specified, make sure not to overwrite a file!
119         std::cerr << argv[0] << ": error opening '" << OutputFilename
120                   << "': file exists!\n"
121                   << "Use -f command line argument to force output\n";
122         return 1;
123       }
124       Out = new std::ofstream(OutputFilename.c_str());
125       if (!Out->good()) {
126         std::cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
127         return 1;
128       }
129
130       // Make sure that the Out file gets unlinked from the disk if we get a
131       // SIGINT
132       sys::RemoveFileOnSignal(sys::Path(OutputFilename));
133     }
134
135     if (verifyModule(*Composite.get())) {
136       std::cerr << argv[0] << ": linked module is broken!\n";
137       return 1;
138     }
139
140     if (Verbose) std::cerr << "Writing bytecode...\n";
141     WriteBytecodeToFile(Composite.get(), *Out, !NoCompress);
142
143     if (Out != &std::cout) delete Out;
144     return 0;
145   } catch (const std::string& msg) {
146     std::cerr << argv[0] << ": " << msg << "\n";
147   } catch (...) {
148     std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
149   }
150   return 1;
151 }