blob: 8fcaefde0b564fa2f7ac1d8fcfa3b172f817049d [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
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 bitcode 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
23#include "llvm/LinkAllVMCore.h"
24#include "llvm/Linker.h"
Owen Anderson25209b42009-07-01 16:58:40 +000025#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/System/Program.h"
27#include "llvm/Module.h"
28#include "llvm/PassManager.h"
29#include "llvm/Bitcode/ReaderWriter.h"
30#include "llvm/Target/TargetData.h"
31#include "llvm/Target/TargetMachine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/FileUtilities.h"
34#include "llvm/Support/ManagedStatic.h"
35#include "llvm/Support/MemoryBuffer.h"
Chris Lattnere6012df2009-03-06 05:34:10 +000036#include "llvm/Support/PrettyStackTrace.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/Support/SystemUtils.h"
Chris Lattnerb1aa85b2009-08-23 22:45:37 +000038#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#include "llvm/System/Signals.h"
Chris Lattner2587bd92009-01-05 19:01:32 +000040#include "llvm/Config/config.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041#include <memory>
Anton Korobeynikov357a27d2008-02-20 11:08:44 +000042#include <cstring>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043using namespace llvm;
44
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +000045// Rightly this should go in a header file but it just seems such a waste.
46namespace llvm {
47extern void Optimize(Module*);
48}
49
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050// Input/Output Options
51static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
52 cl::desc("<input bitcode files>"));
53
54static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
55 cl::desc("Override output filename"),
56 cl::value_desc("filename"));
57
Sanjiv Guptad5b21d62009-07-22 18:41:45 +000058static cl::opt<std::string> BitcodeOutputFilename("b", cl::init(""),
59 cl::desc("Override bitcode output filename"),
60 cl::value_desc("filename"));
61
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062static cl::opt<bool> Verbose("v",
63 cl::desc("Print information about actions taken"));
64
65static cl::list<std::string> LibPaths("L", cl::Prefix,
66 cl::desc("Specify a library search path"),
67 cl::value_desc("directory"));
68
Chris Lattner5247f172008-01-27 22:58:59 +000069static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
70 cl::desc("Specify a framework search path"),
71 cl::value_desc("directory"));
72
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073static cl::list<std::string> Libraries("l", cl::Prefix,
74 cl::desc("Specify libraries to link to"),
75 cl::value_desc("library prefix"));
76
Chris Lattner5247f172008-01-27 22:58:59 +000077static cl::list<std::string> Frameworks("framework",
78 cl::desc("Specify frameworks to link to"),
79 cl::value_desc("framework"));
80
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081// Options to control the linking, optimization, and code gen processes
82static cl::opt<bool> LinkAsLibrary("link-as-library",
83 cl::desc("Link the .bc files together as a library, not an executable"));
84
85static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
86 cl::desc("Alias for -link-as-library"));
87
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088static cl::opt<bool> Native("native",
89 cl::desc("Generate a native binary instead of a shell script"));
90
91static cl::opt<bool>NativeCBE("native-cbe",
92 cl::desc("Generate a native binary with the C backend and GCC"));
93
94static cl::list<std::string> PostLinkOpts("post-link-opts",
95 cl::value_desc("path"),
96 cl::desc("Run one or more optimization programs after linking"));
97
98static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
99 cl::desc("Pass options to the system linker"));
100
101// Compatibility options that llvm-ld ignores but are supported for
102// compatibility with LD
103static cl::opt<std::string> CO3("soname", cl::Hidden,
104 cl::desc("Compatibility option: ignored"));
105
106static cl::opt<std::string> CO4("version-script", cl::Hidden,
107 cl::desc("Compatibility option: ignored"));
108
109static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
110 cl::desc("Compatibility option: ignored"));
111
112static cl::opt<std::string> CO6("h", cl::Hidden,
113 cl::desc("Compatibility option: ignored"));
114
115static cl::opt<bool> CO7("start-group", cl::Hidden,
116 cl::desc("Compatibility option: ignored"));
117
118static cl::opt<bool> CO8("end-group", cl::Hidden,
119 cl::desc("Compatibility option: ignored"));
120
Andrew Lenharth45d0e162008-11-19 17:00:08 +0000121static cl::opt<std::string> CO9("m", cl::Hidden,
122 cl::desc("Compatibility option: ignored"));
123
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124/// This is just for convenience so it doesn't have to be passed around
125/// everywhere.
126static std::string progname;
127
128/// PrintAndExit - Prints a message to standard error and exits with error code
129///
130/// Inputs:
131/// Message - The message to print to standard error.
132///
133static void PrintAndExit(const std::string &Message, int errcode = 1) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000134 errs() << progname << ": " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 llvm_shutdown();
136 exit(errcode);
137}
138
139static void PrintCommand(const std::vector<const char*> &args) {
140 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
141 for (; I != E; ++I)
142 if (*I)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000143 outs() << "'" << *I << "'" << " ";
144 outs() << "\n"; outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145}
146
147/// CopyEnv - This function takes an array of environment variables and makes a
148/// copy of it. This copy can then be manipulated any way the caller likes
149/// without affecting the process's real environment.
150///
151/// Inputs:
152/// envp - An array of C strings containing an environment.
153///
154/// Return value:
155/// NULL - An error occurred.
156///
157/// Otherwise, a pointer to a new array of C strings is returned. Every string
158/// in the array is a duplicate of the one in the original array (i.e. we do
159/// not copy the char *'s from one array to another).
160///
161static char ** CopyEnv(char ** const envp) {
162 // Count the number of entries in the old list;
163 unsigned entries; // The number of entries in the old environment list
164 for (entries = 0; envp[entries] != NULL; entries++)
165 /*empty*/;
166
167 // Add one more entry for the NULL pointer that ends the list.
168 ++entries;
169
170 // If there are no entries at all, just return NULL.
171 if (entries == 0)
172 return NULL;
173
174 // Allocate a new environment list.
175 char **newenv = new char* [entries];
176 if ((newenv = new char* [entries]) == NULL)
177 return NULL;
178
179 // Make a copy of the list. Don't forget the NULL that ends the list.
180 entries = 0;
181 while (envp[entries] != NULL) {
182 newenv[entries] = new char[strlen (envp[entries]) + 1];
183 strcpy (newenv[entries], envp[entries]);
184 ++entries;
185 }
186 newenv[entries] = NULL;
187
188 return newenv;
189}
190
191
192/// RemoveEnv - Remove the specified environment variable from the environment
193/// array.
194///
195/// Inputs:
196/// name - The name of the variable to remove. It cannot be NULL.
197/// envp - The array of environment variables. It cannot be NULL.
198///
199/// Notes:
200/// This is mainly done because functions to remove items from the environment
201/// are not available across all platforms. In particular, Solaris does not
202/// seem to have an unsetenv() function or a setenv() function (or they are
203/// undocumented if they do exist).
204///
205static void RemoveEnv(const char * name, char ** const envp) {
206 for (unsigned index=0; envp[index] != NULL; index++) {
207 // Find the first equals sign in the array and make it an EOS character.
208 char *p = strchr (envp[index], '=');
209 if (p == NULL)
210 continue;
211 else
212 *p = '\0';
213
214 // Compare the two strings. If they are equal, zap this string.
215 // Otherwise, restore it.
216 if (!strcmp(name, envp[index]))
217 *envp[index] = '\0';
218 else
219 *p = '=';
220 }
221
222 return;
223}
224
225/// GenerateBitcode - generates a bitcode file from the module provided
226void GenerateBitcode(Module* M, const std::string& FileName) {
227
228 if (Verbose)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000229 outs() << "Generating Bitcode To " << FileName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230
231 // Create the output file.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000232 std::string ErrorInfo;
Chris Lattnerfdcd46e2009-08-23 02:51:22 +0000233 raw_fd_ostream Out(FileName.c_str(), ErrorInfo,
234 raw_fd_ostream::F_Force | raw_fd_ostream::F_Binary);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000235 if (!ErrorInfo.empty())
236 PrintAndExit(ErrorInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237
238 // Ensure that the bitcode file gets removed from the disk if we get a
239 // terminating signal.
240 sys::RemoveFileOnSignal(sys::Path(FileName));
241
242 // Write it out
243 WriteBitcodeToFile(M, Out);
244
245 // Close the bitcode file.
246 Out.close();
247}
248
249/// GenerateAssembly - generates a native assembly language source file from the
250/// specified bitcode file.
251///
252/// Inputs:
253/// InputFilename - The name of the input bitcode file.
254/// OutputFilename - The name of the file to generate.
255/// llc - The pathname to use for LLC.
256/// envp - The environment to use when running LLC.
257///
258/// Return non-zero value on error.
259///
260static int GenerateAssembly(const std::string &OutputFilename,
261 const std::string &InputFilename,
262 const sys::Path &llc,
263 std::string &ErrMsg ) {
264 // Run LLC to convert the bitcode file into assembly code.
265 std::vector<const char*> args;
266 args.push_back(llc.c_str());
Argiris Kirtzidisbbef6c22008-06-27 15:08:59 +0000267 // We will use GCC to assemble the program so set the assembly syntax to AT&T,
268 // regardless of what the target in the bitcode file is.
269 args.push_back("-x86-asm-syntax=att");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 args.push_back("-f");
271 args.push_back("-o");
272 args.push_back(OutputFilename.c_str());
273 args.push_back(InputFilename.c_str());
274 args.push_back(0);
275
276 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000277 outs() << "Generating Assembly With: \n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278 PrintCommand(args);
279 }
280
281 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
282}
283
284/// GenerateCFile - generates a C source file from the specified bitcode file.
285static int GenerateCFile(const std::string &OutputFile,
286 const std::string &InputFile,
287 const sys::Path &llc,
288 std::string& ErrMsg) {
289 // Run LLC to convert the bitcode file into C.
290 std::vector<const char*> args;
291 args.push_back(llc.c_str());
292 args.push_back("-march=c");
293 args.push_back("-f");
294 args.push_back("-o");
295 args.push_back(OutputFile.c_str());
296 args.push_back(InputFile.c_str());
297 args.push_back(0);
298
299 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000300 outs() << "Generating C Source With: \n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 PrintCommand(args);
302 }
303
304 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
305}
306
307/// GenerateNative - generates a native object file from the
308/// specified bitcode file.
309///
310/// Inputs:
311/// InputFilename - The name of the input bitcode file.
312/// OutputFilename - The name of the file to generate.
313/// NativeLinkItems - The native libraries, files, code with which to link
314/// LibPaths - The list of directories in which to find libraries.
Chris Lattner5247f172008-01-27 22:58:59 +0000315/// FrameworksPaths - The list of directories in which to find frameworks.
316/// Frameworks - The list of frameworks (dynamic libraries)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317/// gcc - The pathname to use for GGC.
318/// envp - A copy of the process's current environment.
319///
320/// Outputs:
321/// None.
322///
323/// Returns non-zero value on error.
324///
325static int GenerateNative(const std::string &OutputFilename,
326 const std::string &InputFilename,
327 const Linker::ItemList &LinkItems,
328 const sys::Path &gcc, char ** const envp,
329 std::string& ErrMsg) {
330 // Remove these environment variables from the environment of the
331 // programs that we will execute. It appears that GCC sets these
332 // environment variables so that the programs it uses can configure
333 // themselves identically.
334 //
335 // However, when we invoke GCC below, we want it to use its normal
336 // configuration. Hence, we must sanitize its environment.
337 char ** clean_env = CopyEnv(envp);
338 if (clean_env == NULL)
339 return 1;
340 RemoveEnv("LIBRARY_PATH", clean_env);
341 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
342 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
343 RemoveEnv("COMPILER_PATH", clean_env);
344 RemoveEnv("COLLECT_GCC", clean_env);
345
346
347 // Run GCC to assemble and link the program into native code.
348 //
349 // Note:
350 // We can't just assemble and link the file with the system assembler
351 // and linker because we don't know where to put the _start symbol.
352 // GCC mysteriously knows how to do it.
353 std::vector<std::string> args;
354 args.push_back(gcc.c_str());
355 args.push_back("-fno-strict-aliasing");
356 args.push_back("-O3");
357 args.push_back("-o");
358 args.push_back(OutputFilename);
359 args.push_back(InputFilename);
360
Chris Lattner5247f172008-01-27 22:58:59 +0000361 // Add in the library and framework paths
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 for (unsigned index = 0; index < LibPaths.size(); index++) {
Chris Lattner5247f172008-01-27 22:58:59 +0000363 args.push_back("-L" + LibPaths[index]);
364 }
365 for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
366 args.push_back("-F" + FrameworkPaths[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 }
368
369 // Add the requested options
Chris Lattner890df602008-01-09 01:01:17 +0000370 for (unsigned index = 0; index < XLinker.size(); index++)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 args.push_back(XLinker[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372
373 // Add in the libraries to link.
374 for (unsigned index = 0; index < LinkItems.size(); index++)
375 if (LinkItems[index].first != "crtend") {
376 if (LinkItems[index].second)
377 args.push_back("-l" + LinkItems[index].first);
378 else
379 args.push_back(LinkItems[index].first);
380 }
381
Chris Lattner5247f172008-01-27 22:58:59 +0000382 // Add in frameworks to link.
383 for (unsigned index = 0; index < Frameworks.size(); index++) {
384 args.push_back("-framework");
385 args.push_back(Frameworks[index]);
386 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387
388 // Now that "args" owns all the std::strings for the arguments, call the c_str
389 // method to get the underlying string array. We do this game so that the
390 // std::string array is guaranteed to outlive the const char* array.
391 std::vector<const char *> Args;
392 for (unsigned i = 0, e = args.size(); i != e; ++i)
393 Args.push_back(args[i].c_str());
394 Args.push_back(0);
395
396 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000397 outs() << "Generating Native Executable With:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 PrintCommand(Args);
399 }
400
401 // Run the compiler to assembly and link together the program.
402 int R = sys::Program::ExecuteAndWait(
403 gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
404 delete [] clean_env;
405 return R;
406}
407
408/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
409/// bitcode file for the program.
410static void EmitShellScript(char **argv) {
411 if (Verbose)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000412 outs() << "Emitting Shell Script\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413#if defined(_WIN32) || defined(__CYGWIN__)
414 // Windows doesn't support #!/bin/sh style shell scripts in .exe files. To
415 // support windows systems, we copy the llvm-stub.exe executable from the
416 // build tree to the destination file.
417 std::string ErrMsg;
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000418 sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0],
Dan Gohman108e0ed2009-08-05 21:03:39 +0000419 (void *)(intptr_t)&Optimize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420 if (llvmstub.isEmpty())
421 PrintAndExit("Could not find llvm-stub.exe executable!");
422
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000423 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424 PrintAndExit(ErrMsg);
425
426 return;
427#endif
428
429 // Output the script to start the program...
Dan Gohmanb714fab2009-07-16 15:30:09 +0000430 std::string ErrorInfo;
Chris Lattnerfdcd46e2009-08-23 02:51:22 +0000431 raw_fd_ostream Out2(OutputFilename.c_str(), ErrorInfo,
432 llvm::raw_fd_ostream::F_Force);
Dan Gohmanb714fab2009-07-16 15:30:09 +0000433 if (!ErrorInfo.empty())
434 PrintAndExit(ErrorInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435
436 Out2 << "#!/bin/sh\n";
437 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
438 Out2 << "lli=${LLVMINTERP-lli}\n";
439 Out2 << "exec $lli \\\n";
440 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
441 LibPaths.push_back("/lib");
442 LibPaths.push_back("/usr/lib");
443 LibPaths.push_back("/usr/X11R6/lib");
444 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
445 // shared object at all! See RH 8: plain text.
446 std::vector<std::string>::iterator libc =
447 std::find(Libraries.begin(), Libraries.end(), "c");
448 if (libc != Libraries.end()) Libraries.erase(libc);
449 // List all the shared object (native) libraries this executable will need
450 // on the command line, so that we don't have to do this manually!
451 for (std::vector<std::string>::iterator i = Libraries.begin(),
452 e = Libraries.end(); i != e; ++i) {
Chris Lattner2587bd92009-01-05 19:01:32 +0000453 // try explicit -L arguments first:
454 sys::Path FullLibraryPath;
455 for (cl::list<std::string>::const_iterator P = LibPaths.begin(),
456 E = LibPaths.end(); P != E; ++P) {
457 FullLibraryPath = *P;
458 FullLibraryPath.appendComponent("lib" + *i);
459 FullLibraryPath.appendSuffix(&(LTDL_SHLIB_EXT[1]));
460 if (!FullLibraryPath.isEmpty()) {
461 if (!FullLibraryPath.isDynamicLibrary()) {
462 // Not a native shared library; mark as invalid
463 FullLibraryPath = sys::Path();
464 } else break;
465 }
466 }
467 if (FullLibraryPath.isEmpty())
468 FullLibraryPath = sys::Path::FindLibrary(*i);
469 if (!FullLibraryPath.isEmpty())
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000470 Out2 << " -load=" << FullLibraryPath.str() << " \\\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 }
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000472 Out2 << " " << BitcodeOutputFilename << " ${1+\"$@\"}\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 Out2.close();
474}
475
476// BuildLinkItems -- This function generates a LinkItemList for the LinkItems
477// linker function by combining the Files and Libraries in the order they were
478// declared on the command line.
479static void BuildLinkItems(
480 Linker::ItemList& Items,
481 const cl::list<std::string>& Files,
482 const cl::list<std::string>& Libraries) {
483
484 // Build the list of linkage items for LinkItems.
485
486 cl::list<std::string>::const_iterator fileIt = Files.begin();
487 cl::list<std::string>::const_iterator libIt = Libraries.begin();
488
489 int libPos = -1, filePos = -1;
490 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
491 if (libIt != Libraries.end())
492 libPos = Libraries.getPosition(libIt - Libraries.begin());
493 else
494 libPos = -1;
495 if (fileIt != Files.end())
496 filePos = Files.getPosition(fileIt - Files.begin());
497 else
498 filePos = -1;
499
500 if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
501 // Add a source file
502 Items.push_back(std::make_pair(*fileIt++, false));
503 } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
504 // Add a library
505 Items.push_back(std::make_pair(*libIt++, true));
506 }
507 }
508}
509
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510int main(int argc, char **argv, char **envp) {
Chris Lattnere6012df2009-03-06 05:34:10 +0000511 // Print a stack trace if we signal out.
512 sys::PrintStackTraceOnErrorSignal();
513 PrettyStackTraceProgram X(argc, argv);
Owen Anderson25209b42009-07-01 16:58:40 +0000514
Owen Andersone84b8b32009-07-15 22:16:10 +0000515 LLVMContext &Context = getGlobalContext();
Chris Lattnere6012df2009-03-06 05:34:10 +0000516 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 try {
518 // Initial global variable above for convenience printing of program name.
519 progname = sys::Path(argv[0]).getBasename();
520
521 // Parse the command line options
Dan Gohman6099df82007-10-08 15:45:12 +0000522 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523
524 // Construct a Linker (now that Verbose is set)
Owen Andersona148fdd2009-07-01 21:22:36 +0000525 Linker TheLinker(progname, OutputFilename, Context, Verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526
527 // Keep track of the native link items (versus the bitcode items)
528 Linker::ItemList NativeLinkItems;
529
530 // Add library paths to the linker
531 TheLinker.addPaths(LibPaths);
532 TheLinker.addSystemPaths();
533
534 // Remove any consecutive duplicates of the same library...
535 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
536 Libraries.end());
537
538 if (LinkAsLibrary) {
539 std::vector<sys::Path> Files;
540 for (unsigned i = 0; i < InputFilenames.size(); ++i )
541 Files.push_back(sys::Path(InputFilenames[i]));
542 if (TheLinker.LinkInFiles(Files))
543 return 1; // Error already printed
544
545 // The libraries aren't linked in but are noted as "dependent" in the
546 // module.
547 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
548 E = Libraries.end(); I != E ; ++I) {
549 TheLinker.getModule()->addLibrary(*I);
550 }
551 } else {
552 // Build a list of the items from our command line
553 Linker::ItemList Items;
554 BuildLinkItems(Items, InputFilenames, Libraries);
555
556 // Link all the items together
557 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
558 return 1; // Error already printed
559 }
560
561 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
562
563 // Optimize the module
564 Optimize(Composite.get());
565
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000566#if defined(_WIN32) || defined(__CYGWIN__)
567 if (!LinkAsLibrary) {
Argiris Kirtzidis9ff7cee2008-06-15 15:20:16 +0000568 // Default to "a.exe" instead of "a.out".
569 if (OutputFilename.getNumOccurrences() == 0)
570 OutputFilename = "a.exe";
571
572 // If there is no suffix add an "exe" one.
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000573 sys::Path ExeFile( OutputFilename );
Argiris Kirtzidis9ff7cee2008-06-15 15:20:16 +0000574 if (ExeFile.getSuffix() == "") {
575 ExeFile.appendSuffix("exe");
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000576 OutputFilename = ExeFile.str();
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000577 }
578 }
579#endif
580
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 // Generate the bitcode for the optimized module.
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000582 // If -b wasn't specified, use the name specified
583 // with -o to construct BitcodeOutputFilename.
584 if (BitcodeOutputFilename.empty()) {
585 BitcodeOutputFilename = OutputFilename;
586 if (!LinkAsLibrary) BitcodeOutputFilename += ".bc";
587 }
Argiris Kirtzidis20d70e72008-06-15 12:01:16 +0000588
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000589 GenerateBitcode(Composite.get(), BitcodeOutputFilename);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590
591 // If we are not linking a library, generate either a native executable
592 // or a JIT shell script, depending upon what the user wants.
593 if (!LinkAsLibrary) {
594 // If the user wants to run a post-link optimization, run it now.
595 if (!PostLinkOpts.empty()) {
596 std::vector<std::string> opts = PostLinkOpts;
597 for (std::vector<std::string>::iterator I = opts.begin(),
598 E = opts.end(); I != E; ++I) {
599 sys::Path prog(*I);
600 if (!prog.canExecute()) {
601 prog = sys::Program::FindProgramByName(*I);
602 if (prog.isEmpty())
603 PrintAndExit(std::string("Optimization program '") + *I +
604 "' is not found or not executable.");
605 }
606 // Get the program arguments
607 sys::Path tmp_output("opt_result");
608 std::string ErrMsg;
609 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
610 PrintAndExit(ErrMsg);
611
612 const char* args[4];
613 args[0] = I->c_str();
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000614 args[1] = BitcodeOutputFilename.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 args[2] = tmp_output.c_str();
616 args[3] = 0;
617 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
618 if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000619 sys::Path target(BitcodeOutputFilename);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 target.eraseFromDisk();
621 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
622 PrintAndExit(ErrMsg, 2);
623 } else
624 PrintAndExit("Post-link optimization output is not bitcode");
625 } else {
626 PrintAndExit(ErrMsg);
627 }
628 }
629 }
630
631 // If the user wants to generate a native executable, compile it from the
632 // bitcode file.
633 //
634 // Otherwise, create a script that will run the bitcode through the JIT.
635 if (Native) {
636 // Name of the Assembly Language output file
637 sys::Path AssemblyFile ( OutputFilename);
638 AssemblyFile.appendSuffix("s");
639
640 // Mark the output files for removal if we get an interrupt.
641 sys::RemoveFileOnSignal(AssemblyFile);
642 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
643
644 // Determine the locations of the llc and gcc programs.
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000645 sys::Path llc = FindExecutable("llc", argv[0],
Dan Gohman108e0ed2009-08-05 21:03:39 +0000646 (void *)(intptr_t)&Optimize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647 if (llc.isEmpty())
648 PrintAndExit("Failed to find llc");
649
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000650 sys::Path gcc = sys::Program::FindProgramByName("gcc");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651 if (gcc.isEmpty())
652 PrintAndExit("Failed to find gcc");
653
654 // Generate an assembly language file for the bitcode.
655 std::string ErrMsg;
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000656 if (0 != GenerateAssembly(AssemblyFile.str(), BitcodeOutputFilename,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 llc, ErrMsg))
658 PrintAndExit(ErrMsg);
659
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000660 if (0 != GenerateNative(OutputFilename, AssemblyFile.str(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661 NativeLinkItems, gcc, envp, ErrMsg))
662 PrintAndExit(ErrMsg);
663
664 // Remove the assembly language file.
665 AssemblyFile.eraseFromDisk();
666 } else if (NativeCBE) {
667 sys::Path CFile (OutputFilename);
668 CFile.appendSuffix("cbe.c");
669
670 // Mark the output files for removal if we get an interrupt.
671 sys::RemoveFileOnSignal(CFile);
672 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
673
674 // Determine the locations of the llc and gcc programs.
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000675 sys::Path llc = FindExecutable("llc", argv[0],
Dan Gohman108e0ed2009-08-05 21:03:39 +0000676 (void *)(intptr_t)&Optimize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 if (llc.isEmpty())
678 PrintAndExit("Failed to find llc");
679
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000680 sys::Path gcc = sys::Program::FindProgramByName("gcc");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681 if (gcc.isEmpty())
682 PrintAndExit("Failed to find gcc");
683
684 // Generate an assembly language file for the bitcode.
685 std::string ErrMsg;
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000686 if (GenerateCFile(CFile.str(), BitcodeOutputFilename, llc, ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 PrintAndExit(ErrMsg);
688
Chris Lattnerb1aa85b2009-08-23 22:45:37 +0000689 if (GenerateNative(OutputFilename, CFile.str(),
690 NativeLinkItems, gcc, envp, ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 PrintAndExit(ErrMsg);
692
693 // Remove the assembly language file.
694 CFile.eraseFromDisk();
695
696 } else {
697 EmitShellScript(argv);
698 }
699
700 // Make the script executable...
701 std::string ErrMsg;
702 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
703 PrintAndExit(ErrMsg);
704
705 // Make the bitcode file readable and directly executable in LLEE as well
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000706 if (sys::Path(BitcodeOutputFilename).makeExecutableOnDisk(&ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707 PrintAndExit(ErrMsg);
708
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000709 if (sys::Path(BitcodeOutputFilename).makeReadableOnDisk(&ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 PrintAndExit(ErrMsg);
711 }
712 } catch (const std::string& msg) {
713 PrintAndExit(msg,2);
714 } catch (...) {
715 PrintAndExit("Unexpected unknown exception occurred.", 2);
716 }
717
718 // Graceful exit
719 return 0;
720}