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