blob: 1be2becc86c38a704422c980bee378a86f7c12b3 [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//
Chris Lattner4ee451d2007-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 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"
Chris Lattner74382b72009-08-23 22:45:37 +000017#include "llvm/Bitcode/ReaderWriter.h"
18#include "llvm/System/Path.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000019#include "llvm/Support/ErrorHandling.h"
Reid Spencer53424ad2007-08-08 19:52:29 +000020#include "llvm/Support/MemoryBuffer.h"
Reid Spencer4bdf1c92004-12-05 19:14:55 +000021using namespace llvm;
22
Reid Spencerf4484f32006-01-10 03:14:40 +000023// LinkItems - This function is the main entry point into linking. It takes a
24// list of LinkItem which indicates the order the files should be linked and
25// how each file should be treated (plain file or with library search). The
Gabor Greifa99be512007-07-05 17:07:56 +000026// function only links bitcode and produces a result list of items that are
Reid Spencerf4484f32006-01-10 03:14:40 +000027// native objects.
Reid Spencere84de292004-12-13 02:59:52 +000028bool
Reid Spencerf4484f32006-01-10 03:14:40 +000029Linker::LinkInItems(const ItemList& Items, ItemList& NativeItems) {
30 // Clear the NativeItems just in case
31 NativeItems.clear();
32
Reid Spencer4bdf1c92004-12-05 19:14:55 +000033 // For each linkage item ...
Misha Brukmanf976c852005-04-21 22:55:34 +000034 for (ItemList::const_iterator I = Items.begin(), E = Items.end();
Reid Spencer4bdf1c92004-12-05 19:14:55 +000035 I != E; ++I) {
36 if (I->second) {
37 // Link in the library suggested.
Reid Spencerc07cfdd2007-04-04 06:44:18 +000038 bool is_native = false;
39 if (LinkInLibrary(I->first, is_native))
Reid Spencere84de292004-12-13 02:59:52 +000040 return true;
Reid Spencerc07cfdd2007-04-04 06:44:18 +000041 if (is_native)
Reid Spencerf4484f32006-01-10 03:14:40 +000042 NativeItems.push_back(*I);
Reid Spencer4bdf1c92004-12-05 19:14:55 +000043 } else {
Reid Spencerf4484f32006-01-10 03:14:40 +000044 // Link in the file suggested
Reid Spencerc8539732007-04-04 06:33:17 +000045 bool is_native = false;
46 if (LinkInFile(sys::Path(I->first), is_native))
Reid Spencere84de292004-12-13 02:59:52 +000047 return true;
Reid Spencerc8539732007-04-04 06:33:17 +000048 if (is_native)
49 NativeItems.push_back(*I);
Reid Spencer4bdf1c92004-12-05 19:14:55 +000050 }
51 }
52
53 // At this point we have processed all the link items provided to us. Since
54 // we have an aggregated module at this point, the dependent libraries in
55 // that module should also be aggregated with duplicates eliminated. This is
56 // now the time to process the dependent libraries to resolve any remaining
57 // symbols.
Reid Spencerc07cfdd2007-04-04 06:44:18 +000058 bool is_native;
Misha Brukmanf976c852005-04-21 22:55:34 +000059 for (Module::lib_iterator I = Composite->lib_begin(),
Reid Spencer126b1b82007-04-30 00:00:10 +000060 E = Composite->lib_end(); I != E; ++I) {
Reid Spencerc07cfdd2007-04-04 06:44:18 +000061 if(LinkInLibrary(*I, is_native))
Reid Spencere84de292004-12-13 02:59:52 +000062 return true;
Reid Spencer126b1b82007-04-30 00:00:10 +000063 if (is_native)
64 NativeItems.push_back(std::make_pair(*I, true));
65 }
Reid Spencer4bdf1c92004-12-05 19:14:55 +000066
Reid Spencere84de292004-12-13 02:59:52 +000067 return false;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000068}
Chris Lattnerad988f32005-03-15 22:51:40 +000069
70
71/// LinkInLibrary - links one library into the HeadModule.
72///
Daniel Dunbar2928c832009-11-06 10:58:06 +000073bool Linker::LinkInLibrary(StringRef Lib, bool& is_native) {
Reid Spencerc8539732007-04-04 06:33:17 +000074 is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +000075 // Determine where this library lives.
76 sys::Path Pathname = FindLib(Lib);
77 if (Pathname.isEmpty())
Daniel Dunbar92ccf702009-07-25 06:02:13 +000078 return error("Cannot find library '" + Lib.str() + "'");
Chris Lattnerad988f32005-03-15 22:51:40 +000079
80 // If its an archive, try to link it in
Reid Spencerf4484f32006-01-10 03:14:40 +000081 std::string Magic;
82 Pathname.getMagicNumber(Magic, 64);
83 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Torok Edwinc23197a2009-07-14 16:55:14 +000084 default: llvm_unreachable("Bad file type identification");
Reid Spencerc8539732007-04-04 06:33:17 +000085 case sys::Unknown_FileType:
Daniel Dunbar92ccf702009-07-25 06:02:13 +000086 return warning("Supposed library '" + Lib.str() + "' isn't a library.");
Reid Spencerc8539732007-04-04 06:33:17 +000087
Chris Lattner1a019e52007-05-06 06:02:13 +000088 case sys::Bitcode_FileType:
Reid Spencerf4484f32006-01-10 03:14:40 +000089 // LLVM ".so" file.
Reid Spencerc8539732007-04-04 06:33:17 +000090 if (LinkInFile(Pathname, is_native))
Reid Spencer49068bf2007-08-16 07:47:30 +000091 return true;
Reid Spencerf4484f32006-01-10 03:14:40 +000092 break;
Reid Spencerc8539732007-04-04 06:33:17 +000093
94 case sys::Archive_FileType:
Reid Spencerc9a83e42007-04-30 00:29:39 +000095 if (LinkInArchive(Pathname, is_native))
Chris Lattner74382b72009-08-23 22:45:37 +000096 return error("Cannot link archive '" + Pathname.str() + "'");
Reid Spencerf4484f32006-01-10 03:14:40 +000097 break;
Reid Spencerc8539732007-04-04 06:33:17 +000098
Reid Spencer18da0722007-04-11 02:44:20 +000099 case sys::ELF_Relocatable_FileType:
100 case sys::ELF_SharedObject_FileType:
101 case sys::Mach_O_Object_FileType:
102 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
103 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
104 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000105 case sys::COFF_FileType:
106 is_native = true;
107 break;
Chris Lattnerad988f32005-03-15 22:51:40 +0000108 }
109 return false;
110}
111
112/// LinkLibraries - takes the specified library files and links them into the
Gabor Greifa99be512007-07-05 17:07:56 +0000113/// main bitcode object file.
Chris Lattnerad988f32005-03-15 22:51:40 +0000114///
115/// Inputs:
116/// Libraries - The list of libraries to link into the module.
117///
118/// Return value:
119/// FALSE - No error.
120/// TRUE - Error.
121///
122bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
123
124 // Process the set of libraries we've been provided.
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000125 bool is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +0000126 for (unsigned i = 0; i < Libraries.size(); ++i)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000127 if (LinkInLibrary(Libraries[i], is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000128 return true;
129
130 // At this point we have processed all the libraries provided to us. Since
131 // we have an aggregated module at this point, the dependent libraries in
132 // that module should also be aggregated with duplicates eliminated. This is
133 // now the time to process the dependent libraries to resolve any remaining
134 // symbols.
135 const Module::LibraryListType& DepLibs = Composite->getLibraries();
Misha Brukmanf976c852005-04-21 22:55:34 +0000136 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
137 E = DepLibs.end(); I != E; ++I)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000138 if (LinkInLibrary(*I, is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000139 return true;
140
141 return false;
142}
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000143
Gabor Greifa99be512007-07-05 17:07:56 +0000144/// LinkInFile - opens a bitcode file and links in all objects which
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000145/// provide symbols that are currently undefined.
146///
147/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000148/// File - The pathname of the bitcode file.
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000149///
150/// Outputs:
151/// ErrorMessage - A C++ string detailing what error occurred, if any.
152///
153/// Return Value:
154/// TRUE - An error occurred.
155/// FALSE - No errors.
156///
Reid Spencerc8539732007-04-04 06:33:17 +0000157bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
158 is_native = false;
Reid Spencer53424ad2007-08-08 19:52:29 +0000159
160 // Check for a file of name "-", which means "read standard input"
Chris Lattner74382b72009-08-23 22:45:37 +0000161 if (File.str() == "-") {
Reid Spencer53424ad2007-08-08 19:52:29 +0000162 std::auto_ptr<Module> M;
Dan Gohman30377e72010-05-27 17:31:51 +0000163 if (MemoryBuffer *Buffer = MemoryBuffer::getSTDIN(&Error)) {
164 if (!Buffer->getBufferSize()) {
165 delete Buffer;
166 Error = "standard input is empty";
167 } else {
168 M.reset(ParseBitcodeFile(Buffer, Context, &Error));
169 delete Buffer;
170 if (M.get())
171 if (!LinkInModule(M.get(), &Error))
172 return false;
173 }
Daniel Dunbard65267e2009-11-10 00:43:58 +0000174 }
Reid Spencer53424ad2007-08-08 19:52:29 +0000175 return error("Cannot link stdin: " + Error);
176 }
177
Dan Gohman95131fc2010-05-27 17:18:38 +0000178 // Determine what variety of file it is.
179 std::string Magic;
180 if (!File.getMagicNumber(Magic, 64))
Chris Lattner74382b72009-08-23 22:45:37 +0000181 return error("Cannot find linker input '" + File.str() + "'");
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000182
Reid Spencerc8539732007-04-04 06:33:17 +0000183 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000184 default: llvm_unreachable("Bad file type identification");
Reid Spencerc8539732007-04-04 06:33:17 +0000185 case sys::Unknown_FileType:
Chris Lattner74382b72009-08-23 22:45:37 +0000186 return warning("Ignoring file '" + File.str() +
Reid Spencer49068bf2007-08-16 07:47:30 +0000187 "' because does not contain bitcode.");
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000188
Reid Spencerc8539732007-04-04 06:33:17 +0000189 case sys::Archive_FileType:
190 // A user may specify an ar archive without -l, perhaps because it
191 // is not installed as a library. Detect that and link the archive.
Reid Spencerc9a83e42007-04-30 00:29:39 +0000192 if (LinkInArchive(File, is_native))
Reid Spencer49068bf2007-08-16 07:47:30 +0000193 return true;
Reid Spencerc8539732007-04-04 06:33:17 +0000194 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000195
Gabor Greife75ca3d2007-07-06 13:38:17 +0000196 case sys::Bitcode_FileType: {
Chris Lattner74382b72009-08-23 22:45:37 +0000197 verbose("Linking bitcode file '" + File.str() + "'");
Reid Spencerc8539732007-04-04 06:33:17 +0000198 std::auto_ptr<Module> M(LoadObject(File));
199 if (M.get() == 0)
Chris Lattner74382b72009-08-23 22:45:37 +0000200 return error("Cannot load file '" + File.str() + "': " + Error);
Reid Spenceraf11dc02007-08-16 07:23:37 +0000201 if (LinkInModule(M.get(), &Error))
Chris Lattner74382b72009-08-23 22:45:37 +0000202 return error("Cannot link file '" + File.str() + "': " + Error);
Reid Spencerc8539732007-04-04 06:33:17 +0000203
Chris Lattner74382b72009-08-23 22:45:37 +0000204 verbose("Linked in file '" + File.str() + "'");
Reid Spencerc8539732007-04-04 06:33:17 +0000205 break;
206 }
207
Reid Spencer18da0722007-04-11 02:44:20 +0000208 case sys::ELF_Relocatable_FileType:
209 case sys::ELF_SharedObject_FileType:
210 case sys::Mach_O_Object_FileType:
211 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
212 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
213 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000214 case sys::COFF_FileType:
215 is_native = true;
216 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000217 }
218 return false;
219}
220
221/// LinkFiles - takes a module and a list of files and links them all together.
222/// It locates the file either in the current directory, as its absolute
223/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
224///
225/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000226/// Files - A vector of sys::Path indicating the LLVM bitcode filenames
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000227/// to be linked. The names can refer to a mixture of pure LLVM
Gabor Greifa99be512007-07-05 17:07:56 +0000228/// bitcode files and archive (ar) formatted files.
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000229///
230/// Return value:
231/// FALSE - No errors.
232/// TRUE - Some error occurred.
233///
234bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
Reid Spencerc8539732007-04-04 06:33:17 +0000235 bool is_native;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000236 for (unsigned i = 0; i < Files.size(); ++i)
Reid Spencerc8539732007-04-04 06:33:17 +0000237 if (LinkInFile(Files[i], is_native))
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000238 return true;
239 return false;
240}