Don't use PathV1.h in Signals.h.
[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/PathV1.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 // LoadFile - Read the specified bitcode file in and return it.  This routine
55 // searches the link path for the specified file to try to find it...
56 //
57 static inline Module *LoadFile(const char *argv0, 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 NULL;
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 Result;   // Load successful!
72
73   Err.print(argv0, errs());
74   return NULL;
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   OwningPtr<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   Linker L(Composite.get());
98   for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
99     OwningPtr<Module> M(LoadFile(argv[0], 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 (L.linkInModule(M.get(), &ErrorMessage)) {
108       errs() << argv[0] << ": link error in '" << InputFilenames[i]
109              << "': " << ErrorMessage << "\n";
110       return 1;
111     }
112   }
113
114   if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
115
116   std::string ErrorInfo;
117   tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
118                        raw_fd_ostream::F_Binary);
119   if (!ErrorInfo.empty()) {
120     errs() << ErrorInfo << '\n';
121     return 1;
122   }
123
124   if (verifyModule(*Composite)) {
125     errs() << argv[0] << ": linked module is broken!\n";
126     return 1;
127   }
128
129   if (Verbose) errs() << "Writing bitcode...\n";
130   if (OutputAssembly) {
131     Out.os() << *Composite;
132   } else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
133     WriteBitcodeToFile(Composite.get(), Out.os());
134
135   // Declare success.
136   Out.keep();
137
138   return 0;
139 }