remove dead option
[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 // LoadFile - Read the specified bytecode file in and return it.  This routine
46 // searches the link path for the specified file to try to find it...
47 //
48 static inline std::auto_ptr<Module> LoadFile(const std::string &FN) {
49   sys::Path Filename;
50   if (!Filename.set(FN)) {
51     cerr << "Invalid file name: '" << FN << "'\n";
52     return std::auto_ptr<Module>();
53   }
54
55   std::string ErrorMessage;
56   if (Filename.exists()) {
57     if (Verbose) cerr << "Loading '" << Filename.c_str() << "'\n";
58     Module* Result = 0;
59     
60     const std::string &FNStr = Filename.toString();
61     MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(&FNStr[0],
62                                                         FNStr.size());
63     if (Buffer == 0)
64       ErrorMessage = "Error reading file '" + FNStr + "'";
65     else
66       Result = ParseBitcodeFile(Buffer, &ErrorMessage);
67     delete Buffer;
68     if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
69
70     if (Verbose) {
71       cerr << "Error opening bytecode file: '" << Filename.c_str() << "'";
72       if (ErrorMessage.size()) cerr << ": " << ErrorMessage;
73       cerr << "\n";
74     }
75   } else {
76     cerr << "Bytecode file: '" << Filename.c_str() << "' does not exist.\n";
77   }
78
79   return std::auto_ptr<Module>();
80 }
81
82 int main(int argc, char **argv) {
83   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
84   cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
85   sys::PrintStackTraceOnErrorSignal();
86   assert(InputFilenames.size() > 0 && "OneOrMore is not working");
87
88   unsigned BaseArg = 0;
89   std::string ErrorMessage;
90
91   std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
92   if (Composite.get() == 0) {
93     cerr << argv[0] << ": error loading file '"
94          << InputFilenames[BaseArg] << "'\n";
95     return 1;
96   }
97
98   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
99     std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
100     if (M.get() == 0) {
101       cerr << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
102       return 1;
103     }
104
105     if (Verbose) cerr << "Linking in '" << InputFilenames[i] << "'\n";
106
107     if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
108       cerr << argv[0] << ": link error in '" << InputFilenames[i]
109            << "': " << ErrorMessage << "\n";
110       return 1;
111     }
112   }
113
114   // TODO: Iterate over the -l list and link in any modules containing
115   // global symbols that have not been resolved so far.
116
117   if (DumpAsm) cerr << "Here's the assembly:\n" << *Composite.get();
118
119   // FIXME: cout is not binary!
120   std::ostream *Out = &std::cout;  // Default to printing to stdout...
121   if (OutputFilename != "-") {
122     if (!Force && std::ifstream(OutputFilename.c_str())) {
123       // If force is not specified, make sure not to overwrite a file!
124       cerr << argv[0] << ": error opening '" << OutputFilename
125            << "': file exists!\n"
126            << "Use -f command line argument to force output\n";
127       return 1;
128     }
129     std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
130                                  std::ios::binary;
131     Out = new std::ofstream(OutputFilename.c_str(), io_mode);
132     if (!Out->good()) {
133       cerr << argv[0] << ": error opening '" << OutputFilename << "'!\n";
134       return 1;
135     }
136
137     // Make sure that the Out file gets unlinked from the disk if we get a
138     // SIGINT
139     sys::RemoveFileOnSignal(sys::Path(OutputFilename));
140   }
141
142   if (verifyModule(*Composite.get())) {
143     cerr << argv[0] << ": linked module is broken!\n";
144     return 1;
145   }
146
147   if (Verbose) cerr << "Writing bytecode...\n";
148   WriteBitcodeToFile(Composite.get(), *Out);
149
150   if (Out != &std::cout) delete Out;
151   return 0;
152 }