blob: a67733437ee3322d1b5a8733a5290e488c8ef53d [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 Spencer4bdf1c92004-12-05 19:14:55 +000020// LinkItems - preserve link order for an arbitrary set of linkage items.
Reid Spencere84de292004-12-13 02:59:52 +000021bool
22Linker::LinkInItems(const ItemList& Items) {
Reid Spencer4bdf1c92004-12-05 19:14:55 +000023 // For each linkage item ...
Misha Brukmanf976c852005-04-21 22:55:34 +000024 for (ItemList::const_iterator I = Items.begin(), E = Items.end();
Reid Spencer4bdf1c92004-12-05 19:14:55 +000025 I != E; ++I) {
26 if (I->second) {
27 // Link in the library suggested.
Reid Spencere84de292004-12-13 02:59:52 +000028 if (LinkInLibrary(I->first))
29 return true;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000030 } else {
Reid Spencere84de292004-12-13 02:59:52 +000031 if (LinkInFile(sys::Path(I->first)))
32 return true;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000033 }
34 }
35
36 // At this point we have processed all the link items provided to us. Since
37 // we have an aggregated module at this point, the dependent libraries in
38 // that module should also be aggregated with duplicates eliminated. This is
39 // now the time to process the dependent libraries to resolve any remaining
40 // symbols.
Misha Brukmanf976c852005-04-21 22:55:34 +000041 for (Module::lib_iterator I = Composite->lib_begin(),
Chris Lattnerfc82ef62005-03-15 22:55:17 +000042 E = Composite->lib_end(); I != E; ++I)
Reid Spencere84de292004-12-13 02:59:52 +000043 if(LinkInLibrary(*I))
44 return true;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000045
Reid Spencere84de292004-12-13 02:59:52 +000046 return false;
Reid Spencer4bdf1c92004-12-05 19:14:55 +000047}
Chris Lattnerad988f32005-03-15 22:51:40 +000048
49
50/// LinkInLibrary - links one library into the HeadModule.
51///
52bool Linker::LinkInLibrary(const std::string& Lib) {
53 // Determine where this library lives.
54 sys::Path Pathname = FindLib(Lib);
55 if (Pathname.isEmpty())
56 return warning("Cannot find library '" + Lib + "'");
57
58 // If its an archive, try to link it in
59 if (Pathname.isArchive()) {
60 if (LinkInArchive(Pathname))
61 return error("Cannot link archive '" + Pathname.toString() + "'");
62 } else if (Pathname.isBytecodeFile()) {
63 // LLVM ".so" file.
64 if (LinkInFile(Pathname))
65 return error("Cannot link file '" + Pathname.toString() + "'");
66
67 } else if (Pathname.isDynamicLibrary()) {
68 return warning("Library '" + Lib + "' is a native dynamic library.");
69 } else {
70 return warning("Supposed library '" + Lib + "' isn't a library.");
71 }
72 return false;
73}
74
75/// LinkLibraries - takes the specified library files and links them into the
76/// main bytecode object file.
77///
78/// Inputs:
79/// Libraries - The list of libraries to link into the module.
80///
81/// Return value:
82/// FALSE - No error.
83/// TRUE - Error.
84///
85bool Linker::LinkInLibraries(const std::vector<std::string> &Libraries) {
86
87 // Process the set of libraries we've been provided.
88 for (unsigned i = 0; i < Libraries.size(); ++i)
89 if (LinkInLibrary(Libraries[i]))
90 return true;
91
92 // At this point we have processed all the libraries provided to us. Since
93 // we have an aggregated module at this point, the dependent libraries in
94 // that module should also be aggregated with duplicates eliminated. This is
95 // now the time to process the dependent libraries to resolve any remaining
96 // symbols.
97 const Module::LibraryListType& DepLibs = Composite->getLibraries();
Misha Brukmanf976c852005-04-21 22:55:34 +000098 for (Module::LibraryListType::const_iterator I = DepLibs.begin(),
99 E = DepLibs.end(); I != E; ++I)
100 if (LinkInLibrary(*I))
Chris Lattnerad988f32005-03-15 22:51:40 +0000101 return true;
102
103 return false;
104}
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000105
106/// LinkInFile - opens a bytecode file and links in all objects which
107/// provide symbols that are currently undefined.
108///
109/// Inputs:
110/// File - The pathname of the bytecode file.
111///
112/// Outputs:
113/// ErrorMessage - A C++ string detailing what error occurred, if any.
114///
115/// Return Value:
116/// TRUE - An error occurred.
117/// FALSE - No errors.
118///
119bool Linker::LinkInFile(const sys::Path &File) {
120 // Make sure we can at least read the file
Reid Spencerc7f08322005-07-07 18:21:42 +0000121 if (!File.canRead())
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000122 return error("Cannot find linker input '" + File.toString() + "'");
123
124 // A user may specify an ar archive without -l, perhaps because it
125 // is not installed as a library. Detect that and link the library.
126 if (File.isArchive()) {
127 if (LinkInArchive(File))
128 return error("Cannot link archive '" + File.toString() + "'");
129 } else if (File.isBytecodeFile()) {
130 verbose("Linking bytecode file '" + File.toString() + "'");
131
132 std::auto_ptr<Module> M(LoadObject(File));
Misha Brukmanf976c852005-04-21 22:55:34 +0000133 if (M.get() == 0)
Chris Lattnerfc82ef62005-03-15 22:55:17 +0000134 return error("Cannot load file '" + File.toString() + "'" + Error);
135 if (LinkInModule(M.get()))
136 return error("Cannot link file '" + File.toString() + "'" + Error);
137
138 verbose("Linked in file '" + File.toString() + "'");
139 } else {
140 return warning("File of unknown type '" + File.toString() + "' ignored.");
141 }
142 return false;
143}
144
145/// LinkFiles - takes a module and a list of files and links them all together.
146/// It locates the file either in the current directory, as its absolute
147/// or relative pathname, or as a file somewhere in LLVM_LIB_SEARCH_PATH.
148///
149/// Inputs:
150/// Files - A vector of sys::Path indicating the LLVM bytecode filenames
151/// to be linked. The names can refer to a mixture of pure LLVM
152/// bytecode files and archive (ar) formatted files.
153///
154/// Return value:
155/// FALSE - No errors.
156/// TRUE - Some error occurred.
157///
158bool Linker::LinkInFiles(const std::vector<sys::Path> &Files) {
159 for (unsigned i = 0; i < Files.size(); ++i)
160 if (LinkInFile(Files[i]))
161 return true;
162 return false;
163}