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