blob: 83665cc1758e5e562aca0bdb5338b4aa45812668 [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"
Chris Lattnera55c4b12003-08-28 16:25:34 +000016#include "llvm/Analysis/Verifier.h"
Chris Lattnerc48e1db2007-05-06 05:13:17 +000017#include "llvm/Bitcode/ReaderWriter.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000018#include "llvm/IR/LLVMContext.h"
19#include "llvm/IR/Module.h"
Chandler Carruth7fc162f2013-03-26 02:25:37 +000020#include "llvm/IRReader/IRReader.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000021#include "llvm/Support/CommandLine.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000022#include "llvm/Support/ManagedStatic.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000023#include "llvm/Support/Path.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000024#include "llvm/Support/PrettyStackTrace.h"
25#include "llvm/Support/Signals.h"
Chandler Carruth7fc162f2013-03-26 02:25:37 +000026#include "llvm/Support/SourceMgr.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000027#include "llvm/Support/SystemUtils.h"
28#include "llvm/Support/ToolOutputFile.h"
Chris Lattner075a0b72001-10-13 07:06:23 +000029#include <memory>
Brian Gaeked0fde302003-11-11 22:41:34 +000030using namespace llvm;
31
Chris Lattner5ff62e92002-07-22 02:10:13 +000032static cl::list<std::string>
33InputFilenames(cl::Positional, cl::OneOrMore,
Gabor Greifa99be512007-07-05 17:07:56 +000034 cl::desc("<input bitcode files>"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000035
36static cl::opt<std::string>
37OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
38 cl::value_desc("filename"));
39
Dan Gohmanbaa26392009-08-25 15:34:52 +000040static cl::opt<bool>
41Force("f", cl::desc("Enable binary output on terminals"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000042
43static cl::opt<bool>
Dan Gohmana93f30e2009-09-15 15:35:07 +000044OutputAssembly("S",
45 cl::desc("Write output as LLVM assembly"), cl::Hidden);
46
47static cl::opt<bool>
Chris Lattner5ff62e92002-07-22 02:10:13 +000048Verbose("v", cl::desc("Print information about actions taken"));
49
50static cl::opt<bool>
51DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
52
Gabor Greifa99be512007-07-05 17:07:56 +000053// LoadFile - Read the specified bitcode file in and return it. This routine
Reid Spencerdccc01e2004-09-12 23:39:42 +000054// searches the link path for the specified file to try to find it...
55//
Benjamin Kramer3389e102013-04-12 12:13:51 +000056static inline std::auto_ptr<Module> LoadFile(const char *argv0,
57 const std::string &FN,
58 LLVMContext& Context) {
Reid Spencerdccc01e2004-09-12 23:39:42 +000059 sys::Path Filename;
Reid Spencerdd04df02005-07-07 23:21:43 +000060 if (!Filename.set(FN)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +000061 errs() << "Invalid file name: '" << FN << "'\n";
Benjamin Kramer3389e102013-04-12 12:13:51 +000062 return std::auto_ptr<Module>();
Reid Spencerdccc01e2004-09-12 23:39:42 +000063 }
Chris Lattner952d3652001-12-08 20:31:32 +000064
Dan Gohmand6241542009-09-12 21:55:12 +000065 SMDiagnostic Err;
Dan Gohmand27047f2010-05-27 20:51:54 +000066 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);
Benjamin Kramer3389e102013-04-12 12:13:51 +000071 if (Result) return std::auto_ptr<Module>(Result); // Load successful!
Reid Spencer6939f812004-09-11 04:32:42 +000072
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000073 Err.print(argv0, errs());
Benjamin Kramer3389e102013-04-12 12:13:51 +000074 return std::auto_ptr<Module>();
Chris Lattner65be3212001-10-24 06:23:00 +000075}
Chris Lattner075a0b72001-10-13 07:06:23 +000076
77int main(int argc, char **argv) {
Chris Lattnercc14d252009-03-06 05:34:10 +000078 // Print a stack trace if we signal out.
Chris Lattnerc48e1db2007-05-06 05:13:17 +000079 sys::PrintStackTraceOnErrorSignal();
Chris Lattnercc14d252009-03-06 05:34:10 +000080 PrettyStackTraceProgram X(argc, argv);
81
Owen Anderson0d7c6952009-07-15 22:16:10 +000082 LLVMContext &Context = getGlobalContext();
Chris Lattnercc14d252009-03-06 05:34:10 +000083 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
84 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Chris Lattner075a0b72001-10-13 07:06:23 +000085
Chris Lattnerc48e1db2007-05-06 05:13:17 +000086 unsigned BaseArg = 0;
87 std::string ErrorMessage;
Chris Lattner65be3212001-10-24 06:23:00 +000088
Benjamin Kramer3389e102013-04-12 12:13:51 +000089 std::auto_ptr<Module> Composite(LoadFile(argv[0],
90 InputFilenames[BaseArg], Context));
Chris Lattnerc48e1db2007-05-06 05:13:17 +000091 if (Composite.get() == 0) {
Dan Gohmanac95cc72009-07-16 15:30:09 +000092 errs() << argv[0] << ": error loading file '"
93 << InputFilenames[BaseArg] << "'\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +000094 return 1;
95 }
96
97 for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
Benjamin Kramer3389e102013-04-12 12:13:51 +000098 std::auto_ptr<Module> M(LoadFile(argv[0],
99 InputFilenames[i], Context));
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000100 if (M.get() == 0) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000101 errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
Chris Lattner48f44cf2004-09-27 16:41:01 +0000102 return 1;
103 }
Chris Lattnerb81adf12001-10-23 20:44:55 +0000104
Dan Gohmanac95cc72009-07-16 15:30:09 +0000105 if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n";
Chris Lattnerb81adf12001-10-23 20:44:55 +0000106
Tanya Lattnerf1f1a4f2011-10-11 00:24:54 +0000107 if (Linker::LinkModules(Composite.get(), M.get(), Linker::DestroySource,
108 &ErrorMessage)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000109 errs() << argv[0] << ": link error in '" << InputFilenames[i]
110 << "': " << ErrorMessage << "\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000111 return 1;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000112 }
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000113 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000114
Dan Gohmana93f30e2009-09-15 15:35:07 +0000115 if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000116
Chris Lattner51a11322009-08-23 02:56:05 +0000117 std::string ErrorInfo;
Dan Gohman2df95042010-08-20 01:12:13 +0000118 tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
119 raw_fd_ostream::F_Binary);
Chris Lattner51a11322009-08-23 02:56:05 +0000120 if (!ErrorInfo.empty()) {
121 errs() << ErrorInfo << '\n';
Chris Lattner51a11322009-08-23 02:56:05 +0000122 return 1;
123 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000124
Dan Gohmana93f30e2009-09-15 15:35:07 +0000125 if (verifyModule(*Composite)) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000126 errs() << argv[0] << ": linked module is broken!\n";
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000127 return 1;
128 }
129
Dan Gohmanac95cc72009-07-16 15:30:09 +0000130 if (Verbose) errs() << "Writing bitcode...\n";
Dan Gohmana93f30e2009-09-15 15:35:07 +0000131 if (OutputAssembly) {
Dan Gohmand4c45432010-09-01 14:20:41 +0000132 Out.os() << *Composite;
133 } else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
134 WriteBitcodeToFile(Composite.get(), Out.os());
Dan Gohman2df95042010-08-20 01:12:13 +0000135
136 // Declare success.
137 Out.keep();
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000138
Chris Lattnerc48e1db2007-05-06 05:13:17 +0000139 return 0;
Chris Lattner075a0b72001-10-13 07:06:23 +0000140}