blob: 9b3e66d8849d1408a4a9e8ee49181387e1d4da83 [file] [log] [blame]
Reid Spencerc0af3f02004-09-13 01:27:53 +00001//===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
Reid Spencerc0af3f02004-09-13 01:27:53 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
Reid Spencerc0af3f02004-09-13 01:27:53 +00008//===----------------------------------------------------------------------===//
9//
10// This utility is intended to be compatible with GCC, and follows standard
11// system 'ld' conventions. As such, the default output file is ./a.out.
12// Additionally, this program outputs a shell script that is used to invoke LLI
13// to execute the program. In this manner, the generated executable (a.out for
14// example), is directly executable, whereas the bytecode file actually lives in
15// the a.out.bc file generated by this program. Also, Force is on by default.
16//
17// Note that if someone (or a script) deletes the executable program generated,
18// the .bc file will be left around. Considering that this is a temporary hack,
19// I'm not too worried about this.
20//
21//===----------------------------------------------------------------------===//
22
Reid Spenceraf303d52006-06-07 23:03:13 +000023#include "llvm/LinkAllVMCore.h"
Reid Spencer605b9e22004-11-14 23:00:08 +000024#include "llvm/Linker.h"
Reid Spencer6da1e0d2004-12-14 04:20:08 +000025#include "llvm/System/Program.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000026#include "llvm/Module.h"
27#include "llvm/PassManager.h"
Chris Lattnerbb3f3d32007-05-06 05:56:58 +000028#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000029#include "llvm/Target/TargetData.h"
Reid Spenceraefd04b2004-09-25 16:00:07 +000030#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetMachineRegistry.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/FileUtilities.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000034#include "llvm/Support/ManagedStatic.h"
Chris Lattnerbb3f3d32007-05-06 05:56:58 +000035#include "llvm/Support/MemoryBuffer.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000036#include "llvm/Support/Streams.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000037#include "llvm/Support/SystemUtils.h"
Reid Spencer445564a2004-11-20 20:02:56 +000038#include "llvm/System/Signals.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000039#include <fstream>
40#include <memory>
41using namespace llvm;
42
Reid Spencer445564a2004-11-20 20:02:56 +000043// Input/Output Options
44static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
45 cl::desc("<input bytecode files>"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000046
Reid Spencer445564a2004-11-20 20:02:56 +000047static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
Misha Brukman3da94ae2005-04-22 00:00:37 +000048 cl::desc("Override output filename"),
Reid Spencer445564a2004-11-20 20:02:56 +000049 cl::value_desc("filename"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000050
Misha Brukman3da94ae2005-04-22 00:00:37 +000051static cl::opt<bool> Verbose("v",
Reid Spencer445564a2004-11-20 20:02:56 +000052 cl::desc("Print information about actions taken"));
Misha Brukman3da94ae2005-04-22 00:00:37 +000053
Reid Spencer445564a2004-11-20 20:02:56 +000054static cl::list<std::string> LibPaths("L", cl::Prefix,
Misha Brukman3da94ae2005-04-22 00:00:37 +000055 cl::desc("Specify a library search path"),
Reid Spencer445564a2004-11-20 20:02:56 +000056 cl::value_desc("directory"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000057
Reid Spencer445564a2004-11-20 20:02:56 +000058static cl::list<std::string> Libraries("l", cl::Prefix,
Misha Brukman3da94ae2005-04-22 00:00:37 +000059 cl::desc("Specify libraries to link to"),
Reid Spencer445564a2004-11-20 20:02:56 +000060 cl::value_desc("library prefix"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000061
Reid Spencer708585a2007-02-09 03:08:06 +000062// Options to control the linking, optimization, and code gen processes
Misha Brukman3da94ae2005-04-22 00:00:37 +000063static cl::opt<bool> LinkAsLibrary("link-as-library",
Reid Spencer445564a2004-11-20 20:02:56 +000064 cl::desc("Link the .bc files together as a library, not an executable"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000065
Reid Spencer445564a2004-11-20 20:02:56 +000066static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
67 cl::desc("Alias for -link-as-library"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000068
Reid Spencer445564a2004-11-20 20:02:56 +000069static cl::opt<const TargetMachineRegistry::Entry*, false, TargetNameParser>
Reid Spenceraefd04b2004-09-25 16:00:07 +000070 MachineArch("march", cl::desc("Architecture to generate assembly for:"));
71
Reid Spencer445564a2004-11-20 20:02:56 +000072static cl::opt<bool> Native("native",
73 cl::desc("Generate a native binary instead of a shell script"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000074
Reid Spencer445564a2004-11-20 20:02:56 +000075static cl::opt<bool>NativeCBE("native-cbe",
76 cl::desc("Generate a native binary with the C backend and GCC"));
77
Reid Spencer73a74be2005-12-21 05:03:23 +000078static cl::list<std::string> PostLinkOpts("post-link-opts",
Reid Spenceraf303d52006-06-07 23:03:13 +000079 cl::value_desc("path"),
Reid Spencer73a74be2005-12-21 05:03:23 +000080 cl::desc("Run one or more optimization programs after linking"));
81
Reid Spenceraf303d52006-06-07 23:03:13 +000082static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
83 cl::desc("Pass options to the system linker"));
84
Reid Spencer708585a2007-02-09 03:08:06 +000085// Compatibility options that llvm-ld ignores but are supported for
86// compatibility with LD
Misha Brukman3da94ae2005-04-22 00:00:37 +000087static cl::opt<std::string> CO3("soname", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +000088 cl::desc("Compatibility option: ignored"));
89
Misha Brukman3da94ae2005-04-22 00:00:37 +000090static cl::opt<std::string> CO4("version-script", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +000091 cl::desc("Compatibility option: ignored"));
92
Misha Brukman3da94ae2005-04-22 00:00:37 +000093static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +000094 cl::desc("Compatibility option: ignored"));
95
Misha Brukman3da94ae2005-04-22 00:00:37 +000096static cl::opt<std::string> CO6("h", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +000097 cl::desc("Compatibility option: ignored"));
98
Reid Spencer98a030c2007-02-08 19:03:11 +000099static cl::opt<bool> CO7("start-group", cl::Hidden,
100 cl::desc("Compatibility option: ignored"));
101
102static cl::opt<bool> CO8("end-group", cl::Hidden,
103 cl::desc("Compatibility option: ignored"));
Reid Spenceraf303d52006-06-07 23:03:13 +0000104
Reid Spencer445564a2004-11-20 20:02:56 +0000105/// This is just for convenience so it doesn't have to be passed around
106/// everywhere.
Reid Spencerc4064132004-12-13 03:01:14 +0000107static std::string progname;
Reid Spencerc0af3f02004-09-13 01:27:53 +0000108
Reid Spencer708585a2007-02-09 03:08:06 +0000109/// PrintAndExit - Prints a message to standard error and exits with error code
Reid Spencerc0af3f02004-09-13 01:27:53 +0000110///
111/// Inputs:
Reid Spencerc0af3f02004-09-13 01:27:53 +0000112/// Message - The message to print to standard error.
113///
Reid Spencer708585a2007-02-09 03:08:06 +0000114static void PrintAndExit(const std::string &Message, int errcode = 1) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000115 cerr << progname << ": " << Message << "\n";
Reid Spencer708585a2007-02-09 03:08:06 +0000116 llvm_shutdown();
117 exit(errcode);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000118}
119
Reid Spencer3b726392007-04-29 23:59:47 +0000120static void PrintCommand(const std::vector<const char*> &args) {
121 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
122 for (; I != E; ++I)
123 if (*I)
124 cout << "'" << *I << "'" << " ";
125 cout << "\n" << std::flush;
126}
127
Reid Spencer445564a2004-11-20 20:02:56 +0000128/// CopyEnv - This function takes an array of environment variables and makes a
129/// copy of it. This copy can then be manipulated any way the caller likes
130/// without affecting the process's real environment.
131///
132/// Inputs:
133/// envp - An array of C strings containing an environment.
134///
135/// Return value:
136/// NULL - An error occurred.
137///
138/// Otherwise, a pointer to a new array of C strings is returned. Every string
139/// in the array is a duplicate of the one in the original array (i.e. we do
140/// not copy the char *'s from one array to another).
141///
142static char ** CopyEnv(char ** const envp) {
143 // Count the number of entries in the old list;
144 unsigned entries; // The number of entries in the old environment list
145 for (entries = 0; envp[entries] != NULL; entries++)
146 /*empty*/;
147
148 // Add one more entry for the NULL pointer that ends the list.
149 ++entries;
150
151 // If there are no entries at all, just return NULL.
152 if (entries == 0)
153 return NULL;
154
155 // Allocate a new environment list.
156 char **newenv = new char* [entries];
157 if ((newenv = new char* [entries]) == NULL)
158 return NULL;
159
160 // Make a copy of the list. Don't forget the NULL that ends the list.
161 entries = 0;
162 while (envp[entries] != NULL) {
163 newenv[entries] = new char[strlen (envp[entries]) + 1];
164 strcpy (newenv[entries], envp[entries]);
165 ++entries;
166 }
167 newenv[entries] = NULL;
168
169 return newenv;
170}
171
172
173/// RemoveEnv - Remove the specified environment variable from the environment
174/// array.
175///
176/// Inputs:
177/// name - The name of the variable to remove. It cannot be NULL.
178/// envp - The array of environment variables. It cannot be NULL.
179///
180/// Notes:
181/// This is mainly done because functions to remove items from the environment
182/// are not available across all platforms. In particular, Solaris does not
183/// seem to have an unsetenv() function or a setenv() function (or they are
184/// undocumented if they do exist).
185///
186static void RemoveEnv(const char * name, char ** const envp) {
187 for (unsigned index=0; envp[index] != NULL; index++) {
188 // Find the first equals sign in the array and make it an EOS character.
189 char *p = strchr (envp[index], '=');
190 if (p == NULL)
191 continue;
192 else
193 *p = '\0';
194
195 // Compare the two strings. If they are equal, zap this string.
196 // Otherwise, restore it.
197 if (!strcmp(name, envp[index]))
198 *envp[index] = '\0';
199 else
200 *p = '=';
201 }
202
203 return;
204}
205
206/// GenerateBytecode - generates a bytecode file from the module provided
207void GenerateBytecode(Module* M, const std::string& FileName) {
208
Reid Spencer3b726392007-04-29 23:59:47 +0000209 if (Verbose)
210 cout << "Generating Bytecode To " << FileName << '\n';
211
Reid Spencer445564a2004-11-20 20:02:56 +0000212 // Create the output file.
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000213 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
214 std::ios::binary;
215 std::ofstream Out(FileName.c_str(), io_mode);
Reid Spencer708585a2007-02-09 03:08:06 +0000216 if (!Out.good())
217 PrintAndExit("error opening '" + FileName + "' for writing!");
Reid Spencer445564a2004-11-20 20:02:56 +0000218
219 // Ensure that the bytecode file gets removed from the disk if we get a
220 // terminating signal.
221 sys::RemoveFileOnSignal(sys::Path(FileName));
222
223 // Write it out
Chris Lattner44dadff2007-05-06 09:29:57 +0000224 WriteBitcodeToFile(M, Out);
Reid Spencer445564a2004-11-20 20:02:56 +0000225
226 // Close the bytecode file.
227 Out.close();
228}
229
230/// GenerateAssembly - generates a native assembly language source file from the
231/// specified bytecode file.
232///
233/// Inputs:
Devang Patele2f8ad82006-06-27 18:07:29 +0000234/// InputFilename - The name of the input bytecode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000235/// OutputFilename - The name of the file to generate.
236/// llc - The pathname to use for LLC.
237/// envp - The environment to use when running LLC.
238///
239/// Return non-zero value on error.
240///
241static int GenerateAssembly(const std::string &OutputFilename,
242 const std::string &InputFilename,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000243 const sys::Path &llc,
244 std::string &ErrMsg ) {
Reid Spencer445564a2004-11-20 20:02:56 +0000245 // Run LLC to convert the bytecode file into assembly code.
Reid Spencerf6358c72004-12-19 18:00:56 +0000246 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000247 args.push_back(llc.c_str());
248 args.push_back("-f");
249 args.push_back("-o");
250 args.push_back(OutputFilename.c_str());
251 args.push_back(InputFilename.c_str());
Chris Lattner7456e3c2005-02-13 23:10:45 +0000252 args.push_back(0);
Reid Spencer445564a2004-11-20 20:02:56 +0000253
Reid Spencer3b726392007-04-29 23:59:47 +0000254 if (Verbose) {
255 cout << "Generating Assembly With: \n";
256 PrintCommand(args);
257 }
258
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000259 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
Reid Spencer445564a2004-11-20 20:02:56 +0000260}
261
Devang Patele2f8ad82006-06-27 18:07:29 +0000262/// GenerateCFile - generates a C source file from the specified bytecode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000263static int GenerateCFile(const std::string &OutputFile,
264 const std::string &InputFile,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000265 const sys::Path &llc,
266 std::string& ErrMsg) {
Reid Spencer445564a2004-11-20 20:02:56 +0000267 // Run LLC to convert the bytecode file into C.
Reid Spencerf6358c72004-12-19 18:00:56 +0000268 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000269 args.push_back(llc.c_str());
270 args.push_back("-march=c");
271 args.push_back("-f");
272 args.push_back("-o");
273 args.push_back(OutputFile.c_str());
274 args.push_back(InputFile.c_str());
Chris Lattner7456e3c2005-02-13 23:10:45 +0000275 args.push_back(0);
Reid Spencer3b726392007-04-29 23:59:47 +0000276
277 if (Verbose) {
278 cout << "Generating C Source With: \n";
279 PrintCommand(args);
280 }
281
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000282 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
Reid Spencer445564a2004-11-20 20:02:56 +0000283}
284
Devang Patele2f8ad82006-06-27 18:07:29 +0000285/// GenerateNative - generates a native object file from the
286/// specified bytecode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000287///
288/// Inputs:
Reid Spencerc82a5da2007-04-04 06:34:22 +0000289/// InputFilename - The name of the input bytecode file.
290/// OutputFilename - The name of the file to generate.
291/// NativeLinkItems - The native libraries, files, code with which to link
292/// LibPaths - The list of directories in which to find libraries.
293/// gcc - The pathname to use for GGC.
294/// envp - A copy of the process's current environment.
Reid Spencer445564a2004-11-20 20:02:56 +0000295///
296/// Outputs:
297/// None.
298///
299/// Returns non-zero value on error.
300///
301static int GenerateNative(const std::string &OutputFilename,
302 const std::string &InputFilename,
Reid Spencer49521432006-11-11 11:54:25 +0000303 const Linker::ItemList &LinkItems,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000304 const sys::Path &gcc, char ** const envp,
305 std::string& ErrMsg) {
Reid Spencer445564a2004-11-20 20:02:56 +0000306 // Remove these environment variables from the environment of the
307 // programs that we will execute. It appears that GCC sets these
308 // environment variables so that the programs it uses can configure
309 // themselves identically.
310 //
311 // However, when we invoke GCC below, we want it to use its normal
312 // configuration. Hence, we must sanitize its environment.
313 char ** clean_env = CopyEnv(envp);
314 if (clean_env == NULL)
315 return 1;
316 RemoveEnv("LIBRARY_PATH", clean_env);
317 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
318 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
319 RemoveEnv("COMPILER_PATH", clean_env);
320 RemoveEnv("COLLECT_GCC", clean_env);
321
Reid Spencer445564a2004-11-20 20:02:56 +0000322
323 // Run GCC to assemble and link the program into native code.
324 //
325 // Note:
326 // We can't just assemble and link the file with the system assembler
327 // and linker because we don't know where to put the _start symbol.
328 // GCC mysteriously knows how to do it.
Reid Spencerf6358c72004-12-19 18:00:56 +0000329 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000330 args.push_back(gcc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000331 args.push_back("-fno-strict-aliasing");
332 args.push_back("-O3");
333 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000334 args.push_back(OutputFilename.c_str());
335 args.push_back(InputFilename.c_str());
Reid Spencer445564a2004-11-20 20:02:56 +0000336
Reid Spenceraf303d52006-06-07 23:03:13 +0000337 // Add in the library paths
338 for (unsigned index = 0; index < LibPaths.size(); index++) {
339 args.push_back("-L");
340 args.push_back(LibPaths[index].c_str());
341 }
342
343 // Add the requested options
344 for (unsigned index = 0; index < XLinker.size(); index++) {
345 args.push_back(XLinker[index].c_str());
346 args.push_back(Libraries[index].c_str());
347 }
348
Reid Spencer445564a2004-11-20 20:02:56 +0000349 // Add in the libraries to link.
Reid Spencer49521432006-11-11 11:54:25 +0000350 for (unsigned index = 0; index < LinkItems.size(); index++)
351 if (LinkItems[index].first != "crtend") {
352 if (LinkItems[index].second) {
Reid Spencer2803b4c2006-11-11 19:59:25 +0000353 std::string lib_name = "-l" + LinkItems[index].first;
354 args.push_back(lib_name.c_str());
Reid Spencer49521432006-11-11 11:54:25 +0000355 } else
Reid Spencer2803b4c2006-11-11 19:59:25 +0000356 args.push_back(LinkItems[index].first.c_str());
Reid Spencerf6358c72004-12-19 18:00:56 +0000357 }
Reid Spenceraf303d52006-06-07 23:03:13 +0000358
Chris Lattner7456e3c2005-02-13 23:10:45 +0000359 args.push_back(0);
Reid Spencer445564a2004-11-20 20:02:56 +0000360
Reid Spencer3b726392007-04-29 23:59:47 +0000361 if (Verbose) {
362 cout << "Generating Native Executable With:\n";
363 PrintCommand(args);
364 }
365
Reid Spencer445564a2004-11-20 20:02:56 +0000366 // Run the compiler to assembly and link together the program.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000367 int R = sys::Program::ExecuteAndWait(
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000368 gcc, &args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
Chris Lattner2f863622006-05-14 18:38:13 +0000369 delete [] clean_env;
370 return R;
Reid Spencer445564a2004-11-20 20:02:56 +0000371}
372
Reid Spencerc0af3f02004-09-13 01:27:53 +0000373/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
374/// bytecode file for the program.
375static void EmitShellScript(char **argv) {
Reid Spencer3b726392007-04-29 23:59:47 +0000376 if (Verbose)
377 cout << "Emitting Shell Script\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000378#if defined(_WIN32) || defined(__CYGWIN__)
379 // Windows doesn't support #!/bin/sh style shell scripts in .exe files. To
380 // support windows systems, we copy the llvm-stub.exe executable from the
381 // build tree to the destination file.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000382 std::string ErrMsg;
Reid Spencer8d8b41d2004-12-22 13:50:17 +0000383 sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0]);
Reid Spencer708585a2007-02-09 03:08:06 +0000384 if (llvmstub.isEmpty())
385 PrintAndExit("Could not find llvm-stub.exe executable!");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000386
Reid Spencer708585a2007-02-09 03:08:06 +0000387 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
388 PrintAndExit(ErrMsg);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000389
Reid Spencerc0af3f02004-09-13 01:27:53 +0000390 return;
391#endif
392
393 // Output the script to start the program...
394 std::ofstream Out2(OutputFilename.c_str());
395 if (!Out2.good())
Reid Spencer708585a2007-02-09 03:08:06 +0000396 PrintAndExit("error opening '" + OutputFilename + "' for writing!");
Reid Spencerc0af3f02004-09-13 01:27:53 +0000397
398 Out2 << "#!/bin/sh\n";
399 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
400 Out2 << "lli=${LLVMINTERP-lli}\n";
401 Out2 << "exec $lli \\\n";
402 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
403 LibPaths.push_back("/lib");
404 LibPaths.push_back("/usr/lib");
405 LibPaths.push_back("/usr/X11R6/lib");
406 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
407 // shared object at all! See RH 8: plain text.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000408 std::vector<std::string>::iterator libc =
Reid Spencerc0af3f02004-09-13 01:27:53 +0000409 std::find(Libraries.begin(), Libraries.end(), "c");
410 if (libc != Libraries.end()) Libraries.erase(libc);
411 // List all the shared object (native) libraries this executable will need
412 // on the command line, so that we don't have to do this manually!
Misha Brukman3da94ae2005-04-22 00:00:37 +0000413 for (std::vector<std::string>::iterator i = Libraries.begin(),
Reid Spencerc0af3f02004-09-13 01:27:53 +0000414 e = Libraries.end(); i != e; ++i) {
Reid Spencerc4064132004-12-13 03:01:14 +0000415 sys::Path FullLibraryPath = sys::Path::FindLibrary(*i);
416 if (!FullLibraryPath.isEmpty() && FullLibraryPath.isDynamicLibrary())
417 Out2 << " -load=" << FullLibraryPath.toString() << " \\\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000418 }
419 Out2 << " $0.bc ${1+\"$@\"}\n";
420 Out2.close();
421}
422
Reid Spencerc4064132004-12-13 03:01:14 +0000423// BuildLinkItems -- This function generates a LinkItemList for the LinkItems
424// linker function by combining the Files and Libraries in the order they were
425// declared on the command line.
426static void BuildLinkItems(
427 Linker::ItemList& Items,
428 const cl::list<std::string>& Files,
429 const cl::list<std::string>& Libraries) {
430
Misha Brukman3da94ae2005-04-22 00:00:37 +0000431 // Build the list of linkage items for LinkItems.
Reid Spencerc4064132004-12-13 03:01:14 +0000432
433 cl::list<std::string>::const_iterator fileIt = Files.begin();
434 cl::list<std::string>::const_iterator libIt = Libraries.begin();
435
436 int libPos = -1, filePos = -1;
Reid Spencer05f7e792004-12-13 17:18:19 +0000437 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
Reid Spencerc4064132004-12-13 03:01:14 +0000438 if (libIt != Libraries.end())
439 libPos = Libraries.getPosition(libIt - Libraries.begin());
440 else
441 libPos = -1;
442 if (fileIt != Files.end())
443 filePos = Files.getPosition(fileIt - Files.begin());
444 else
445 filePos = -1;
446
447 if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
448 // Add a source file
449 Items.push_back(std::make_pair(*fileIt++, false));
450 } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
451 // Add a library
452 Items.push_back(std::make_pair(*libIt++, true));
Reid Spencerc4064132004-12-13 03:01:14 +0000453 }
454 }
455}
456
Reid Spencer445564a2004-11-20 20:02:56 +0000457// Rightly this should go in a header file but it just seems such a waste.
458namespace llvm {
459extern void Optimize(Module*);
460}
461
Reid Spencerc0af3f02004-09-13 01:27:53 +0000462int main(int argc, char **argv, char **envp) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000463 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000464 try {
465 // Initial global variable above for convenience printing of program name.
466 progname = sys::Path(argv[0]).getBasename();
Misha Brukman3da94ae2005-04-22 00:00:37 +0000467
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000468 // Parse the command line options
469 cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
470 sys::PrintStackTraceOnErrorSignal();
Reid Spencerc0af3f02004-09-13 01:27:53 +0000471
Reid Spencer49521432006-11-11 11:54:25 +0000472 // Construct a Linker (now that Verbose is set)
473 Linker TheLinker(progname, OutputFilename, Verbose);
Reid Spencerc82a5da2007-04-04 06:34:22 +0000474
475 // Keep track of the native link items (versus the bytecode items)
476 Linker::ItemList NativeLinkItems;
Reid Spencer49521432006-11-11 11:54:25 +0000477
478 // Add library paths to the linker
Reid Spencer78df5c32006-03-06 06:38:19 +0000479 TheLinker.addPaths(LibPaths);
480 TheLinker.addSystemPaths();
481
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000482 // Remove any consecutive duplicates of the same library...
483 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
484 Libraries.end());
Reid Spencerc0af3f02004-09-13 01:27:53 +0000485
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000486 if (LinkAsLibrary) {
487 std::vector<sys::Path> Files;
488 for (unsigned i = 0; i < InputFilenames.size(); ++i )
489 Files.push_back(sys::Path(InputFilenames[i]));
490 if (TheLinker.LinkInFiles(Files))
491 return 1; // Error already printed
Reid Spencer6b463b22004-12-08 05:17:40 +0000492
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000493 // The libraries aren't linked in but are noted as "dependent" in the
494 // module.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000495 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000496 E = Libraries.end(); I != E ; ++I) {
497 TheLinker.getModule()->addLibrary(*I);
498 }
Reid Spencerc0af3f02004-09-13 01:27:53 +0000499 } else {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000500 // Build a list of the items from our command line
501 Linker::ItemList Items;
502 BuildLinkItems(Items, InputFilenames, Libraries);
503
504 // Link all the items together
Reid Spencerc82a5da2007-04-04 06:34:22 +0000505 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
Reid Spencer708585a2007-02-09 03:08:06 +0000506 return 1; // Error already printed
Reid Spencerc0af3f02004-09-13 01:27:53 +0000507 }
Reid Spencerc0af3f02004-09-13 01:27:53 +0000508
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000509 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
510
511 // Optimize the module
512 Optimize(Composite.get());
513
514 // Generate the bytecode for the optimized module.
515 std::string RealBytecodeOutput = OutputFilename;
516 if (!LinkAsLibrary) RealBytecodeOutput += ".bc";
517 GenerateBytecode(Composite.get(), RealBytecodeOutput);
518
519 // If we are not linking a library, generate either a native executable
520 // or a JIT shell script, depending upon what the user wants.
521 if (!LinkAsLibrary) {
Reid Spencer73a74be2005-12-21 05:03:23 +0000522 // If the user wants to run a post-link optimization, run it now.
523 if (!PostLinkOpts.empty()) {
524 std::vector<std::string> opts = PostLinkOpts;
525 for (std::vector<std::string>::iterator I = opts.begin(),
526 E = opts.end(); I != E; ++I) {
527 sys::Path prog(*I);
528 if (!prog.canExecute()) {
529 prog = sys::Program::FindProgramByName(*I);
530 if (prog.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000531 PrintAndExit(std::string("Optimization program '") + *I +
Reid Spencer73a74be2005-12-21 05:03:23 +0000532 "' is not found or not executable.");
533 }
534 // Get the program arguments
535 sys::Path tmp_output("opt_result");
Reid Spencere5c9cb52006-08-23 00:39:35 +0000536 std::string ErrMsg;
Reid Spencer708585a2007-02-09 03:08:06 +0000537 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
538 PrintAndExit(ErrMsg);
539
Reid Spencer73a74be2005-12-21 05:03:23 +0000540 const char* args[4];
541 args[0] = I->c_str();
542 args[1] = RealBytecodeOutput.c_str();
543 args[2] = tmp_output.c_str();
544 args[3] = 0;
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000545 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
Chris Lattnerbb3f3d32007-05-06 05:56:58 +0000546 if (tmp_output.isBytecodeFile() || tmp_output.isBitcodeFile()) {
Reid Spencer73a74be2005-12-21 05:03:23 +0000547 sys::Path target(RealBytecodeOutput);
548 target.eraseFromDisk();
Reid Spencer708585a2007-02-09 03:08:06 +0000549 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
550 PrintAndExit(ErrMsg, 2);
Reid Spencer73a74be2005-12-21 05:03:23 +0000551 } else
Reid Spencer708585a2007-02-09 03:08:06 +0000552 PrintAndExit("Post-link optimization output is not bytecode");
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000553 } else {
Reid Spencer708585a2007-02-09 03:08:06 +0000554 PrintAndExit(ErrMsg);
Reid Spencer73a74be2005-12-21 05:03:23 +0000555 }
556 }
557 }
558
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000559 // If the user wants to generate a native executable, compile it from the
560 // bytecode file.
561 //
562 // Otherwise, create a script that will run the bytecode through the JIT.
563 if (Native) {
564 // Name of the Assembly Language output file
565 sys::Path AssemblyFile ( OutputFilename);
566 AssemblyFile.appendSuffix("s");
567
568 // Mark the output files for removal if we get an interrupt.
569 sys::RemoveFileOnSignal(AssemblyFile);
570 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
571
572 // Determine the locations of the llc and gcc programs.
573 sys::Path llc = FindExecutable("llc", argv[0]);
574 if (llc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000575 PrintAndExit("Failed to find llc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000576
577 sys::Path gcc = FindExecutable("gcc", argv[0]);
578 if (gcc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000579 PrintAndExit("Failed to find gcc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000580
581 // Generate an assembly language file for the bytecode.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000582 std::string ErrMsg;
583 if (0 != GenerateAssembly(AssemblyFile.toString(), RealBytecodeOutput,
Reid Spencer708585a2007-02-09 03:08:06 +0000584 llc, ErrMsg))
585 PrintAndExit(ErrMsg);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000586
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000587 if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
Reid Spencerc82a5da2007-04-04 06:34:22 +0000588 NativeLinkItems, gcc, envp, ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000589 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000590
591 // Remove the assembly language file.
Reid Spencera229c5c2005-07-08 03:08:58 +0000592 AssemblyFile.eraseFromDisk();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000593 } else if (NativeCBE) {
594 sys::Path CFile (OutputFilename);
595 CFile.appendSuffix("cbe.c");
596
597 // Mark the output files for removal if we get an interrupt.
598 sys::RemoveFileOnSignal(CFile);
599 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
600
601 // Determine the locations of the llc and gcc programs.
602 sys::Path llc = FindExecutable("llc", argv[0]);
603 if (llc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000604 PrintAndExit("Failed to find llc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000605
606 sys::Path gcc = FindExecutable("gcc", argv[0]);
607 if (gcc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000608 PrintAndExit("Failed to find gcc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000609
610 // Generate an assembly language file for the bytecode.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000611 std::string ErrMsg;
612 if (0 != GenerateCFile(
Reid Spencer708585a2007-02-09 03:08:06 +0000613 CFile.toString(), RealBytecodeOutput, llc, ErrMsg))
614 PrintAndExit(ErrMsg);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000615
Reid Spencerc82a5da2007-04-04 06:34:22 +0000616 if (0 != GenerateNative(OutputFilename, CFile.toString(),
617 NativeLinkItems, gcc, envp, ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000618 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000619
620 // Remove the assembly language file.
Reid Spencera229c5c2005-07-08 03:08:58 +0000621 CFile.eraseFromDisk();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000622
623 } else {
624 EmitShellScript(argv);
625 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000626
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000627 // Make the script executable...
Reid Spencere1647f42006-08-22 23:27:23 +0000628 std::string ErrMsg;
Reid Spencer708585a2007-02-09 03:08:06 +0000629 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
630 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000631
632 // Make the bytecode file readable and directly executable in LLEE as well
Reid Spencer708585a2007-02-09 03:08:06 +0000633 if (sys::Path(RealBytecodeOutput).makeExecutableOnDisk(&ErrMsg))
634 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000635
Reid Spencer708585a2007-02-09 03:08:06 +0000636 if (sys::Path(RealBytecodeOutput).makeReadableOnDisk(&ErrMsg))
637 PrintAndExit(ErrMsg);
638 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000639 } catch (const std::string& msg) {
Reid Spencer708585a2007-02-09 03:08:06 +0000640 PrintAndExit(msg,2);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000641 } catch (...) {
Reid Spencer708585a2007-02-09 03:08:06 +0000642 PrintAndExit("Unexpected unknown exception occurred.", 2);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000643 }
Reid Spencer708585a2007-02-09 03:08:06 +0000644
645 // Graceful exit
646 return 0;
Reid Spencerc0af3f02004-09-13 01:27:53 +0000647}