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 | // |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 5 | // This file was developed by Reid Spencer and is distributed under the |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 6 | // University of Illinois Open Source 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 | // |
| 10 | // This file contains routines to handle linking together LLVM bytecode files, |
| 11 | // and to handle annoying things like static libraries. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Linker.h" |
| 16 | #include "llvm/Module.h" |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 17 | |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 18 | using namespace llvm; |
| 19 | |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 20 | // LinkItems - This function is the main entry point into linking. It takes a |
| 21 | // list of LinkItem which indicates the order the files should be linked and |
| 22 | // how each file should be treated (plain file or with library search). The |
| 23 | // function only links bytecode and produces a result list of items that are |
| 24 | // native objects. |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 25 | bool |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 26 | Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) { |
| 27 | // Clear the NativeItems just in case |
| 28 | NativeItems.clear(); |
| 29 | |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 30 | // For each linkage item ... |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 31 | for (ItemList::const_iterator I = Items.begin(), E = Items.end(); |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 32 | I != E; ++I) { |
| 33 | if (I->second) { |
| 34 | // Link in the library suggested. |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 35 | bool is_file = true; |
| 36 | if (LinkInLibrary(I->first,is_file)) |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 37 | return true; |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 38 | if (!is_file) |
| 39 | NativeItems.push_back(*I); |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 40 | } else { |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 41 | // Link in the file suggested |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 42 | if (LinkInFile(sys::Path(I->first))) |
| 43 | return true; |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 44 | } |
| 45 | } |
| 46 | |
| 47 | // At this point we have processed all the link items provided to us. Since |
| 48 | // we have an aggregated module at this point, the dependent libraries in |
| 49 | // that module should also be aggregated with duplicates eliminated. This is |
| 50 | // now the time to process the dependent libraries to resolve any remaining |
| 51 | // symbols. |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 52 | bool is_bytecode; |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 53 | for (Module::lib_iterator I = Composite->lib_begin(), |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 54 | E = Composite->lib_end(); I != E; ++I) |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 55 | if(LinkInLibrary(*I, is_bytecode)) |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 56 | return true; |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 57 | |
Reid Spencer | e84de29 | 2004-12-13 02:59:52 +0000 | [diff] [blame] | 58 | return false; |
Reid Spencer | 4bdf1c9 | 2004-12-05 19:14:55 +0000 | [diff] [blame] | 59 | } |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 60 | |
| 61 | |
| 62 | /// LinkInLibrary - links one library into the HeadModule. |
| 63 | /// |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 64 | bool Linker::LinkInLibrary(const std::string& Lib, bool& is_file) { |
| 65 | is_file = false; |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 66 | // Determine where this library lives. |
| 67 | sys::Path Pathname = FindLib(Lib); |
| 68 | if (Pathname.isEmpty()) |
| 69 | return warning("Cannot find library '" + Lib + "'"); |
| 70 | |
| 71 | // If its an archive, try to link it in |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 72 | std::string Magic; |
| 73 | Pathname.getMagicNumber(Magic, 64); |
| 74 | switch (sys::IdentifyFileType(Magic.c_str(), 64)) { |
| 75 | case sys::BytecodeFileType: |
| 76 | case sys::CompressedBytecodeFileType: |
| 77 | // LLVM ".so" file. |
| 78 | if (LinkInFile(Pathname)) |
| 79 | return error("Cannot link file '" + Pathname.toString() + "'"); |
| 80 | is_file = true; |
| 81 | break; |
| 82 | case sys::ArchiveFileType: |
| 83 | if (LinkInArchive(Pathname)) |
| 84 | return error("Cannot link archive '" + Pathname.toString() + "'"); |
| 85 | break; |
| 86 | default: |
| 87 | return warning("Supposed library '" + Lib + "' isn't a library."); |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 88 | } |
| 89 | return false; |
| 90 | } |
| 91 | |
| 92 | /// LinkLibraries - takes the specified library files and links them into the |
| 93 | /// main bytecode object file. |
| 94 | /// |
| 95 | /// Inputs: |
| 96 | /// Libraries - The list of libraries to link into the module. |
| 97 | /// |
| 98 | /// Return value: |
| 99 | /// FALSE - No error. |
| 100 | /// TRUE - Error. |
| 101 | /// |
| 102 | bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) { |
| 103 | |
| 104 | // Process the set of libraries we've been provided. |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 105 | bool is_bytecode; |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 106 | for (unsigned i = 0; i < Libraries.size(); ++i) |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 107 | if (LinkInLibrary(Libraries[i], is_bytecode)) |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 108 | return true; |
| 109 | |
| 110 | // At this point we have processed all the libraries provided to us. Since |
| 111 | // we have an aggregated module at this point, the dependent libraries in |
| 112 | // that module should also be aggregated with duplicates eliminated. This is |
| 113 | // now the time to process the dependent libraries to resolve any remaining |
| 114 | // symbols. |
| 115 | const Module::LibraryListType& DepLibs = Composite->getLibraries(); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 116 | for (Module::LibraryListType::const_iterator I = DepLibs.begin(), |
| 117 | E = DepLibs.end(); I != E; ++I) |
Reid Spencer | f4484f3 | 2006-01-10 03:14:40 +0000 | [diff] [blame] | 118 | if (LinkInLibrary(*I, is_bytecode)) |
Chris Lattner | ad988f3 | 2005-03-15 22:51:40 +0000 | [diff] [blame] | 119 | return true; |
| 120 | |
| 121 | return false; |
| 122 | } |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 123 | |
| 124 | /// LinkInFile - opens a bytecode file and links in all objects which |
| 125 | /// provide symbols that are currently undefined. |
| 126 | /// |
| 127 | /// Inputs: |
| 128 | /// File - The pathname of the bytecode file. |
| 129 | /// |
| 130 | /// Outputs: |
| 131 | /// ErrorMessage - A C++ string detailing what error occurred, if any. |
| 132 | /// |
| 133 | /// Return Value: |
| 134 | /// TRUE - An error occurred. |
| 135 | /// FALSE - No errors. |
| 136 | /// |
| 137 | bool Linker::LinkInFile(const sys::Path &File) { |
| 138 | // Make sure we can at least read the file |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 139 | if (!File.canRead()) |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 140 | return error("Cannot find linker input '" + File.toString() + "'"); |
| 141 | |
| 142 | // A user may specify an ar archive without -l, perhaps because it |
| 143 | // is not installed as a library. Detect that and link the library. |
| 144 | if (File.isArchive()) { |
| 145 | if (LinkInArchive(File)) |
| 146 | return error("Cannot link archive '" + File.toString() + "'"); |
| 147 | } else if (File.isBytecodeFile()) { |
| 148 | verbose("Linking bytecode file '" + File.toString() + "'"); |
| 149 | |
| 150 | std::auto_ptr<Module> M(LoadObject(File)); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 151 | if (M.get() == 0) |
Chris Lattner | fc82ef6 | 2005-03-15 22:55:17 +0000 | [diff] [blame] | 152 | return error("Cannot load file '" + File.toString() + "'" + Error); |
| 153 | if (LinkInModule(M.get())) |
| 154 | return error("Cannot link file '" + File.toString() + "'" + Error); |
| 155 | |
| 156 | verbose("Linked in file '" + File.toString() + "'"); |
| 157 | } else { |
| 158 | return warning("File of unknown type '" + File.toString() + "' ignored."); |
| 159 | } |
| 160 | return false; |
| 161 | } |
| 162 | |
| 163 | /// LinkFiles - takes a module and a list of files and links them all together. |
| 164 | /// It locates the file either in the current directory, as its absolute |
| 165 | /// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH. |
| 166 | /// |
| 167 | /// Inputs: |
| 168 | /// Files - A vector of sys::Path indicating the LLVM bytecode filenames |
| 169 | /// to be linked. The names can refer to a mixture of pure LLVM |
| 170 | /// bytecode files and archive (ar) formatted files. |
| 171 | /// |
| 172 | /// Return value: |
| 173 | /// FALSE - No errors. |
| 174 | /// TRUE - Some error occurred. |
| 175 | /// |
| 176 | bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) { |
| 177 | for (unsigned i = 0; i < Files.size(); ++i) |
| 178 | if (LinkInFile(Files[i])) |
| 179 | return true; |
| 180 | return false; |
| 181 | } |