blob: 3cf1f6bd8cdb8de966139a3fbf42edb1e449a65c [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 Spencere84de292004-12-13 02:59:52 +000017
Reid Spencer4bdf1c92004-12-05 19:14:55 +000018using namespace llvm;
19
Reid Spencerf4484f32006-01-10 03:14:40 +000020// 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
Gabor Greifa99be512007-07-05 17:07:56 +000023// function only links bitcode and produces a result list of items that are
Reid Spencerf4484f32006-01-10 03:14:40 +000024// native objects.
Reid Spencere84de292004-12-13 02:59:52 +000025bool
Reid Spencerf4484f32006-01-10 03:14:40 +000026Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) {
27 // Clear the NativeItems just in case
28 NativeItems.clear();
29
Reid Spencer4bdf1c92004-12-05 19:14:55 +000030 // For each linkage item ...
Misha Brukmanf976c852005-04-21 22:55:34 +000031 for (ItemList::const_iterator I = Items.begin(), E = Items.end();
Reid Spencer4bdf1c92004-12-05 19:14:55 +000032 I != E; ++I) {
33 if (I->second) {
34 // Link in the library suggested.
Reid Spencerc07cfdd2007-04-04 06:44:18 +000035 bool is_native = false;
36 if (LinkInLibrary(I->first, is_native))
Reid Spencere84de292004-12-13 02:59:52 +000037 return true;
Reid Spencerc07cfdd2007-04-04 06:44:18 +000038 if (is_native)
Reid Spencerf4484f32006-01-10 03:14:40 +000039 NativeItems.push_back(*I);
Reid Spencer4bdf1c92004-12-05 19:14:55 +000040 } else {
Reid Spencerf4484f32006-01-10 03:14:40 +000041 // Link in the file suggested
Reid Spencerc8539732007-04-04 06:33:17 +000042 bool is_native = false;
43 if (LinkInFile(sys::Path(I->first), is_native))
Reid Spencere84de292004-12-13 02:59:52 +000044 return true;
Reid Spencerc8539732007-04-04 06:33:17 +000045 if (is_native)
46 NativeItems.push_back(*I);
Reid Spencer4bdf1c92004-12-05 19:14:55 +000047 }
48 }
49
50 // At this point we have processed all the link items provided to us. Since
51 // we have an aggregated module at this point, the dependent libraries in
52 // that module should also be aggregated with duplicates eliminated. This is
53 // now the time to process the dependent libraries to resolve any remaining
54 // symbols.
Reid Spencerc07cfdd2007-04-04 06:44:18 +000055 bool is_native;
Misha Brukmanf976c852005-04-21 22:55:34 +000056 for (Module::lib_iterator I = Composite->lib_begin(),
Reid Spencer126b1b82007-04-30 00:00:10 +000057 E = Composite->lib_end(); I != E; ++I) {
Reid Spencerc07cfdd2007-04-04 06:44:18 +000058 if(LinkInLibrary(*I, is_native))
Reid Spencere84de292004-12-13 02:59:52 +000059 return true;
Reid Spencer126b1b82007-04-30 00:00:10 +000060 if (is_native)
61 NativeItems.push_back(std::make_pair(*I, true));
62 }
Reid Spencer4bdf1c92004-12-05 19:14:55 +000063
Reid Spencere84de292004-12-13 02:59:52 +000064 return false;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000065}
Chris Lattnerad988f32005-03-15 22:51:40 +000066
67
68/// LinkInLibrary - links one library into the HeadModule.
69///
Reid Spencerc8539732007-04-04 06:33:17 +000070bool Linker::LinkInLibrary(const std::string& Lib, bool& is_native) {
71 is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +000072 // Determine where this library lives.
73 sys::Path Pathname = FindLib(Lib);
74 if (Pathname.isEmpty())
75 return warning("Cannot find library '" + Lib + "'");
76
77 // If its an archive, try to link it in
Reid Spencerf4484f32006-01-10 03:14:40 +000078 std::string Magic;
79 Pathname.getMagicNumber(Magic, 64);
80 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Reid Spencerc8539732007-04-04 06:33:17 +000081 default: assert(0 && "Bad file type identification");
82 case sys::Unknown_FileType:
83 return warning("Supposed library '" + Lib + "' isn't a library.");
84
Chris Lattner1a019e52007-05-06 06:02:13 +000085 case sys::Bitcode_FileType:
Reid Spencerf4484f32006-01-10 03:14:40 +000086 // LLVM ".so" file.
Reid Spencerc8539732007-04-04 06:33:17 +000087 if (LinkInFile(Pathname, is_native))
Reid Spencerf4484f32006-01-10 03:14:40 +000088 return error("Cannot link file '" + Pathname.toString() + "'");
Reid Spencerf4484f32006-01-10 03:14:40 +000089 break;
Reid Spencerc8539732007-04-04 06:33:17 +000090
91 case sys::Archive_FileType:
Reid Spencerc9a83e42007-04-30 00:29:39 +000092 if (LinkInArchive(Pathname, is_native))
Reid Spencerf4484f32006-01-10 03:14:40 +000093 return error("Cannot link archive '" + Pathname.toString() + "'");
94 break;
Reid Spencerc8539732007-04-04 06:33:17 +000095
Reid Spencer18da0722007-04-11 02:44:20 +000096 case sys::ELF_Relocatable_FileType:
97 case sys::ELF_SharedObject_FileType:
98 case sys::Mach_O_Object_FileType:
99 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
100 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
101 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000102 case sys::COFF_FileType:
103 is_native = true;
104 break;
Chris Lattnerad988f32005-03-15 22:51:40 +0000105 }
106 return false;
107}
108
109/// LinkLibraries - takes the specified library files and links them into the
Gabor Greifa99be512007-07-05 17:07:56 +0000110/// main bitcode object file.
Chris Lattnerad988f32005-03-15 22:51:40 +0000111///
112/// Inputs:
113/// Libraries - The list of libraries to link into the module.
114///
115/// Return value:
116/// FALSE - No error.
117/// TRUE - Error.
118///
119bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
120
121 // Process the set of libraries we've been provided.
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000122 bool is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +0000123 for (unsigned i = 0; i < Libraries.size(); ++i)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000124 if (LinkInLibrary(Libraries[i], is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000125 return true;
126
127 // At this point we have processed all the libraries provided to us. Since
128 // we have an aggregated module at this point, the dependent libraries in
129 // that module should also be aggregated with duplicates eliminated. This is
130 // now the time to process the dependent libraries to resolve any remaining
131 // symbols.
132 const Module::LibraryListType& DepLibs = Composite->getLibraries();
Misha Brukmanf976c852005-04-21 22:55:34 +0000133 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
134 E = DepLibs.end(); I != E; ++I)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000135 if (LinkInLibrary(*I, is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000136 return true;
137
138 return false;
139}
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000140
Gabor Greifa99be512007-07-05 17:07:56 +0000141/// LinkInFile - opens a bitcode file and links in all objects which
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000142/// provide symbols that are currently undefined.
143///
144/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000145/// File - The pathname of the bitcode file.
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000146///
147/// Outputs:
148/// ErrorMessage - A C++ string detailing what error occurred, if any.
149///
150/// Return Value:
151/// TRUE - An error occurred.
152/// FALSE - No errors.
153///
Reid Spencerc8539732007-04-04 06:33:17 +0000154bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
155 is_native = false;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000156 // Make sure we can at least read the file
Reid Spencerc7f08322005-07-07 18:21:42 +0000157 if (!File.canRead())
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000158 return error("Cannot find linker input '" + File.toString() + "'");
159
Reid Spencerc8539732007-04-04 06:33:17 +0000160 // If its an archive, try to link it in
161 std::string Magic;
162 File.getMagicNumber(Magic, 64);
163 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
164 default: assert(0 && "Bad file type identification");
165 case sys::Unknown_FileType:
166 return warning("Supposed object file '" + File.toString() +
167 "' not recognized as such");
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000168
Reid Spencerc8539732007-04-04 06:33:17 +0000169 case sys::Archive_FileType:
170 // A user may specify an ar archive without -l, perhaps because it
171 // is not installed as a library. Detect that and link the archive.
172 verbose("Linking archive file '" + File.toString() + "'");
Reid Spencerc9a83e42007-04-30 00:29:39 +0000173 if (LinkInArchive(File, is_native))
Reid Spencerc8539732007-04-04 06:33:17 +0000174 return error("Cannot link archive '" + File.toString() + "'");
175 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000176
Gabor Greife75ca3d2007-07-06 13:38:17 +0000177 case sys::Bitcode_FileType: {
Gabor Greifa99be512007-07-05 17:07:56 +0000178 verbose("Linking bitcode file '" + File.toString() + "'");
Reid Spencerc8539732007-04-04 06:33:17 +0000179 std::auto_ptr<Module> M(LoadObject(File));
180 if (M.get() == 0)
181 return error("Cannot load file '" + File.toString() + "'" + Error);
182 if (LinkInModule(M.get()))
183 return error("Cannot link file '" + File.toString() + "'" + Error);
184
185 verbose("Linked in file '" + File.toString() + "'");
186 break;
187 }
188
Reid Spencer18da0722007-04-11 02:44:20 +0000189 case sys::ELF_Relocatable_FileType:
190 case sys::ELF_SharedObject_FileType:
191 case sys::Mach_O_Object_FileType:
192 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
193 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
194 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000195 case sys::COFF_FileType:
196 is_native = true;
197 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000198 }
199 return false;
200}
201
202/// LinkFiles - takes a module and a list of files and links them all together.
203/// It locates the file either in the current directory, as its absolute
204/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
205///
206/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000207/// Files - A vector of sys::Path indicating the LLVM bitcode filenames
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000208/// to be linked. The names can refer to a mixture of pure LLVM
Gabor Greifa99be512007-07-05 17:07:56 +0000209/// bitcode files and archive (ar) formatted files.
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000210///
211/// Return value:
212/// FALSE - No errors.
213/// TRUE - Some error occurred.
214///
215bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
Reid Spencerc8539732007-04-04 06:33:17 +0000216 bool is_native;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000217 for (unsigned i = 0; i < Files.size(); ++i)
Reid Spencerc8539732007-04-04 06:33:17 +0000218 if (LinkInFile(Files[i], is_native))
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000219 return true;
220 return false;
221}