Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- llvm-link.cpp - Low-level LLVM linker ------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 5f5a573 | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 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" |
Owen Anderson | 25209b4 | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 16 | #include "llvm/LLVMContext.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 17 | #include "llvm/Module.h" |
| 18 | #include "llvm/Analysis/Verifier.h" |
| 19 | #include "llvm/Bitcode/ReaderWriter.h" |
| 20 | #include "llvm/Support/CommandLine.h" |
| 21 | #include "llvm/Support/ManagedStatic.h" |
| 22 | #include "llvm/Support/MemoryBuffer.h" |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 23 | #include "llvm/Support/PrettyStackTrace.h" |
Chris Lattner | b1aa85b | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Dan Gohman | 176426d | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 25 | #include "llvm/Support/SystemUtils.h" |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 26 | #include "llvm/Support/IRReader.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 27 | #include "llvm/System/Signals.h" |
| 28 | #include "llvm/System/Path.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 29 | #include <memory> |
| 30 | using namespace llvm; |
| 31 | |
| 32 | static cl::list<std::string> |
| 33 | InputFilenames(cl::Positional, cl::OneOrMore, |
| 34 | cl::desc("<input bitcode files>")); |
| 35 | |
| 36 | static cl::opt<std::string> |
| 37 | OutputFilename("o", cl::desc("Override output filename"), cl::init("-"), |
| 38 | cl::value_desc("filename")); |
| 39 | |
Dan Gohman | 176426d | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 40 | static cl::opt<bool> |
| 41 | Force("f", cl::desc("Enable binary output on terminals")); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 42 | |
| 43 | static cl::opt<bool> |
| 44 | Verbose("v", cl::desc("Print information about actions taken")); |
| 45 | |
| 46 | static cl::opt<bool> |
| 47 | DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden); |
| 48 | |
| 49 | // LoadFile - Read the specified bitcode file in and return it. This routine |
| 50 | // searches the link path for the specified file to try to find it... |
| 51 | // |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 52 | static inline std::auto_ptr<Module> LoadFile(const char *argv0, |
| 53 | const std::string &FN, |
Owen Anderson | 92adb18 | 2009-07-01 23:13:44 +0000 | [diff] [blame] | 54 | LLVMContext& Context) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 55 | sys::Path Filename; |
| 56 | if (!Filename.set(FN)) { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 57 | errs() << "Invalid file name: '" << FN << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 58 | return std::auto_ptr<Module>(); |
| 59 | } |
| 60 | |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 61 | SMDiagnostic Err; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 62 | if (Filename.exists()) { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 63 | if (Verbose) errs() << "Loading '" << Filename.c_str() << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 64 | Module* Result = 0; |
| 65 | |
Chris Lattner | b1aa85b | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 66 | const std::string &FNStr = Filename.str(); |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 67 | Result = ParseIRFile(FNStr, Err, Context); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 68 | if (Result) return std::auto_ptr<Module>(Result); // Load successful! |
| 69 | |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 70 | if (Verbose) |
| 71 | Err.Print(argv0, errs()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 72 | } else { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 73 | errs() << "Bitcode file: '" << Filename.c_str() << "' does not exist.\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | return std::auto_ptr<Module>(); |
| 77 | } |
| 78 | |
| 79 | int main(int argc, char **argv) { |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 80 | // Print a stack trace if we signal out. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 81 | sys::PrintStackTraceOnErrorSignal(); |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 82 | PrettyStackTraceProgram X(argc, argv); |
| 83 | |
Owen Anderson | e84b8b3 | 2009-07-15 22:16:10 +0000 | [diff] [blame] | 84 | LLVMContext &Context = getGlobalContext(); |
Chris Lattner | e6012df | 2009-03-06 05:34:10 +0000 | [diff] [blame] | 85 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 86 | cl::ParseCommandLineOptions(argc, argv, "llvm linker\n"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 87 | |
| 88 | unsigned BaseArg = 0; |
| 89 | std::string ErrorMessage; |
| 90 | |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 91 | std::auto_ptr<Module> Composite(LoadFile(argv[0], |
| 92 | InputFilenames[BaseArg], Context)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 93 | if (Composite.get() == 0) { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 94 | errs() << argv[0] << ": error loading file '" |
| 95 | << InputFilenames[BaseArg] << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 96 | return 1; |
| 97 | } |
| 98 | |
| 99 | for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) { |
Dan Gohman | 4f7a156 | 2009-09-12 21:55:12 +0000 | [diff] [blame] | 100 | std::auto_ptr<Module> M(LoadFile(argv[0], |
| 101 | InputFilenames[i], Context)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 102 | if (M.get() == 0) { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 103 | errs() << argv[0] << ": error loading file '" <<InputFilenames[i]<< "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 104 | return 1; |
| 105 | } |
| 106 | |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 107 | if (Verbose) errs() << "Linking in '" << InputFilenames[i] << "'\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 108 | |
| 109 | if (Linker::LinkModules(Composite.get(), M.get(), &ErrorMessage)) { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 110 | errs() << argv[0] << ": link error in '" << InputFilenames[i] |
| 111 | << "': " << ErrorMessage << "\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 112 | return 1; |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | // TODO: Iterate over the -l list and link in any modules containing |
| 117 | // global symbols that have not been resolved so far. |
| 118 | |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 119 | if (DumpAsm) errs() << "Here's the assembly:\n" << *Composite.get(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 4e95ea9 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 121 | std::string ErrorInfo; |
| 122 | std::auto_ptr<raw_ostream> |
| 123 | Out(new raw_fd_ostream(OutputFilename.c_str(), ErrorInfo, |
Dan Gohman | 176426d | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 124 | raw_fd_ostream::F_Binary)); |
Chris Lattner | 4e95ea9 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 125 | if (!ErrorInfo.empty()) { |
| 126 | errs() << ErrorInfo << '\n'; |
Chris Lattner | 4e95ea9 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 127 | return 1; |
| 128 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 129 | |
| 130 | // Make sure that the Out file gets unlinked from the disk if we get a |
| 131 | // SIGINT |
Chris Lattner | 4e95ea9 | 2009-08-23 02:56:05 +0000 | [diff] [blame] | 132 | if (OutputFilename != "-") |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 133 | sys::RemoveFileOnSignal(sys::Path(OutputFilename)); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 134 | |
| 135 | if (verifyModule(*Composite.get())) { |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 136 | errs() << argv[0] << ": linked module is broken!\n"; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 137 | return 1; |
| 138 | } |
| 139 | |
Dan Gohman | b714fab | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 140 | if (Verbose) errs() << "Writing bitcode...\n"; |
Dan Gohman | 176426d | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 141 | if (Force || !CheckBitcodeOutputToConsole(*Out, true)) |
| 142 | WriteBitcodeToFile(Composite.get(), *Out); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 143 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 144 | return 0; |
| 145 | } |