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