blob: 7716b61a79456b118560e63d70b837c113c97709 [file] [log] [blame]
Reid Spencer1014afc2004-12-05 19:14:55 +00001//===- lib/Linker/LinkItems.cpp - Link LLVM objects and libraries ---------===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Reid Spencer1014afc2004-12-05 19:14:55 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Reid Spencer1014afc2004-12-05 19:14:55 +00008//===----------------------------------------------------------------------===//
9//
Gabor Greife16561c2007-07-05 17:07:56 +000010// This file contains routines to handle linking together LLVM bitcode files,
Reid Spencer1014afc2004-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"
Chris Lattnerc521f542009-08-23 22:45:37 +000017#include "llvm/Bitcode/ReaderWriter.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000018#include "llvm/Support/Path.h"
Torok Edwin56d06592009-07-11 20:10:48 +000019#include "llvm/Support/ErrorHandling.h"
Reid Spencer8609c062007-08-08 19:52:29 +000020#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer7b6fef82010-12-09 17:36:48 +000021#include "llvm/Support/system_error.h"
Reid Spencer1014afc2004-12-05 19:14:55 +000022using namespace llvm;
23
Reid Spencer5995c572006-01-10 03:14:40 +000024// 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 Greife16561c2007-07-05 17:07:56 +000027// function only links bitcode and produces a result list of items that are
Reid Spencer5995c572006-01-10 03:14:40 +000028// native objects.
Reid Spencerebd3d9f2004-12-13 02:59:52 +000029bool
Reid Spencer5995c572006-01-10 03:14:40 +000030Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) {
31 // Clear the NativeItems just in case
32 NativeItems.clear();
33
Reid Spencer1014afc2004-12-05 19:14:55 +000034 // For each linkage item ...
Misha Brukman10468d82005-04-21 22:55:34 +000035 for (ItemList::const_iterator I = Items.begin(), E = Items.end();
Reid Spencer1014afc2004-12-05 19:14:55 +000036 I != E; ++I) {
37 if (I->second) {
38 // Link in the library suggested.
Reid Spencerd1b53f52007-04-04 06:44:18 +000039 bool is_native = false;
40 if (LinkInLibrary(I->first, is_native))
Reid Spencerebd3d9f2004-12-13 02:59:52 +000041 return true;
Reid Spencerd1b53f52007-04-04 06:44:18 +000042 if (is_native)
Reid Spencer5995c572006-01-10 03:14:40 +000043 NativeItems.push_back(*I);
Reid Spencer1014afc2004-12-05 19:14:55 +000044 } else {
Reid Spencer5995c572006-01-10 03:14:40 +000045 // Link in the file suggested
Reid Spencera2c41552007-04-04 06:33:17 +000046 bool is_native = false;
47 if (LinkInFile(sys::Path(I->first), is_native))
Reid Spencerebd3d9f2004-12-13 02:59:52 +000048 return true;
Reid Spencera2c41552007-04-04 06:33:17 +000049 if (is_native)
50 NativeItems.push_back(*I);
Reid Spencer1014afc2004-12-05 19:14:55 +000051 }
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 Spencerd1b53f52007-04-04 06:44:18 +000059 bool is_native;
Misha Brukman10468d82005-04-21 22:55:34 +000060 for (Module::lib_iterator I = Composite->lib_begin(),
Reid Spencerd857ef62007-04-30 00:00:10 +000061 E = Composite->lib_end(); I != E; ++I) {
Reid Spencerd1b53f52007-04-04 06:44:18 +000062 if(LinkInLibrary(*I, is_native))
Reid Spencerebd3d9f2004-12-13 02:59:52 +000063 return true;
Reid Spencerd857ef62007-04-30 00:00:10 +000064 if (is_native)
65 NativeItems.push_back(std::make_pair(*I, true));
66 }
Reid Spencer1014afc2004-12-05 19:14:55 +000067
Reid Spencerebd3d9f2004-12-13 02:59:52 +000068 return false;
Reid Spencer1014afc2004-12-05 19:14:55 +000069}
Chris Lattnerd3d086d2005-03-15 22:51:40 +000070
71
72/// LinkInLibrary - links one library into the HeadModule.
73///
Daniel Dunbarad36e8a2009-11-06 10:58:06 +000074bool Linker::LinkInLibrary(StringRef Lib, bool& is_native) {
Reid Spencera2c41552007-04-04 06:33:17 +000075 is_native = false;
Chris Lattnerd3d086d2005-03-15 22:51:40 +000076 // Determine where this library lives.
77 sys::Path Pathname = FindLib(Lib);
78 if (Pathname.isEmpty())
Daniel Dunbard43b86d2009-07-25 06:02:13 +000079 return error("Cannot find library '" + Lib.str() + "'");
Chris Lattnerd3d086d2005-03-15 22:51:40 +000080
81 // If its an archive, try to link it in
Reid Spencer5995c572006-01-10 03:14:40 +000082 std::string Magic;
83 Pathname.getMagicNumber(Magic, 64);
84 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Torok Edwinfbcc6632009-07-14 16:55:14 +000085 default: llvm_unreachable("Bad file type identification");
Reid Spencera2c41552007-04-04 06:33:17 +000086 case sys::Unknown_FileType:
Daniel Dunbard43b86d2009-07-25 06:02:13 +000087 return warning("Supposed library '" + Lib.str() + "' isn't a library.");
Reid Spencera2c41552007-04-04 06:33:17 +000088
Chris Lattnera0e5f012007-05-06 06:02:13 +000089 case sys::Bitcode_FileType:
Reid Spencer5995c572006-01-10 03:14:40 +000090 // LLVM ".so" file.
Reid Spencera2c41552007-04-04 06:33:17 +000091 if (LinkInFile(Pathname, is_native))
Reid Spencer19c21c52007-08-16 07:47:30 +000092 return true;
Reid Spencer5995c572006-01-10 03:14:40 +000093 break;
Reid Spencera2c41552007-04-04 06:33:17 +000094
95 case sys::Archive_FileType:
Reid Spencer8d4ff902007-04-30 00:29:39 +000096 if (LinkInArchive(Pathname, is_native))
Chris Lattnerc521f542009-08-23 22:45:37 +000097 return error("Cannot link archive '" + Pathname.str() + "'");
Reid Spencer5995c572006-01-10 03:14:40 +000098 break;
Reid Spencera2c41552007-04-04 06:33:17 +000099
Reid Spencera472f662007-04-11 02:44:20 +0000100 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 Spencera2c41552007-04-04 06:33:17 +0000106 case sys::COFF_FileType:
107 is_native = true;
108 break;
Chris Lattnerd3d086d2005-03-15 22:51:40 +0000109 }
110 return false;
111}
112
113/// LinkLibraries - takes the specified library files and links them into the
Gabor Greife16561c2007-07-05 17:07:56 +0000114/// main bitcode object file.
Chris Lattnerd3d086d2005-03-15 22:51:40 +0000115///
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///
123bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
124
125 // Process the set of libraries we've been provided.
Reid Spencerd1b53f52007-04-04 06:44:18 +0000126 bool is_native = false;
Chris Lattnerd3d086d2005-03-15 22:51:40 +0000127 for (unsigned i = 0; i < Libraries.size(); ++i)
Reid Spencerd1b53f52007-04-04 06:44:18 +0000128 if (LinkInLibrary(Libraries[i], is_native))
Chris Lattnerd3d086d2005-03-15 22:51:40 +0000129 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 Brukman10468d82005-04-21 22:55:34 +0000137 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
138 E = DepLibs.end(); I != E; ++I)
Reid Spencerd1b53f52007-04-04 06:44:18 +0000139 if (LinkInLibrary(*I, is_native))
Chris Lattnerd3d086d2005-03-15 22:51:40 +0000140 return true;
141
142 return false;
143}
Chris Lattnerebaf1782005-03-15 22:55:17 +0000144
Gabor Greife16561c2007-07-05 17:07:56 +0000145/// LinkInFile - opens a bitcode file and links in all objects which
Chris Lattnerebaf1782005-03-15 22:55:17 +0000146/// provide symbols that are currently undefined.
147///
148/// Inputs:
Gabor Greife16561c2007-07-05 17:07:56 +0000149/// File - The pathname of the bitcode file.
Chris Lattnerebaf1782005-03-15 22:55:17 +0000150///
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 Spencera2c41552007-04-04 06:33:17 +0000158bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
159 is_native = false;
Reid Spencer8609c062007-08-08 19:52:29 +0000160
161 // Check for a file of name "-", which means "read standard input"
Chris Lattnerc521f542009-08-23 22:45:37 +0000162 if (File.str() == "-") {
Reid Spencer8609c062007-08-08 19:52:29 +0000163 std::auto_ptr<Module> M;
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000164 error_code ec;
165 if (MemoryBuffer *Buffer = MemoryBuffer::getSTDIN(ec)) {
Dan Gohmanc36b1f32010-05-27 17:31:51 +0000166 if (!Buffer->getBufferSize()) {
167 delete Buffer;
168 Error = "standard input is empty";
169 } else {
170 M.reset(ParseBitcodeFile(Buffer, Context, &Error));
171 delete Buffer;
172 if (M.get())
173 if (!LinkInModule(M.get(), &Error))
174 return false;
175 }
Daniel Dunbar124fc5e2009-11-10 00:43:58 +0000176 }
Michael J. Spencer7b6fef82010-12-09 17:36:48 +0000177 return error("Cannot link stdin: " + ec.message());
Reid Spencer8609c062007-08-08 19:52:29 +0000178 }
179
Dan Gohmanece4bf52010-05-27 17:18:38 +0000180 // Determine what variety of file it is.
181 std::string Magic;
182 if (!File.getMagicNumber(Magic, 64))
Chris Lattnerc521f542009-08-23 22:45:37 +0000183 return error("Cannot find linker input '" + File.str() + "'");
Chris Lattnerebaf1782005-03-15 22:55:17 +0000184
Reid Spencera2c41552007-04-04 06:33:17 +0000185 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000186 default: llvm_unreachable("Bad file type identification");
Reid Spencera2c41552007-04-04 06:33:17 +0000187 case sys::Unknown_FileType:
Chris Lattnerc521f542009-08-23 22:45:37 +0000188 return warning("Ignoring file '" + File.str() +
Reid Spencer19c21c52007-08-16 07:47:30 +0000189 "' because does not contain bitcode.");
Chris Lattnerebaf1782005-03-15 22:55:17 +0000190
Reid Spencera2c41552007-04-04 06:33:17 +0000191 case sys::Archive_FileType:
192 // A user may specify an ar archive without -l, perhaps because it
193 // is not installed as a library. Detect that and link the archive.
Reid Spencer8d4ff902007-04-30 00:29:39 +0000194 if (LinkInArchive(File, is_native))
Reid Spencer19c21c52007-08-16 07:47:30 +0000195 return true;
Reid Spencera2c41552007-04-04 06:33:17 +0000196 break;
Chris Lattnerebaf1782005-03-15 22:55:17 +0000197
Gabor Greif3d3fc322007-07-06 13:38:17 +0000198 case sys::Bitcode_FileType: {
Chris Lattnerc521f542009-08-23 22:45:37 +0000199 verbose("Linking bitcode file '" + File.str() + "'");
Reid Spencera2c41552007-04-04 06:33:17 +0000200 std::auto_ptr<Module> M(LoadObject(File));
201 if (M.get() == 0)
Chris Lattnerc521f542009-08-23 22:45:37 +0000202 return error("Cannot load file '" + File.str() + "': " + Error);
Reid Spencere97fee72007-08-16 07:23:37 +0000203 if (LinkInModule(M.get(), &Error))
Chris Lattnerc521f542009-08-23 22:45:37 +0000204 return error("Cannot link file '" + File.str() + "': " + Error);
Reid Spencera2c41552007-04-04 06:33:17 +0000205
Chris Lattnerc521f542009-08-23 22:45:37 +0000206 verbose("Linked in file '" + File.str() + "'");
Reid Spencera2c41552007-04-04 06:33:17 +0000207 break;
208 }
209
Reid Spencera472f662007-04-11 02:44:20 +0000210 case sys::ELF_Relocatable_FileType:
211 case sys::ELF_SharedObject_FileType:
212 case sys::Mach_O_Object_FileType:
213 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
214 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
215 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencera2c41552007-04-04 06:33:17 +0000216 case sys::COFF_FileType:
217 is_native = true;
218 break;
Chris Lattnerebaf1782005-03-15 22:55:17 +0000219 }
220 return false;
221}
222
223/// LinkFiles - takes a module and a list of files and links them all together.
224/// It locates the file either in the current directory, as its absolute
225/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
226///
227/// Inputs:
Gabor Greife16561c2007-07-05 17:07:56 +0000228/// Files - A vector of sys::Path indicating the LLVM bitcode filenames
Chris Lattnerebaf1782005-03-15 22:55:17 +0000229/// to be linked. The names can refer to a mixture of pure LLVM
Gabor Greife16561c2007-07-05 17:07:56 +0000230/// bitcode files and archive (ar) formatted files.
Chris Lattnerebaf1782005-03-15 22:55:17 +0000231///
232/// Return value:
233/// FALSE - No errors.
234/// TRUE - Some error occurred.
235///
236bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
Reid Spencera2c41552007-04-04 06:33:17 +0000237 bool is_native;
Chris Lattnerebaf1782005-03-15 22:55:17 +0000238 for (unsigned i = 0; i < Files.size(); ++i)
Reid Spencera2c41552007-04-04 06:33:17 +0000239 if (LinkInFile(Files[i], is_native))
Chris Lattnerebaf1782005-03-15 22:55:17 +0000240 return true;
241 return false;
242}