blob: 09af56c6a8b1cf6dc73e255ca5a0cc8e937cde94 [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//
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 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
23// function only links bytecode and produces a result list of items that are
24// 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(),
Chris Lattnerfc82ef62005-03-15 22:55:17 +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 Spencer4bdf1c92004-12-05 19:14:55 +000060
Reid Spencere84de292004-12-13 02:59:52 +000061 return false;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000062}
Chris Lattnerad988f32005-03-15 22:51:40 +000063
64
65/// LinkInLibrary - links one library into the HeadModule.
66///
Reid Spencerc8539732007-04-04 06:33:17 +000067bool Linker::LinkInLibrary(const std::string& Lib, bool& is_native) {
68 is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +000069 // Determine where this library lives.
70 sys::Path Pathname = FindLib(Lib);
71 if (Pathname.isEmpty())
72 return warning("Cannot find library '" + Lib + "'");
73
74 // If its an archive, try to link it in
Reid Spencerf4484f32006-01-10 03:14:40 +000075 std::string Magic;
76 Pathname.getMagicNumber(Magic, 64);
77 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
Reid Spencerc8539732007-04-04 06:33:17 +000078 default: assert(0 && "Bad file type identification");
79 case sys::Unknown_FileType:
80 return warning("Supposed library '" + Lib + "' isn't a library.");
81
82 case sys::Bytecode_FileType:
83 case sys::CompressedBytecode_FileType:
Reid Spencerf4484f32006-01-10 03:14:40 +000084 // LLVM ".so" file.
Reid Spencerc8539732007-04-04 06:33:17 +000085 if (LinkInFile(Pathname, is_native))
Reid Spencerf4484f32006-01-10 03:14:40 +000086 return error("Cannot link file '" + Pathname.toString() + "'");
Reid Spencerf4484f32006-01-10 03:14:40 +000087 break;
Reid Spencerc8539732007-04-04 06:33:17 +000088
89 case sys::Archive_FileType:
Reid Spencerf4484f32006-01-10 03:14:40 +000090 if (LinkInArchive(Pathname))
91 return error("Cannot link archive '" + Pathname.toString() + "'");
92 break;
Reid Spencerc8539732007-04-04 06:33:17 +000093
Reid Spencer18da0722007-04-11 02:44:20 +000094 case sys::ELF_Relocatable_FileType:
95 case sys::ELF_SharedObject_FileType:
96 case sys::Mach_O_Object_FileType:
97 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
98 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
99 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000100 case sys::COFF_FileType:
101 is_native = true;
102 break;
Chris Lattnerad988f32005-03-15 22:51:40 +0000103 }
104 return false;
105}
106
107/// LinkLibraries - takes the specified library files and links them into the
108/// main bytecode object file.
109///
110/// Inputs:
111/// Libraries - The list of libraries to link into the module.
112///
113/// Return value:
114/// FALSE - No error.
115/// TRUE - Error.
116///
117bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
118
119 // Process the set of libraries we've been provided.
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000120 bool is_native = false;
Chris Lattnerad988f32005-03-15 22:51:40 +0000121 for (unsigned i = 0; i < Libraries.size(); ++i)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000122 if (LinkInLibrary(Libraries[i], is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000123 return true;
124
125 // At this point we have processed all the libraries provided to us. Since
126 // we have an aggregated module at this point, the dependent libraries in
127 // that module should also be aggregated with duplicates eliminated. This is
128 // now the time to process the dependent libraries to resolve any remaining
129 // symbols.
130 const Module::LibraryListType& DepLibs = Composite->getLibraries();
Misha Brukmanf976c852005-04-21 22:55:34 +0000131 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
132 E = DepLibs.end(); I != E; ++I)
Reid Spencerc07cfdd2007-04-04 06:44:18 +0000133 if (LinkInLibrary(*I, is_native))
Chris Lattnerad988f32005-03-15 22:51:40 +0000134 return true;
135
136 return false;
137}
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000138
139/// LinkInFile - opens a bytecode file and links in all objects which
140/// provide symbols that are currently undefined.
141///
142/// Inputs:
143/// File - The pathname of the bytecode file.
144///
145/// Outputs:
146/// ErrorMessage - A C++ string detailing what error occurred, if any.
147///
148/// Return Value:
149/// TRUE - An error occurred.
150/// FALSE - No errors.
151///
Reid Spencerc8539732007-04-04 06:33:17 +0000152bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
153 is_native = false;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000154 // Make sure we can at least read the file
Reid Spencerc7f08322005-07-07 18:21:42 +0000155 if (!File.canRead())
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000156 return error("Cannot find linker input '" + File.toString() + "'");
157
Reid Spencerc8539732007-04-04 06:33:17 +0000158 // If its an archive, try to link it in
159 std::string Magic;
160 File.getMagicNumber(Magic, 64);
161 switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
162 default: assert(0 && "Bad file type identification");
163 case sys::Unknown_FileType:
164 return warning("Supposed object file '" + File.toString() +
165 "' not recognized as such");
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000166
Reid Spencerc8539732007-04-04 06:33:17 +0000167 case sys::Archive_FileType:
168 // A user may specify an ar archive without -l, perhaps because it
169 // is not installed as a library. Detect that and link the archive.
170 verbose("Linking archive file '" + File.toString() + "'");
171 if (LinkInArchive(File))
172 return error("Cannot link archive '" + File.toString() + "'");
173 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000174
Reid Spencerc8539732007-04-04 06:33:17 +0000175 case sys::Bytecode_FileType:
176 case sys::CompressedBytecode_FileType: {
177 verbose("Linking bytecode file '" + File.toString() + "'");
178 std::auto_ptr<Module> M(LoadObject(File));
179 if (M.get() == 0)
180 return error("Cannot load file '" + File.toString() + "'" + Error);
181 if (LinkInModule(M.get()))
182 return error("Cannot link file '" + File.toString() + "'" + Error);
183
184 verbose("Linked in file '" + File.toString() + "'");
185 break;
186 }
187
Reid Spencer18da0722007-04-11 02:44:20 +0000188 case sys::ELF_Relocatable_FileType:
189 case sys::ELF_SharedObject_FileType:
190 case sys::Mach_O_Object_FileType:
191 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
192 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
193 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
Reid Spencerc8539732007-04-04 06:33:17 +0000194 case sys::COFF_FileType:
195 is_native = true;
196 break;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000197 }
198 return false;
199}
200
201/// LinkFiles - takes a module and a list of files and links them all together.
202/// It locates the file either in the current directory, as its absolute
203/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
204///
205/// Inputs:
206/// Files - A vector of sys::Path indicating the LLVM bytecode filenames
207/// to be linked. The names can refer to a mixture of pure LLVM
208/// bytecode files and archive (ar) formatted files.
209///
210/// Return value:
211/// FALSE - No errors.
212/// TRUE - Some error occurred.
213///
214bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
Reid Spencerc8539732007-04-04 06:33:17 +0000215 bool is_native;
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000216 for (unsigned i = 0; i < Files.size(); ++i)
Reid Spencerc8539732007-04-04 06:33:17 +0000217 if (LinkInFile(Files[i], is_native))
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000218 return true;
219 return false;
220}