blob: ad0ccd2e3c11595f731b139dfa73f577b10104d3 [file] [log] [blame]
Reid Spencer4bdf1c92004-12-05 19:14:55 +00001//===- lib/Linker/LinkItems.cpp - Link LLVM objects and libraries ---------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
Reid Spencer4bdf1c92004-12-05 19:14:55 +00003// The LLVM Compiler Infrastructure
4//
Misha Brukmanf976c852005-04-21 22:55:34 +00005// This file was developed by Reid Spencer and is distributed under the
Reid Spencer4bdf1c92004-12-05 19:14:55 +00006// University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
Reid Spencer4bdf1c92004-12-05 19:14:55 +00008//===----------------------------------------------------------------------===//
9//
Gabor Greifa99be512007-07-05 17:07:56 +000010// This file contains routines to handle linking together LLVM bitcode files,
Reid Spencer4bdf1c92004-12-05 19:14:55 +000011// and to handle annoying things like static libraries.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Linker.h"
16#include "llvm/Module.h"
Reid Spencer53424ad2007-08-08 19:52:29 +000017#include "llvm/Support/MemoryBuffer.h"
18#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencere84de292004-12-13 02:59:52 +000019
Reid Spencer4bdf1c92004-12-05 19:14:55 +000020using namespace llvm;
21
Reid Spencerf4484f32006-01-10 03:14:40 +000022// 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 Greifa99be512007-07-05 17:07:56 +000025// function only links bitcode and produces a result list of items that are
Reid Spencerf4484f32006-01-10 03:14:40 +000026// native objects.
Reid Spencere84de292004-12-13 02:59:52 +000027bool
Reid Spencerf4484f32006-01-10 03:14:40 +000028Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) {
29 // Clear the NativeItems just in case
30 NativeItems.clear();
31
Reid Spencer4bdf1c92004-12-05 19:14:55 +000032 // For each linkage item ...
Misha Brukmanf976c852005-04-21 22:55:34 +000033 for (ItemList::const_iterator I = Items.begin(), E = Items.end();
Reid Spencer4bdf1c92004-12-05 19:14:55 +000034 I != E; ++I) {
35 if (I->second) {
36 // Link in the library suggested.
Reid Spencerc07cfdd2007-04-04 06:44:18 +000037 bool is_native = false;
38 if (LinkInLibrary(I->first, is_native))
Reid Spencere84de292004-12-13 02:59:52 +000039 return true;
Reid Spencerc07cfdd2007-04-04 06:44:18 +000040 if (is_native)
Reid Spencerf4484f32006-01-10 03:14:40 +000041 NativeItems.push_back(*I);
Reid Spencer4bdf1c92004-12-05 19:14:55 +000042 } else {
Reid Spencerf4484f32006-01-10 03:14:40 +000043 // Link in the file suggested
Reid Spencerc8539732007-04-04 06:33:17 +000044 bool is_native = false;
45 if (LinkInFile(sys::Path(I->first), is_native))
Reid Spencere84de292004-12-13 02:59:52 +000046 return true;
Reid Spencerc8539732007-04-04 06:33:17 +000047 if (is_native)
48 NativeItems.push_back(*I);
Reid Spencer4bdf1c92004-12-05 19:14:55 +000049 }
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 Spencerc07cfdd2007-04-04 06:44:18 +000057 bool is_native;
Misha Brukmanf976c852005-04-21 22:55:34 +000058 for (Module::lib_iterator I = Composite->lib_begin(),
Reid Spencer126b1b82007-04-30 00:00:10 +000059 E = Composite->lib_end(); I != E; ++I) {
Reid Spencerc07cfdd2007-04-04 06:44:18 +000060 if(LinkInLibrary(*I, is_native))
Reid Spencere84de292004-12-13 02:59:52 +000061 return true;
Reid Spencer126b1b82007-04-30 00:00:10 +000062 if (is_native)
63 NativeItems.push_back(std::make_pair(*I, true));
64 }
Reid Spencer4bdf1c92004-12-05 19:14:55 +000065
Reid Spencere84de292004-12-13 02:59:52 +000066 return false;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000067}
Chris Lattnerad988f32005-03-15 22:51:40 +000068
69
70/// LinkInLibrary - links one library into the HeadModule.
71///
Reid Spencerc8539732007-04-04 06:33:17 +000072bool Linker::LinkInLibrary(const std::string& Lib, bool& is_native) {
73 is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +000074 // Determine where this library lives.
75 sys::Path Pathname = FindLib(Lib);
76 if (Pathname.isEmpty())
77 return warning("Cannot find library '" + Lib + "'");
78
79 // If its an archive, try to link it in
Reid Spencerf4484f32006-01-10 03:14:40 +000080 std::string Magic;
81 Pathname.getMagicNumber(Magic, 64);
82 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Reid Spencerc8539732007-04-04 06:33:17 +000083 default: assert(0 && "Bad file type identification");
84 case sys::Unknown_FileType:
85 return warning("Supposed library '" + Lib + "' isn't a library.");
86
Chris Lattner1a019e52007-05-06 06:02:13 +000087 case sys::Bitcode_FileType:
Reid Spencerf4484f32006-01-10 03:14:40 +000088 // LLVM ".so" file.
Reid Spencerc8539732007-04-04 06:33:17 +000089 if (LinkInFile(Pathname, is_native))
Reid Spencerf4484f32006-01-10 03:14:40 +000090 return error("Cannot link file '" + Pathname.toString() + "'");
Reid Spencerf4484f32006-01-10 03:14:40 +000091 break;
Reid Spencerc8539732007-04-04 06:33:17 +000092
93 case sys::Archive_FileType:
Reid Spencerc9a83e42007-04-30 00:29:39 +000094 if (LinkInArchive(Pathname, is_native))
Reid Spencerf4484f32006-01-10 03:14:40 +000095 return error("Cannot link archive '" + Pathname.toString() + "'");
96 break;
Reid Spencerc8539732007-04-04 06:33:17 +000097
Reid Spencer18da0722007-04-11 02:44:20 +000098 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 Spencerc8539732007-04-04 06:33:17 +0000104 case sys::COFF_FileType:
105 is_native = true;
106 break;
Chris Lattnerad988f32005-03-15 22:51:40 +0000107 }
108 return false;
109}
110
111/// LinkLibraries - takes the specified library files and links them into the
Gabor Greifa99be512007-07-05 17:07:56 +0000112/// main bitcode object file.
Chris Lattnerad988f32005-03-15 22:51:40 +0000113///
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///
121bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
122
123 // Process the set of libraries we've been provided.
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000124 bool is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +0000125 for (unsigned i = 0; i < Libraries.size(); ++i)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000126 if (LinkInLibrary(Libraries[i], is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000127 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 Brukmanf976c852005-04-21 22:55:34 +0000135 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
136 E = DepLibs.end(); I != E; ++I)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000137 if (LinkInLibrary(*I, is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000138 return true;
139
140 return false;
141}
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000142
Gabor Greifa99be512007-07-05 17:07:56 +0000143/// LinkInFile - opens a bitcode file and links in all objects which
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000144/// provide symbols that are currently undefined.
145///
146/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000147/// File - The pathname of the bitcode file.
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000148///
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 Spencerc8539732007-04-04 06:33:17 +0000156bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
157 is_native = false;
Reid Spencer53424ad2007-08-08 19:52:29 +0000158
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()) {
163 M.reset(ParseBitcodeFile(Buffer, &Error));
164 delete Buffer;
165 if (!LinkInModule(M.get()))
166 return false;
167 } else
168 Error = "standard input is empty";
169 return error("Cannot link stdin: " + Error);
170 }
171
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000172 // Make sure we can at least read the file
Reid Spencerc7f08322005-07-07 18:21:42 +0000173 if (!File.canRead())
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000174 return error("Cannot find linker input '" + File.toString() + "'");
175
Reid Spencerc8539732007-04-04 06:33:17 +0000176 // If its an archive, try to link it in
177 std::string Magic;
178 File.getMagicNumber(Magic, 64);
179 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
180 default: assert(0 && "Bad file type identification");
181 case sys::Unknown_FileType:
182 return warning("Supposed object file '" + File.toString() +
183 "' not recognized as such");
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000184
Reid Spencerc8539732007-04-04 06:33:17 +0000185 case sys::Archive_FileType:
186 // A user may specify an ar archive without -l, perhaps because it
187 // is not installed as a library. Detect that and link the archive.
188 verbose("Linking archive file '" + File.toString() + "'");
Reid Spencerc9a83e42007-04-30 00:29:39 +0000189 if (LinkInArchive(File, is_native))
Reid Spencerc8539732007-04-04 06:33:17 +0000190 return error("Cannot link archive '" + File.toString() + "'");
191 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000192
Gabor Greife75ca3d2007-07-06 13:38:17 +0000193 case sys::Bitcode_FileType: {
Gabor Greifa99be512007-07-05 17:07:56 +0000194 verbose("Linking bitcode file '" + File.toString() + "'");
Reid Spencerc8539732007-04-04 06:33:17 +0000195 std::auto_ptr<Module> M(LoadObject(File));
196 if (M.get() == 0)
197 return error("Cannot load file '" + File.toString() + "'" + Error);
198 if (LinkInModule(M.get()))
199 return error("Cannot link file '" + File.toString() + "'" + Error);
200
201 verbose("Linked in file '" + File.toString() + "'");
202 break;
203 }
204
Reid Spencer18da0722007-04-11 02:44:20 +0000205 case sys::ELF_Relocatable_FileType:
206 case sys::ELF_SharedObject_FileType:
207 case sys::Mach_O_Object_FileType:
208 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
209 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
210 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000211 case sys::COFF_FileType:
212 is_native = true;
213 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000214 }
215 return false;
216}
217
218/// LinkFiles - takes a module and a list of files and links them all together.
219/// It locates the file either in the current directory, as its absolute
220/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
221///
222/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000223/// Files - A vector of sys::Path indicating the LLVM bitcode filenames
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000224/// to be linked. The names can refer to a mixture of pure LLVM
Gabor Greifa99be512007-07-05 17:07:56 +0000225/// bitcode files and archive (ar) formatted files.
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000226///
227/// Return value:
228/// FALSE - No errors.
229/// TRUE - Some error occurred.
230///
231bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
Reid Spencerc8539732007-04-04 06:33:17 +0000232 bool is_native;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000233 for (unsigned i = 0; i < Files.size(); ++i)
Reid Spencerc8539732007-04-04 06:33:17 +0000234 if (LinkInFile(Files[i], is_native))
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000235 return true;
236 return false;
237}