blob: f21dff79c61b195ee46c1bb67f39dc8aedd8bf0a [file] [log] [blame]
Chris Lattner1d496172003-04-19 22:44:38 +00001//===- gccld.cpp - LLVM 'ld' compatible linker ----------------------------===//
Chris Lattner5ff2e052002-01-24 19:12:12 +00002//
3// This utility is intended to be compatible with GCC, and follows standard
Chris Lattner1d496172003-04-19 22:44:38 +00004// system 'ld' conventions. As such, the default output file is ./a.out.
Chris Lattner5ff2e052002-01-24 19:12:12 +00005// Additionally, this program outputs a shell script that is used to invoke LLI
6// to execute the program. In this manner, the generated executable (a.out for
7// example), is directly executable, whereas the bytecode file actually lives in
8// the a.out.bc file generated by this program. Also, Force is on by default.
9//
10// Note that if someone (or a script) deletes the executable program generated,
11// the .bc file will be left around. Considering that this is a temporary hack,
12// I'm not to worried about this.
13//
14//===----------------------------------------------------------------------===//
15
Chris Lattner7608a462002-05-07 18:36:35 +000016#include "llvm/Transforms/Utils/Linker.h"
Chris Lattner5ff2e052002-01-24 19:12:12 +000017#include "llvm/Module.h"
Chris Lattner3b08c2f2002-04-08 00:14:58 +000018#include "llvm/PassManager.h"
19#include "llvm/Bytecode/Reader.h"
20#include "llvm/Bytecode/WriteBytecodePass.h"
Chris Lattner35c45412002-07-23 22:04:43 +000021#include "llvm/Transforms/IPO.h"
Chris Lattner35c45412002-07-23 22:04:43 +000022#include "llvm/Transforms/Scalar.h"
Chris Lattner5ff2e052002-01-24 19:12:12 +000023#include "Support/CommandLine.h"
Chris Lattnerc065ad82002-04-18 19:55:25 +000024#include "Support/Signals.h"
Chris Lattner5ff2e052002-01-24 19:12:12 +000025#include <fstream>
26#include <memory>
Chris Lattner1d496172003-04-19 22:44:38 +000027#include <set>
Chris Lattner6f0d4532002-03-11 17:49:53 +000028#include <algorithm>
Chris Lattner5ff2e052002-01-24 19:12:12 +000029#include <sys/types.h> // For FileExists
30#include <sys/stat.h>
Chris Lattner5ff2e052002-01-24 19:12:12 +000031
Chris Lattner2b3a5db2003-04-18 23:01:25 +000032namespace {
33 cl::list<std::string>
34 InputFilenames(cl::Positional, cl::desc("<input bytecode files>"),
35 cl::OneOrMore);
Chris Lattnerf5cad152002-07-22 02:10:13 +000036
Chris Lattner2b3a5db2003-04-18 23:01:25 +000037 cl::opt<std::string>
38 OutputFilename("o", cl::desc("Override output filename"), cl::init("a.out"),
39 cl::value_desc("filename"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000040
Chris Lattner2b3a5db2003-04-18 23:01:25 +000041 cl::opt<bool>
42 Verbose("v", cl::desc("Print information about actions taken"));
43
44 cl::list<std::string>
45 LibPaths("L", cl::desc("Specify a library search path"), cl::Prefix,
46 cl::value_desc("directory"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000047
Chris Lattner2b3a5db2003-04-18 23:01:25 +000048 cl::list<std::string>
49 Libraries("l", cl::desc("Specify libraries to link to"), cl::Prefix,
50 cl::value_desc("library prefix"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000051
Chris Lattner2b3a5db2003-04-18 23:01:25 +000052 cl::opt<bool>
53 Strip("s", cl::desc("Strip symbol info from executable"));
Chris Lattnerf5cad152002-07-22 02:10:13 +000054
Chris Lattner2b3a5db2003-04-18 23:01:25 +000055 cl::opt<bool>
56 NoInternalize("disable-internalize",
57 cl::desc("Do not mark all symbols as internal"));
Chris Lattner602d2092003-04-18 23:38:22 +000058
Chris Lattner1d496172003-04-19 22:44:38 +000059 cl::opt<bool>
60 LinkAsLibrary("link-as-library", cl::desc("Link the .bc files together as a"
61 " library, not an executable"));
62
Chris Lattner602d2092003-04-18 23:38:22 +000063 // Compatibility options that are ignored, but support by LD
64 cl::opt<std::string>
65 CO3("soname", cl::Hidden, cl::desc("Compatibility option: ignored"));
66 cl::opt<std::string>
67 CO4("version-script", cl::Hidden, cl::desc("Compatibility option: ignored"));
68 cl::opt<bool>
69 CO5("eh-frame-hdr", cl::Hidden, cl::desc("Compatibility option: ignored"));
Chris Lattner2b3a5db2003-04-18 23:01:25 +000070}
Chris Lattner5ff2e052002-01-24 19:12:12 +000071
72// FileExists - Return true if the specified string is an openable file...
73static inline bool FileExists(const std::string &FN) {
74 struct stat StatBuf;
75 return stat(FN.c_str(), &StatBuf) != -1;
76}
77
Chris Lattner5ff2e052002-01-24 19:12:12 +000078
Chris Lattner1d496172003-04-19 22:44:38 +000079// LoadObject - Read the specified "object file", which should not search the
80// library path to find it.
81static inline std::auto_ptr<Module> LoadObject(const std::string &FN,
82 std::string &OutErrorMessage) {
83 if (Verbose) std::cerr << "Loading '" << FN << "'\n";
84 if (!FileExists(FN)) {
85 OutErrorMessage = "could not find input file '" + FN + "'!";
86 return std::auto_ptr<Module>();
Chris Lattner5ff2e052002-01-24 19:12:12 +000087 }
88
Chris Lattner1d496172003-04-19 22:44:38 +000089 std::string ErrorMessage;
90 Module *Result = ParseBytecodeFile(FN, &ErrorMessage);
91 if (Result) return std::auto_ptr<Module>(Result);
92
93 OutErrorMessage = "Bytecode file '" + FN + "' corrupt!";
94 if (ErrorMessage.size()) OutErrorMessage += ": " + ErrorMessage;
Chris Lattner5ff2e052002-01-24 19:12:12 +000095 return std::auto_ptr<Module>();
96}
97
98
Chris Lattner1d496172003-04-19 22:44:38 +000099static Module *LoadSingleLibraryObject(const std::string &Filename) {
100 std::string ErrorMessage;
101 std::auto_ptr<Module> M = LoadObject(Filename, ErrorMessage);
102 if (M.get() == 0 && Verbose) {
103 std::cerr << "Error loading '" + Filename + "'";
104 if (!ErrorMessage.empty()) std::cerr << ": " << ErrorMessage;
105 std::cerr << "\n";
106 }
107
108 return M.release();
109}
110
111
112// LoadLibraryFromDirectory - This looks for a .a, .so, or .bc file in a
113// particular directory. It returns true if no library is found, otherwise it
114// puts the loaded modules into the Objects list, and sets isArchive to true if
115// a .a file was loaded.
116//
117static inline bool LoadLibraryFromDirectory(const std::string &LibName,
118 const std::string &Directory,
119 std::vector<Module*> &Objects,
120 bool &isArchive) {
121 if (FileExists(Directory + "lib" + LibName + ".a")) {
122 std::string ErrorMessage;
123 if (Verbose) std::cerr << "Loading '" << Directory << LibName << ".a'\n";
124 if (!ReadArchiveFile(Directory + "lib" + LibName + ".a", Objects,
125 &ErrorMessage)) { // Read the archive file
126 isArchive = true;
127 return false; // Success!
128 }
129
130 if (Verbose) {
131 std::cerr << "Error loading archive '" + Directory + "lib"+LibName+".a'";
132 if (!ErrorMessage.empty()) std::cerr << ": " << ErrorMessage;
133 std::cerr << "\n";
134 }
135 }
136
137 if (FileExists(Directory + "lib" + LibName + ".so"))
138 if (Module *M = LoadSingleLibraryObject(Directory + "lib" + LibName+".so")){
139 isArchive = false;
140 Objects.push_back(M);
141 return false;
142 }
143
144 if (FileExists(Directory + "lib" + LibName + ".bc"))
145 if (Module *M = LoadSingleLibraryObject(Directory + "lib" + LibName+".bc")){
146 isArchive = false;
147 Objects.push_back(M);
148 return false;
149 }
150 return true;
151}
152
153// LoadLibrary - This searches for a .a, .so, or .bc file which provides the
154// LLVM bytecode for the library. It returns true if no library is found,
155// otherwise it puts the loaded modules into the Objects list, and sets
156// isArchive to true if a .a file was loaded.
157//
158static inline bool LoadLibrary(const std::string &LibName,
159 std::vector<Module*> &Objects, bool &isArchive,
160 std::string &ErrorMessage) {
161 std::string Directory;
162 unsigned NextLibPathIdx = 0;
163
164 while (1) {
165 // Try loading from the current directory...
166 if (Verbose) std::cerr << " Looking in directory '" << Directory << "'\n";
167 if (!LoadLibraryFromDirectory(LibName, Directory, Objects, isArchive))
168 return false;
169
170 if (NextLibPathIdx == LibPaths.size()) break;
171 Directory = LibPaths[NextLibPathIdx++]+"/";
172 }
173
174 ErrorMessage = "error linking library '-l" + LibName+ "': library not found!";
175 return true;
176}
177
178static void GetAllDefinedSymbols(Module *M,
179 std::set<std::string> &DefinedSymbols) {
180 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
181 if (I->hasName() && !I->isExternal() && !I->hasInternalLinkage())
182 DefinedSymbols.insert(I->getName());
183 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
184 if (I->hasName() && !I->isExternal() && !I->hasInternalLinkage())
185 DefinedSymbols.insert(I->getName());
186}
187
188// GetAllUndefinedSymbols - This calculates the set of undefined symbols that
189// still exist in an LLVM module. This is a bit tricky because there may be two
190// symbols with the same name, but different LLVM types that will be resolved to
191// each other, but aren't currently (thus we need to treat it as resolved).
192//
193static void GetAllUndefinedSymbols(Module *M,
194 std::set<std::string> &UndefinedSymbols) {
195 std::set<std::string> DefinedSymbols;
196 UndefinedSymbols.clear(); // Start out empty
197
198 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
199 if (I->hasName()) {
200 if (I->isExternal())
201 UndefinedSymbols.insert(I->getName());
202 else if (!I->hasInternalLinkage())
203 DefinedSymbols.insert(I->getName());
204 }
205 for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
206 if (I->hasName()) {
207 if (I->isExternal())
208 UndefinedSymbols.insert(I->getName());
209 else if (!I->hasInternalLinkage())
210 DefinedSymbols.insert(I->getName());
211 }
212
213 // Prune out any defined symbols from the undefined symbols set...
214 for (std::set<std::string>::iterator I = UndefinedSymbols.begin();
215 I != UndefinedSymbols.end(); )
216 if (DefinedSymbols.count(*I))
217 UndefinedSymbols.erase(I++); // This symbol really is defined!
218 else
219 ++I; // Keep this symbol in the undefined symbols list
220}
221
222
223static bool LinkLibrary(Module *M, const std::string &LibName,
224 std::string &ErrorMessage) {
225 std::vector<Module*> Objects;
226 bool isArchive;
227 if (LoadLibrary(LibName, Objects, isArchive, ErrorMessage)) return true;
228
229 // Figure out which symbols are defined by all of the modules in the .a file
230 std::vector<std::set<std::string> > DefinedSymbols;
231 DefinedSymbols.resize(Objects.size());
232 for (unsigned i = 0; i != Objects.size(); ++i)
233 GetAllDefinedSymbols(Objects[i], DefinedSymbols[i]);
234
235 std::set<std::string> UndefinedSymbols;
236 GetAllUndefinedSymbols(M, UndefinedSymbols);
237
238 bool Linked = true;
239 while (Linked) { // While we are linking in object files, loop.
240 Linked = false;
241
242 for (unsigned i = 0; i != Objects.size(); ++i) {
243 // Consider whether we need to link in this module... we only need to
244 // link it in if it defines some symbol which is so far undefined.
245 //
246 const std::set<std::string> &DefSymbols = DefinedSymbols[i];
247
248 bool ObjectRequired = false;
249 for (std::set<std::string>::iterator I = UndefinedSymbols.begin(),
250 E = UndefinedSymbols.end(); I != E; ++I)
251 if (DefSymbols.count(*I)) {
252 if (Verbose)
253 std::cerr << " Found object providing symbol '" << *I << "'...\n";
254 ObjectRequired = true;
255 break;
256 }
257
258 // We DO need to link this object into the program...
259 if (ObjectRequired) {
260 if (LinkModules(M, Objects[i], &ErrorMessage))
261 return true; // Couldn't link in the right object file...
262
263 // Since we have linked in this object, delete it from the list of
264 // objects to consider in this archive file.
265 std::swap(Objects[i], Objects.back());
266 std::swap(DefinedSymbols[i], DefinedSymbols.back());
267 Objects.pop_back();
268 DefinedSymbols.pop_back();
269 --i; // Do not skip an entry
270
271 // The undefined symbols set should have shrunk.
272 GetAllUndefinedSymbols(M, UndefinedSymbols);
273 Linked = true; // We have linked something in!
274 }
275 }
276 }
277
278 return false;
279}
280
281static int PrintAndReturn(const char *progname, const std::string &Message,
282 const std::string &Extra = "") {
283 std::cerr << progname << Extra << ": " << Message << "\n";
284 return 1;
285}
286
287
Chris Lattner5ff2e052002-01-24 19:12:12 +0000288int main(int argc, char **argv) {
Chris Lattnerf5cad152002-07-22 02:10:13 +0000289 cl::ParseCommandLineOptions(argc, argv, " llvm linker for GCC\n");
Chris Lattner5ff2e052002-01-24 19:12:12 +0000290
Chris Lattner5ff2e052002-01-24 19:12:12 +0000291 std::string ErrorMessage;
Chris Lattner1d496172003-04-19 22:44:38 +0000292 std::auto_ptr<Module> Composite(LoadObject(InputFilenames[0], ErrorMessage));
293 if (Composite.get() == 0)
294 return PrintAndReturn(argv[0], ErrorMessage);
Chris Lattner5ff2e052002-01-24 19:12:12 +0000295
Chris Lattner1d496172003-04-19 22:44:38 +0000296 for (unsigned i = 1; i < InputFilenames.size(); ++i) {
297 std::auto_ptr<Module> M(LoadObject(InputFilenames[i], ErrorMessage));
298 if (M.get() == 0)
299 return PrintAndReturn(argv[0], ErrorMessage);
Chris Lattner5ff2e052002-01-24 19:12:12 +0000300
Chris Lattner2b3a5db2003-04-18 23:01:25 +0000301 if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
Chris Lattner5ff2e052002-01-24 19:12:12 +0000302
Chris Lattner1d496172003-04-19 22:44:38 +0000303 if (LinkModules(Composite.get(), M.get(), &ErrorMessage))
304 return PrintAndReturn(argv[0], ErrorMessage,
305 ": error linking in '" + InputFilenames[i] + "'");
306 }
307
308 // Link in all of the libraries next...
309 for (unsigned i = 0; i != Libraries.size(); ++i) {
310 if (Verbose) std::cerr << "Linking in library: -l" << Libraries[i] << "\n";
311 if (LinkLibrary(Composite.get(), Libraries[i], ErrorMessage))
312 return PrintAndReturn(argv[0], ErrorMessage);
Chris Lattner5ff2e052002-01-24 19:12:12 +0000313 }
314
Chris Lattnerc34061f2002-04-10 20:37:47 +0000315 // In addition to just linking the input from GCC, we also want to spiff it up
Chris Lattner3b08c2f2002-04-08 00:14:58 +0000316 // a little bit. Do this now.
317 //
318 PassManager Passes;
319
320 // Linking modules together can lead to duplicated global constants, only keep
321 // one copy of each constant...
322 //
323 Passes.add(createConstantMergePass());
324
Chris Lattner2b33d752002-04-08 05:18:12 +0000325 // If the -s command line option was specified, strip the symbols out of the
326 // resulting program to make it smaller. -s is a GCC option that we are
327 // supporting.
328 //
329 if (Strip)
330 Passes.add(createSymbolStrippingPass());
331
Chris Lattnerc34061f2002-04-10 20:37:47 +0000332 // Often if the programmer does not specify proper prototypes for the
333 // functions they are calling, they end up calling a vararg version of the
334 // function that does not get a body filled in (the real function has typed
335 // arguments). This pass merges the two functions.
336 //
337 Passes.add(createFunctionResolvingPass());
338
Chris Lattnera9a98802003-04-16 21:43:22 +0000339 if (!NoInternalize) {
340 // Now that composite has been compiled, scan through the module, looking
341 // for a main function. If main is defined, mark all other functions
342 // internal.
343 //
344 Passes.add(createInternalizePass());
345 }
Chris Lattner62b7fd12002-04-07 20:49:59 +0000346
Chris Lattner3b08c2f2002-04-08 00:14:58 +0000347 // Now that we have optimized the program, discard unreachable functions...
348 //
349 Passes.add(createGlobalDCEPass());
Chris Lattner62b7fd12002-04-07 20:49:59 +0000350
Chris Lattner3b08c2f2002-04-08 00:14:58 +0000351 // Add the pass that writes bytecode to the output file...
Chris Lattner1d496172003-04-19 22:44:38 +0000352 std::string RealBytecodeOutput = OutputFilename;
353 if (!LinkAsLibrary) RealBytecodeOutput += ".bc";
354 std::ofstream Out(RealBytecodeOutput.c_str());
355 if (!Out.good())
356 return PrintAndReturn(argv[0], "error opening '" + RealBytecodeOutput +
357 "' for writing!");
Chris Lattner3b08c2f2002-04-08 00:14:58 +0000358 Passes.add(new WriteBytecodePass(&Out)); // Write bytecode to file...
Chris Lattner5ff2e052002-01-24 19:12:12 +0000359
Chris Lattnerc065ad82002-04-18 19:55:25 +0000360 // Make sure that the Out file gets unlink'd from the disk if we get a SIGINT
Chris Lattner1d496172003-04-19 22:44:38 +0000361 RemoveFileOnSignal(RealBytecodeOutput);
Chris Lattnerc065ad82002-04-18 19:55:25 +0000362
Chris Lattner3b08c2f2002-04-08 00:14:58 +0000363 // Run our queue of passes all at once now, efficiently.
Chris Lattner7076ff22002-06-25 16:13:21 +0000364 Passes.run(*Composite.get());
Chris Lattner5ff2e052002-01-24 19:12:12 +0000365 Out.close();
366
Chris Lattner1d496172003-04-19 22:44:38 +0000367 if (!LinkAsLibrary) {
368 // Output the script to start the program...
369 std::ofstream Out2(OutputFilename.c_str());
370 if (!Out2.good())
371 return PrintAndReturn(argv[0], "error opening '" + OutputFilename +
372 "' for writing!");
373 Out2 << "#!/bin/sh\nlli -q -abort-on-exception $0.bc $*\n";
374 Out2.close();
Chris Lattner5ff2e052002-01-24 19:12:12 +0000375
Chris Lattner1d496172003-04-19 22:44:38 +0000376 // Make the script executable...
377 chmod(OutputFilename.c_str(), 0755);
378 }
Chris Lattner5ff2e052002-01-24 19:12:12 +0000379
380 return 0;
381}