blob: f7dad3da5f61b5d7ea4c0b96fbd321c7bf26b4d9 [file] [log] [blame]
Chris Lattnerbb37a692003-09-20 02:42:54 +00001//===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner075a0b72001-10-13 07:06:23 +00009//
10// This utility may be invoked in the following manner:
Misha Brukman3ef3beb2003-09-15 18:34:34 +000011// llvm-link a.bc b.bc c.bc -o x.bc
Chris Lattner075a0b72001-10-13 07:06:23 +000012//
13//===----------------------------------------------------------------------===//
14
Reid Spencer6bb69352004-11-14 23:25:32 +000015#include "llvm/Linker.h"
Owen Anderson8b477ed2009-07-01 16:58:40 +000016#include "llvm/LLVMContext.h"
Chris Lattnera55c4b12003-08-28 16:25:34 +000017#include "llvm/Module.h"
18#include "llvm/Analysis/Verifier.h"
Chris Lattnerc48e1db2007-05-06 05:13:17 +000019#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000020#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000021#include "llvm/Support/ManagedStatic.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000022#include "llvm/Support/PrettyStackTrace.h"
Chris Lattner74382b72009-08-23 22:45:37 +000023#include "llvm/Support/raw_ostream.h"
Dan Gohmanbaa26392009-08-25 15:34:52 +000024#include "llvm/Support/SystemUtils.h"
Dan Gohmand6241542009-09-12 21:55:12 +000025#include "llvm/Support/IRReader.h"
Chris Lattnerbed85ff2004-05-27 05:41:36 +000026#include "llvm/System/Signals.h"
Reid Spencer6939f812004-09-11 04:32:42 +000027#include "llvm/System/Path.h"
Chris Lattner075a0b72001-10-13 07:06:23 +000028#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000029using namespace llvm;
30
Chris Lattner5ff62e92002-07-22 02:10:13 +000031static cl::list<std::string>
32InputFilenames(cl::Positional, cl::OneOrMore,
Gabor Greifa99be512007-07-05 17:07:56 +000033 cl::desc("<input bitcode files>"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000034
35static cl::opt<std::string>
36OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
37 cl::value_desc("filename"));
38
Dan Gohmanbaa26392009-08-25 15:34:52 +000039static cl::opt<bool>
40Force("f", cl::desc("Enable binary output on terminals"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000041
42static cl::opt<bool>
Dan Gohmana93f30e2009-09-15 15:35:07 +000043OutputAssembly("S",
44 cl::desc("Write output as LLVM assembly"), cl::Hidden);
45
46static cl::opt<bool>
Chris Lattner5ff62e92002-07-22 02:10:13 +000047Verbose("v", cl::desc("Print information about actions taken"));
48
49static cl::opt<bool>
50DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
51
Gabor Greifa99be512007-07-05 17:07:56 +000052// LoadFile - Read the specified bitcode file in and return it. This routine
Reid Spencerdccc01e2004-09-12 23:39:42 +000053// searches the link path for the specified file to try to find it...
54//
Dan Gohmand6241542009-09-12 21:55:12 +000055static inline std::auto_ptr<Module> LoadFile(const char *argv0,
56 const std::string &FN,
Owen Anderson4434ed42009-07-01 23:13:44 +000057 LLVMContext& Context) {
Reid Spencerdccc01e2004-09-12 23:39:42 +000058 sys::Path Filename;
Reid Spencerdd04df02005-07-07 23:21:43 +000059 if (!Filename.set(FN)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +000060 errs() << "Invalid file name: '" << FN << "'\n";
Reid Spencerdccc01e2004-09-12 23:39:42 +000061 return std::auto_ptr<Module>();
62 }
Chris Lattner952d3652001-12-08 20:31:32 +000063
Dan Gohmand6241542009-09-12 21:55:12 +000064 SMDiagnostic Err;
Dan Gohmand27047f2010-05-27 20:51:54 +000065 if (Verbose) errs() << "Loading '" << Filename.c_str() << "'\n";
66 Module* Result = 0;
67
68 const std::string &FNStr = Filename.str();
69 Result = ParseIRFile(FNStr, Err, Context);
70 if (Result) return std::auto_ptr<Module>(Result); // Load successful!
Reid Spencer6939f812004-09-11 04:32:42 +000071
Dan Gohmand27047f2010-05-27 20:51:54 +000072 Err.Print(argv0, errs());
Chris Lattner65be3212001-10-24 06:23:00 +000073 return std::auto_ptr<Module>();
74}
Chris Lattner075a0b72001-10-13 07:06:23 +000075
76int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +000077 // Print a stack trace if we signal out.
Chris Lattnerc48e1db2007-05-06 05:13:17 +000078 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +000079 PrettyStackTraceProgram X(argc, argv);
80
Owen Anderson0d7c6952009-07-15 22:16:10 +000081 LLVMContext &Context = getGlobalContext();
Chris Lattnercc14d252009-03-06 05:34:10 +000082 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
83 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Chris Lattner075a0b72001-10-13 07:06:23 +000084
Chris Lattnerc48e1db2007-05-06 05:13:17 +000085 unsigned BaseArg = 0;
86 std::string ErrorMessage;
Chris Lattner65be3212001-10-24 06:23:00 +000087
Dan Gohmand6241542009-09-12 21:55:12 +000088 std::auto_ptr<Module> Composite(LoadFile(argv[0],
89 InputFilenames[BaseArg], Context));
Chris Lattnerc48e1db2007-05-06 05:13:17 +000090 if (Composite.get() == 0) {
Dan Gohmanac95cc72009-07-16 15:30:09 +000091 errs() << argv[0] << ": error loading file '"
92 << InputFilenames[BaseArg] << "'\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +000093 return 1;
94 }
95
96 for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
Dan Gohmand6241542009-09-12 21:55:12 +000097 std::auto_ptr<Module> M(LoadFile(argv[0],
98 InputFilenames[i], Context));
Chris Lattnerc48e1db2007-05-06 05:13:17 +000099 if (M.get() == 0) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000100 errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
Chris Lattner48f44cf2004-09-27 16:41:01 +0000101 return 1;
102 }
Chris Lattnerb81adf12001-10-23 20:44:55 +0000103
Dan Gohmanac95cc72009-07-16 15:30:09 +0000104 if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n";
Chris Lattnerb81adf12001-10-23 20:44:55 +0000105
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000106 if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000107 errs() << argv[0] << ": link error in '" << InputFilenames[i]
108 << "': " << ErrorMessage << "\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000109 return 1;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000110 }
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000111 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000112
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000113 // TODO: Iterate over the -l list and link in any modules containing
114 // global symbols that have not been resolved so far.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000115
Dan Gohmana93f30e2009-09-15 15:35:07 +0000116 if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000117
Chris Lattner51a11322009-08-23 02:56:05 +0000118 std::string ErrorInfo;
119 std::auto_ptr<raw_ostream>
120 Out(new raw_fd_ostream(OutputFilename.c_str(), ErrorInfo,
Dan Gohmanbaa26392009-08-25 15:34:52 +0000121 raw_fd_ostream::F_Binary));
Chris Lattner51a11322009-08-23 02:56:05 +0000122 if (!ErrorInfo.empty()) {
123 errs() << ErrorInfo << '\n';
Chris Lattner51a11322009-08-23 02:56:05 +0000124 return 1;
125 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000126
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000127 // Make sure that the Out file gets unlinked from the disk if we get a
128 // SIGINT
Chris Lattner51a11322009-08-23 02:56:05 +0000129 if (OutputFilename != "-")
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000130 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000131
Dan Gohmana93f30e2009-09-15 15:35:07 +0000132 if (verifyModule(*Composite)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000133 errs() << argv[0] << ": linked module is broken!\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000134 return 1;
135 }
136
Dan Gohmanac95cc72009-07-16 15:30:09 +0000137 if (Verbose) errs() << "Writing bitcode...\n";
Dan Gohmana93f30e2009-09-15 15:35:07 +0000138 if (OutputAssembly) {
139 *Out << *Composite;
140 } else if (Force || !CheckBitcodeOutputToConsole(*Out, true))
Dan Gohmanbaa26392009-08-25 15:34:52 +0000141 WriteBitcodeToFile(Composite.get(), *Out);
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000142
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000143 return 0;
Chris Lattner075a0b72001-10-13 07:06:23 +0000144}