1 //===- lib/Linker/Linker.cpp - Basic Linker functionality ----------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains basic Linker functionality that all usages will need.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Linker.h"
15 #include "llvm/Module.h"
16 #include "llvm/Bitcode/ReaderWriter.h"
17 #include "llvm/Config/config.h"
18 #include "llvm/Support/MemoryBuffer.h"
19 #include "llvm/Support/Streams.h"
22 Linker::Linker(const std::string& progname, const std::string& modname,
28 , ProgramName(progname)
30 Composite = new Module(modname);
33 Linker::Linker(const std::string& progname, Module* aModule, unsigned flags)
38 , ProgramName(progname)
47 Linker::error(const std::string& message) {
49 if (!(Flags&QuietErrors))
50 cerr << ProgramName << ": error: " << message << "\n";
55 Linker::warning(const std::string& message) {
57 if (!(Flags&QuietWarnings))
58 cerr << ProgramName << ": warning: " << message << "\n";
63 Linker::verbose(const std::string& message) {
65 cerr << " " << message << "\n";
69 Linker::addPath(const sys::Path& path) {
70 LibPaths.push_back(path);
74 Linker::addPaths(const std::vector<std::string>& paths) {
75 for (unsigned i = 0; i != paths.size(); ++i) {
78 LibPaths.push_back(aPath);
83 Linker::addSystemPaths() {
84 sys::Path::GetBitcodeLibraryPaths(LibPaths);
85 LibPaths.insert(LibPaths.begin(),sys::Path("./"));
89 Linker::releaseModule() {
90 Module* result = Composite;
98 // LoadObject - Read in and parse the bitcode file named by FN and return the
99 // module it contains (wrapped in an auto_ptr), or auto_ptr<Module>() and set
100 // Error if an error occurs.
101 std::auto_ptr<Module>
102 Linker::LoadObject(const sys::Path &FN) {
103 std::string ParseErrorMessage;
106 const std::string &FNS = FN.toString();
107 std::auto_ptr<MemoryBuffer> Buffer(MemoryBuffer::getFileOrSTDIN(FNS.c_str()));
109 Result = ParseBitcodeFile(Buffer.get(), &ParseErrorMessage);
111 ParseErrorMessage = "Error reading file '" + FNS + "'";
114 return std::auto_ptr<Module>(Result);
115 Error = "Bitcode file '" + FN.toString() + "' could not be loaded";
116 if (ParseErrorMessage.size())
117 Error += ": " + ParseErrorMessage;
118 return std::auto_ptr<Module>();
121 // IsLibrary - Determine if "Name" is a library in "Directory". Return
122 // a non-empty sys::Path if its found, an empty one otherwise.
123 static inline sys::Path IsLibrary(const std::string& Name,
124 const sys::Path& Directory) {
126 sys::Path FullPath(Directory);
128 // Try the libX.a form
129 FullPath.appendComponent("lib" + Name);
130 FullPath.appendSuffix("a");
131 if (FullPath.isArchive())
134 // Try the libX.bca form
135 FullPath.eraseSuffix();
136 FullPath.appendSuffix("bca");
137 if (FullPath.isArchive())
140 // Try the libX.so (or .dylib) form
141 FullPath.eraseSuffix();
142 FullPath.appendSuffix(&(LTDL_SHLIB_EXT[1]));
143 if (FullPath.isDynamicLibrary()) // Native shared library?
145 if (FullPath.isBitcodeFile()) // .so file containing bitcode?
148 // Not found .. fall through
150 // Indicate that the library was not found in the directory.
155 /// FindLib - Try to convert Filename into the name of a file that we can open,
156 /// if it does not already name a file we can open, by first trying to open
157 /// Filename, then libFilename.[suffix] for each of a set of several common
158 /// library suffixes, in each of the directories in LibPaths. Returns an empty
159 /// Path if no matching file can be found.
162 Linker::FindLib(const std::string &Filename) {
163 // Determine if the pathname can be found as it stands.
164 sys::Path FilePath(Filename);
165 if (FilePath.canRead() &&
166 (FilePath.isArchive() || FilePath.isDynamicLibrary()))
169 // Iterate over the directories in Paths to see if we can find the library
171 for (unsigned Index = 0; Index != LibPaths.size(); ++Index) {
172 sys::Path Directory(LibPaths[Index]);
173 sys::Path FullPath = IsLibrary(Filename,Directory);
174 if (!FullPath.isEmpty())