Invert the condition to have a single return.
[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     Err.print(argv0, errs());
68
69   return Result;
70 }
71
72 int main(int argc, char **argv) {
73   // Print a stack trace if we signal out.
74   sys::PrintStackTraceOnErrorSignal();
75   PrettyStackTraceProgram X(argc, argv);
76
77   LLVMContext &Context = getGlobalContext();
78   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
79   cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
80
81   unsigned BaseArg = 0;
82   std::string ErrorMessage;
83
84   std::unique_ptr<Module> Composite =
85       loadFile(argv[0], InputFilenames[BaseArg], Context);
86   if (!Composite.get()) {
87     errs() << argv[0] << ": error loading file '"
88            << InputFilenames[BaseArg] << "'\n";
89     return 1;
90   }
91
92   Linker L(Composite.get(), SuppressWarnings);
93   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
94     std::unique_ptr<Module> M = loadFile(argv[0], InputFilenames[i], Context);
95     if (!M.get()) {
96       errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
97       return 1;
98     }
99
100     if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n";
101
102     if (L.linkInModule(M.get(), &ErrorMessage)) {
103       errs() << argv[0] << ": link error in '" << InputFilenames[i]
104              << "': " << ErrorMessage << "\n";
105       return 1;
106     }
107   }
108
109   if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
110
111   std::error_code EC;
112   tool_output_file Out(OutputFilename, EC, sys::fs::F_None);
113   if (EC) {
114     errs() << EC.message() << '\n';
115     return 1;
116   }
117
118   if (verifyModule(*Composite)) {
119     errs() << argv[0] << ": linked module is broken!\n";
120     return 1;
121   }
122
123   if (Verbose) errs() << "Writing bitcode...\n";
124   if (OutputAssembly) {
125     Out.os() << *Composite;
126   } else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
127     WriteBitcodeToFile(Composite.get(), Out.os());
128
129   // Declare success.
130   Out.keep();
131
132   return 0;
133 }