2003-09-20 02:42:54 +00:00
|
|
|
//===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-13 07:06:23 +00:00
|
|
|
//
|
|
|
|
// This utility may be invoked in the following manner:
|
2003-09-15 18:34:34 +00:00
|
|
|
// llvm-link a.bc b.bc c.bc -o x.bc
|
2001-10-13 07:06:23 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-03-06 03:42:23 +00:00
|
|
|
#include "llvm/Linker/Linker.h"
|
2007-05-06 05:13:17 +00:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2014-01-13 09:26:24 +00:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2013-03-26 02:25:37 +00:00
|
|
|
#include "llvm/IRReader/IRReader.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2014-04-29 23:26:49 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/Path.h"
|
2009-03-06 05:34:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2013-03-26 02:25:37 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/SystemUtils.h"
|
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2001-10-13 07:06:23 +00:00
|
|
|
#include <memory>
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
static cl::list<std::string>
|
|
|
|
InputFilenames(cl::Positional, cl::OneOrMore,
|
2007-07-05 17:07:56 +00:00
|
|
|
cl::desc("<input bitcode files>"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
|
|
|
|
cl::value_desc("filename"));
|
|
|
|
|
2009-08-25 15:34:52 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
Force("f", cl::desc("Enable binary output on terminals"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2009-09-15 15:35:07 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
OutputAssembly("S",
|
|
|
|
cl::desc("Write output as LLVM assembly"), cl::Hidden);
|
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
Verbose("v", cl::desc("Print information about actions taken"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
|
|
|
|
|
2014-02-20 22:19:24 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
SuppressWarnings("suppress-warnings", cl::desc("Suppress all linking warnings"),
|
|
|
|
cl::init(false));
|
|
|
|
|
2007-07-05 17:07:56 +00:00
|
|
|
// LoadFile - Read the specified bitcode file in and return it. This routine
|
2004-09-12 23:39:42 +00:00
|
|
|
// searches the link path for the specified file to try to find it...
|
|
|
|
//
|
2013-04-15 12:06:32 +00:00
|
|
|
static inline Module *LoadFile(const char *argv0, const std::string &FN,
|
|
|
|
LLVMContext& Context) {
|
2009-09-12 21:55:12 +00:00
|
|
|
SMDiagnostic Err;
|
2013-06-17 17:32:19 +00:00
|
|
|
if (Verbose) errs() << "Loading '" << FN << "'\n";
|
2014-04-25 04:24:47 +00:00
|
|
|
Module* Result = nullptr;
|
2013-06-17 17:32:19 +00:00
|
|
|
|
|
|
|
Result = ParseIRFile(FN, Err, Context);
|
2013-04-15 12:06:32 +00:00
|
|
|
if (Result) return Result; // Load successful!
|
2001-10-24 06:23:00 +00:00
|
|
|
|
2011-10-16 04:47:35 +00:00
|
|
|
Err.print(argv0, errs());
|
2014-04-25 04:24:47 +00:00
|
|
|
return nullptr;
|
2001-10-24 06:23:00 +00:00
|
|
|
}
|
2001-10-13 07:06:23 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2009-03-06 05:34:10 +00:00
|
|
|
// Print a stack trace if we signal out.
|
2007-05-06 05:13:17 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2009-03-06 05:34:10 +00:00
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2013-09-18 23:31:10 +00:00
|
|
|
|
2009-07-15 22:16:10 +00:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2009-03-06 05:34:10 +00:00
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
|
2001-10-23 20:44:55 +00:00
|
|
|
|
2007-05-06 05:13:17 +00:00
|
|
|
unsigned BaseArg = 0;
|
|
|
|
std::string ErrorMessage;
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<Module> Composite(
|
|
|
|
LoadFile(argv[0], InputFilenames[BaseArg], Context));
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!Composite.get()) {
|
2009-07-16 15:30:09 +00:00
|
|
|
errs() << argv[0] << ": error loading file '"
|
|
|
|
<< InputFilenames[BaseArg] << "'\n";
|
2007-05-06 05:13:17 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2014-02-20 22:19:24 +00:00
|
|
|
Linker L(Composite.get(), SuppressWarnings);
|
2007-05-06 05:13:17 +00:00
|
|
|
for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<Module> M(LoadFile(argv[0], InputFilenames[i], Context));
|
2014-04-25 04:24:47 +00:00
|
|
|
if (!M.get()) {
|
2009-07-16 15:30:09 +00:00
|
|
|
errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n";
|
2007-05-06 05:13:17 +00:00
|
|
|
return 1;
|
2001-10-13 07:06:23 +00:00
|
|
|
}
|
2004-09-11 04:32:42 +00:00
|
|
|
|
2009-07-16 15:30:09 +00:00
|
|
|
if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n";
|
2007-05-06 05:13:17 +00:00
|
|
|
|
2013-05-04 05:30:49 +00:00
|
|
|
if (L.linkInModule(M.get(), &ErrorMessage)) {
|
2009-07-16 15:30:09 +00:00
|
|
|
errs() << argv[0] << ": link error in '" << InputFilenames[i]
|
|
|
|
<< "': " << ErrorMessage << "\n";
|
2007-05-06 05:13:17 +00:00
|
|
|
return 1;
|
2002-01-20 22:54:45 +00:00
|
|
|
}
|
2007-05-06 05:13:17 +00:00
|
|
|
}
|
|
|
|
|
2009-09-15 15:35:07 +00:00
|
|
|
if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite;
|
2007-05-06 05:13:17 +00:00
|
|
|
|
2009-08-23 02:56:05 +00:00
|
|
|
std::string ErrorInfo;
|
2014-02-24 18:20:12 +00:00
|
|
|
tool_output_file Out(OutputFilename.c_str(), ErrorInfo, sys::fs::F_None);
|
2009-08-23 02:56:05 +00:00
|
|
|
if (!ErrorInfo.empty()) {
|
|
|
|
errs() << ErrorInfo << '\n';
|
|
|
|
return 1;
|
|
|
|
}
|
2002-04-18 19:55:25 +00:00
|
|
|
|
2009-09-15 15:35:07 +00:00
|
|
|
if (verifyModule(*Composite)) {
|
2009-07-16 15:30:09 +00:00
|
|
|
errs() << argv[0] << ": linked module is broken!\n";
|
2007-05-06 05:13:17 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-07-16 15:30:09 +00:00
|
|
|
if (Verbose) errs() << "Writing bitcode...\n";
|
2009-09-15 15:35:07 +00:00
|
|
|
if (OutputAssembly) {
|
2010-09-01 14:20:41 +00:00
|
|
|
Out.os() << *Composite;
|
|
|
|
} else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
|
|
|
|
WriteBitcodeToFile(Composite.get(), Out.os());
|
2010-08-20 01:12:13 +00:00
|
|
|
|
|
|
|
// Declare success.
|
|
|
|
Out.keep();
|
2007-05-06 05:13:17 +00:00
|
|
|
|
|
|
|
return 0;
|
2001-10-13 07:06:23 +00:00
|
|
|
}
|