Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 1 | //===- lib/Linker/LinkItems.cpp - Link LLVM objects and libraries ---------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 10 | // This file contains routines to handle linking together LLVM bitcode files, |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 11 | // and to handle annoying things like static libraries. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Linker.h" |
| 16 | #include "llvm/Module.h" |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 17 | #include "llvm/Bitcode/ReaderWriter.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Path.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 19 | #include "llvm/Support/ErrorHandling.h" |
Reid Spencer | 53424ad | 2007-08-08 19:52:29 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MemoryBuffer.h" |
Michael J. Spencer | 333fb04 | 2010-12-09 17:36:48 +0000 | [diff] [blame] | 21 | #include "llvm/Support/system_error.h" |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 22 | using namespace llvm; |
| 23 | |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 24 | // LinkItems - This function is the main entry point into linking. It takes a |
| 25 | // list of LinkItem which indicates the order the files should be linked and |
| 26 | // how each file should be treated (plain file or with library search). The |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 27 | // function only links bitcode and produces a result list of items that are |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 28 | // native objects. |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 29 | bool |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 30 | Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) { |
| 31 | // Clear the NativeItems just in case |
| 32 | NativeItems.clear(); |
| 33 | |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 34 | // For each linkage item ... |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 35 | for (ItemList::const_iterator I = Items.begin(), E = Items.end(); |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 36 | I != E; ++I) { |
| 37 | if (I->second) { |
| 38 | // Link in the library suggested. |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 39 | bool is_native = false; |
| 40 | if (LinkInLibrary(I->first, is_native)) |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 41 | return true; |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 42 | if (is_native) |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 43 | NativeItems.push_back(*I); |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 44 | } else { |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 45 | // Link in the file suggested |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 46 | bool is_native = false; |
| 47 | if (LinkInFile(sys::Path(I->first), is_native)) |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 48 | return true; |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 49 | if (is_native) |
| 50 | NativeItems.push_back(*I); |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 51 | } |
| 52 | } |
| 53 | |
| 54 | // At this point we have processed all the link items provided to us. Since |
| 55 | // we have an aggregated module at this point, the dependent libraries in |
| 56 | // that module should also be aggregated with duplicates eliminated. This is |
| 57 | // now the time to process the dependent libraries to resolve any remaining |
| 58 | // symbols. |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 59 | bool is_native; |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 60 | for (Module::lib_iterator I = Composite->lib_begin(), |
Reid Spencer | 126b1b8 | 2007-04-30 00:00:10 +0000 | [diff] [blame] | 61 | E = Composite->lib_end(); I != E; ++I) { |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 62 | if(LinkInLibrary(*I, is_native)) |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 63 | return true; |
Reid Spencer | 126b1b8 | 2007-04-30 00:00:10 +0000 | [diff] [blame] | 64 | if (is_native) |
| 65 | NativeItems.push_back(std::make_pair(*I, true)); |
| 66 | } |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 67 | |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 68 | return false; |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 69 | } |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 70 | |
| 71 | |
| 72 | /// LinkInLibrary - links one library into the HeadModule. |
| 73 | /// |
Daniel Dunbar | 2928c83 | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 74 | bool Linker::LinkInLibrary(StringRef Lib, bool& is_native) { |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 75 | is_native = false; |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 76 | // Determine where this library lives. |
| 77 | sys::Path Pathname = FindLib(Lib); |
| 78 | if (Pathname.isEmpty()) |
Daniel Dunbar | 92ccf70 | 2009-07-25 06:02:13 +0000 | [diff] [blame] | 79 | return error("Cannot find library '" + Lib.str() + "'"); |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 80 | |
| 81 | // If its an archive, try to link it in |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 82 | std::string Magic; |
| 83 | Pathname.getMagicNumber(Magic, 64); |
| 84 | switch (sys::IdentifyFileType(Magic.c_str(), 64)) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 85 | default: llvm_unreachable("Bad file type identification"); |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 86 | case sys::Unknown_FileType: |
Daniel Dunbar | 92ccf70 | 2009-07-25 06:02:13 +0000 | [diff] [blame] | 87 | return warning("Supposed library '" + Lib.str() + "' isn't a library."); |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 88 | |
Chris Lattner | 1a019e5 | 2007-05-06 06:02:13 +0000 | [diff] [blame] | 89 | case sys::Bitcode_FileType: |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 90 | // LLVM ".so" file. |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 91 | if (LinkInFile(Pathname, is_native)) |
Reid Spencer | 49068bf | 2007-08-16 07:47:30 +0000 | [diff] [blame] | 92 | return true; |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 93 | break; |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 94 | |
| 95 | case sys::Archive_FileType: |
Reid Spencer | c9a83e4 | 2007-04-30 00:29:39 +0000 | [diff] [blame] | 96 | if (LinkInArchive(Pathname, is_native)) |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 97 | return error("Cannot link archive '" + Pathname.str() + "'"); |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 98 | break; |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 99 | |
Reid Spencer | 18da072 | 2007-04-11 02:44:20 +0000 | [diff] [blame] | 100 | case sys::ELF_Relocatable_FileType: |
| 101 | case sys::ELF_SharedObject_FileType: |
| 102 | case sys::Mach_O_Object_FileType: |
| 103 | case sys::Mach_O_FixedVirtualMemorySharedLib_FileType: |
| 104 | case sys::Mach_O_DynamicallyLinkedSharedLib_FileType: |
| 105 | case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType: |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 106 | case sys::COFF_FileType: |
| 107 | is_native = true; |
| 108 | break; |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 109 | } |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | /// LinkLibraries - takes the specified library files and links them into the |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 114 | /// main bitcode object file. |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 115 | /// |
| 116 | /// Inputs: |
| 117 | /// Libraries - The list of libraries to link into the module. |
| 118 | /// |
| 119 | /// Return value: |
| 120 | /// FALSE - No error. |
| 121 | /// TRUE - Error. |
| 122 | /// |
| 123 | bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) { |
| 124 | |
| 125 | // Process the set of libraries we've been provided. |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 126 | bool is_native = false; |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 127 | for (unsigned i = 0; i < Libraries.size(); ++i) |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 128 | if (LinkInLibrary(Libraries[i], is_native)) |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 129 | return true; |
| 130 | |
| 131 | // At this point we have processed all the libraries provided to us. Since |
| 132 | // we have an aggregated module at this point, the dependent libraries in |
| 133 | // that module should also be aggregated with duplicates eliminated. This is |
| 134 | // now the time to process the dependent libraries to resolve any remaining |
| 135 | // symbols. |
| 136 | const Module::LibraryListType& DepLibs = Composite->getLibraries(); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 137 | for (Module::LibraryListType::const_iterator I = DepLibs.begin(), |
| 138 | E = DepLibs.end(); I != E; ++I) |
Reid Spencer | c07cfdd | 2007-04-04 06:44:18 +0000 | [diff] [blame] | 139 | if (LinkInLibrary(*I, is_native)) |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 140 | return true; |
| 141 | |
| 142 | return false; |
| 143 | } |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 144 | |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 145 | /// LinkInFile - opens a bitcode file and links in all objects which |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 146 | /// provide symbols that are currently undefined. |
| 147 | /// |
| 148 | /// Inputs: |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 149 | /// File - The pathname of the bitcode file. |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 150 | /// |
| 151 | /// Outputs: |
| 152 | /// ErrorMessage - A C++ string detailing what error occurred, if any. |
| 153 | /// |
| 154 | /// Return Value: |
| 155 | /// TRUE - An error occurred. |
| 156 | /// FALSE - No errors. |
| 157 | /// |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 158 | bool Linker::LinkInFile(const sys::Path &File, bool &is_native) { |
| 159 | is_native = false; |
Reid Spencer | 53424ad | 2007-08-08 19:52:29 +0000 | [diff] [blame] | 160 | |
| 161 | // Check for a file of name "-", which means "read standard input" |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 162 | if (File.str() == "-") { |
Reid Spencer | 53424ad | 2007-08-08 19:52:29 +0000 | [diff] [blame] | 163 | std::auto_ptr<Module> M; |
Michael J. Spencer | 3ff9563 | 2010-12-16 03:29:14 +0000 | [diff] [blame] | 164 | OwningPtr<MemoryBuffer> Buffer; |
Michael J. Spencer | 333fb04 | 2010-12-09 17:36:48 +0000 | [diff] [blame] | 165 | error_code ec; |
Michael J. Spencer | 3ff9563 | 2010-12-16 03:29:14 +0000 | [diff] [blame] | 166 | if (!(ec = MemoryBuffer::getSTDIN(Buffer))) { |
Dan Gohman | 30377e7 | 2010-05-27 17:31:51 +0000 | [diff] [blame] | 167 | if (!Buffer->getBufferSize()) { |
Dan Gohman | 30377e7 | 2010-05-27 17:31:51 +0000 | [diff] [blame] | 168 | Error = "standard input is empty"; |
| 169 | } else { |
Michael J. Spencer | 3ff9563 | 2010-12-16 03:29:14 +0000 | [diff] [blame] | 170 | M.reset(ParseBitcodeFile(Buffer.get(), Context, &Error)); |
Dan Gohman | 30377e7 | 2010-05-27 17:31:51 +0000 | [diff] [blame] | 171 | if (M.get()) |
| 172 | if (!LinkInModule(M.get(), &Error)) |
| 173 | return false; |
| 174 | } |
Daniel Dunbar | d65267e | 2009-11-10 00:43:58 +0000 | [diff] [blame] | 175 | } |
Michael J. Spencer | 333fb04 | 2010-12-09 17:36:48 +0000 | [diff] [blame] | 176 | return error("Cannot link stdin: " + ec.message()); |
Reid Spencer | 53424ad | 2007-08-08 19:52:29 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Dan Gohman | 95131fc | 2010-05-27 17:18:38 +0000 | [diff] [blame] | 179 | // Determine what variety of file it is. |
| 180 | std::string Magic; |
| 181 | if (!File.getMagicNumber(Magic, 64)) |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 182 | return error("Cannot find linker input '" + File.str() + "'"); |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 183 | |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 184 | switch (sys::IdentifyFileType(Magic.c_str(), 64)) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 185 | default: llvm_unreachable("Bad file type identification"); |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 186 | case sys::Unknown_FileType: |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 187 | return warning("Ignoring file '" + File.str() + |
Reid Spencer | 49068bf | 2007-08-16 07:47:30 +0000 | [diff] [blame] | 188 | "' because does not contain bitcode."); |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 189 | |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 190 | case sys::Archive_FileType: |
| 191 | // A user may specify an ar archive without -l, perhaps because it |
| 192 | // is not installed as a library. Detect that and link the archive. |
Reid Spencer | c9a83e4 | 2007-04-30 00:29:39 +0000 | [diff] [blame] | 193 | if (LinkInArchive(File, is_native)) |
Reid Spencer | 49068bf | 2007-08-16 07:47:30 +0000 | [diff] [blame] | 194 | return true; |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 195 | break; |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 196 | |
Gabor Greif | e75ca3d | 2007-07-06 13:38:17 +0000 | [diff] [blame] | 197 | case sys::Bitcode_FileType: { |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 198 | verbose("Linking bitcode file '" + File.str() + "'"); |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 199 | std::auto_ptr<Module> M(LoadObject(File)); |
| 200 | if (M.get() == 0) |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 201 | return error("Cannot load file '" + File.str() + "': " + Error); |
Reid Spencer | af11dc0 | 2007-08-16 07:23:37 +0000 | [diff] [blame] | 202 | if (LinkInModule(M.get(), &Error)) |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 203 | return error("Cannot link file '" + File.str() + "': " + Error); |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 204 | |
Chris Lattner | 74382b7 | 2009-08-23 22:45:37 +0000 | [diff] [blame] | 205 | verbose("Linked in file '" + File.str() + "'"); |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 206 | break; |
| 207 | } |
| 208 | |
Reid Spencer | 18da072 | 2007-04-11 02:44:20 +0000 | [diff] [blame] | 209 | case sys::ELF_Relocatable_FileType: |
| 210 | case sys::ELF_SharedObject_FileType: |
| 211 | case sys::Mach_O_Object_FileType: |
| 212 | case sys::Mach_O_FixedVirtualMemorySharedLib_FileType: |
| 213 | case sys::Mach_O_DynamicallyLinkedSharedLib_FileType: |
| 214 | case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType: |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 215 | case sys::COFF_FileType: |
| 216 | is_native = true; |
| 217 | break; |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 218 | } |
| 219 | return false; |
| 220 | } |
| 221 | |
| 222 | /// LinkFiles - takes a module and a list of files and links them all together. |
| 223 | /// It locates the file either in the current directory, as its absolute |
| 224 | /// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH. |
| 225 | /// |
| 226 | /// Inputs: |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 227 | /// Files - A vector of sys::Path indicating the LLVM bitcode filenames |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 228 | /// to be linked. The names can refer to a mixture of pure LLVM |
Gabor Greif | a99be51 | 2007-07-05 17:07:56 +0000 | [diff] [blame] | 229 | /// bitcode files and archive (ar) formatted files. |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 230 | /// |
| 231 | /// Return value: |
| 232 | /// FALSE - No errors. |
| 233 | /// TRUE - Some error occurred. |
| 234 | /// |
| 235 | bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) { |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 236 | bool is_native; |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 237 | for (unsigned i = 0; i < Files.size(); ++i) |
Reid Spencer | c853973 | 2007-04-04 06:33:17 +0000 | [diff] [blame] | 238 | if (LinkInFile(Files[i], is_native)) |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 239 | return true; |
| 240 | return false; |
| 241 | } |