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