Split out the IRReader header and the utility functions it provides into
[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/Analysis/Verifier.h"
17 #include "llvm/Bitcode/ReaderWriter.h"
18 #include "llvm/IR/LLVMContext.h"
19 #include "llvm/IR/Module.h"
20 #include "llvm/IRReader/IRReader.h"
21 #include "llvm/Support/CommandLine.h"
22 #include "llvm/Support/ManagedStatic.h"
23 #include "llvm/Support/Path.h"
24 #include "llvm/Support/PrettyStackTrace.h"
25 #include "llvm/Support/Signals.h"
26 #include "llvm/Support/SourceMgr.h"
27 #include "llvm/Support/SystemUtils.h"
28 #include "llvm/Support/ToolOutputFile.h"
29 #include <memory>
30 using namespace llvm;
31
32 static cl::list<std::string>
33 InputFilenames(cl::Positional, cl::OneOrMore,
34                cl::desc("<input bitcode files>"));
35
36 static cl::opt<std::string>
37 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
38                cl::value_desc("filename"));
39
40 static cl::opt<bool>
41 Force("f", cl::desc("Enable binary output on terminals"));
42
43 static cl::opt<bool>
44 OutputAssembly("S",
45          cl::desc("Write output as LLVM assembly"), cl::Hidden);
46
47 static cl::opt<bool>
48 Verbose("v", cl::desc("Print information about actions taken"));
49
50 static cl::opt<bool>
51 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
52
53 // LoadFile - Read the specified bitcode file in and return it.  This routine
54 // searches the link path for the specified file to try to find it...
55 //
56 static inline std::auto_ptr<Module> LoadFile(const char *argv0,
57                                              const std::string &FN, 
58                                              LLVMContext& Context) {
59   sys::Path Filename;
60   if (!Filename.set(FN)) {
61     errs() << "Invalid file name: '" << FN << "'\n";
62     return std::auto_ptr<Module>();
63   }
64
65   SMDiagnostic Err;
66   if (Verbose) errs() << "Loading '" << Filename.c_str() << "'\n";
67   Module* Result = 0;
68   
69   const std::string &FNStr = Filename.str();
70   Result = ParseIRFile(FNStr, Err, Context);
71   if (Result) return std::auto_ptr<Module>(Result);   // Load successful!
72
73   Err.print(argv0, errs());
74   return std::auto_ptr<Module>();
75 }
76
77 int main(int argc, char **argv) {
78   // Print a stack trace if we signal out.
79   sys::PrintStackTraceOnErrorSignal();
80   PrettyStackTraceProgram X(argc, argv);
81   
82   LLVMContext &Context = getGlobalContext();
83   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
84   cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
85
86   unsigned BaseArg = 0;
87   std::string ErrorMessage;
88
89   std::auto_ptr<Module> Composite(LoadFile(argv[0],
90                                            InputFilenames[BaseArg], Context));
91   if (Composite.get() == 0) {
92     errs() << 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(argv[0],
99                                      InputFilenames[i], Context));
100     if (M.get() == 0) {
101       errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
102       return 1;
103     }
104
105     if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n";
106
107     if (Linker::LinkModules(Composite.get(), M.get(), Linker::DestroySource,
108                             &ErrorMessage)) {
109       errs() << argv[0] << ": link error in '" << InputFilenames[i]
110              << "': " << ErrorMessage << "\n";
111       return 1;
112     }
113   }
114
115   if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
116
117   std::string ErrorInfo;
118   tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
119                        raw_fd_ostream::F_Binary);
120   if (!ErrorInfo.empty()) {
121     errs() << ErrorInfo << '\n';
122     return 1;
123   }
124
125   if (verifyModule(*Composite)) {
126     errs() << argv[0] << ": linked module is broken!\n";
127     return 1;
128   }
129
130   if (Verbose) errs() << "Writing bitcode...\n";
131   if (OutputAssembly) {
132     Out.os() << *Composite;
133   } else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
134     WriteBitcodeToFile(Composite.get(), Out.os());
135
136   // Declare success.
137   Out.keep();
138
139   return 0;
140 }