blob: a4bd1108375925b3b7f647cfdddafedb4fcfa9dc [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"
38#include "llvm/System/Signals.h"
Chris Lattner2587bd92009-01-05 19:01:32 +000039#include "llvm/Config/config.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include <memory>
Anton Korobeynikov357a27d2008-02-20 11:08:44 +000041#include <cstring>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042using namespace llvm;
43
44// Input/Output Options
45static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
46 cl::desc("<input bitcode files>"));
47
48static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
49 cl::desc("Override output filename"),
50 cl::value_desc("filename"));
51
52static cl::opt<bool> Verbose("v",
53 cl::desc("Print information about actions taken"));
54
55static cl::list<std::string> LibPaths("L", cl::Prefix,
56 cl::desc("Specify a library search path"),
57 cl::value_desc("directory"));
58
Chris Lattner5247f172008-01-27 22:58:59 +000059static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
60 cl::desc("Specify a framework search path"),
61 cl::value_desc("directory"));
62
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063static cl::list<std::string> Libraries("l", cl::Prefix,
64 cl::desc("Specify libraries to link to"),
65 cl::value_desc("library prefix"));
66
Chris Lattner5247f172008-01-27 22:58:59 +000067static cl::list<std::string> Frameworks("framework",
68 cl::desc("Specify frameworks to link to"),
69 cl::value_desc("framework"));
70
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071// Options to control the linking, optimization, and code gen processes
72static cl::opt<bool> LinkAsLibrary("link-as-library",
73 cl::desc("Link the .bc files together as a library, not an executable"));
74
75static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
76 cl::desc("Alias for -link-as-library"));
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078static cl::opt<bool> Native("native",
79 cl::desc("Generate a native binary instead of a shell script"));
80
81static cl::opt<bool>NativeCBE("native-cbe",
82 cl::desc("Generate a native binary with the C backend and GCC"));
83
84static cl::list<std::string> PostLinkOpts("post-link-opts",
85 cl::value_desc("path"),
86 cl::desc("Run one or more optimization programs after linking"));
87
88static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
89 cl::desc("Pass options to the system linker"));
90
91// Compatibility options that llvm-ld ignores but are supported for
92// compatibility with LD
93static cl::opt<std::string> CO3("soname", cl::Hidden,
94 cl::desc("Compatibility option: ignored"));
95
96static cl::opt<std::string> CO4("version-script", cl::Hidden,
97 cl::desc("Compatibility option: ignored"));
98
99static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
100 cl::desc("Compatibility option: ignored"));
101
102static cl::opt<std::string> CO6("h", cl::Hidden,
103 cl::desc("Compatibility option: ignored"));
104
105static cl::opt<bool> CO7("start-group", cl::Hidden,
106 cl::desc("Compatibility option: ignored"));
107
108static cl::opt<bool> CO8("end-group", cl::Hidden,
109 cl::desc("Compatibility option: ignored"));
110
Andrew Lenharth45d0e162008-11-19 17:00:08 +0000111static cl::opt<std::string> CO9("m", cl::Hidden,
112 cl::desc("Compatibility option: ignored"));
113
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114/// This is just for convenience so it doesn't have to be passed around
115/// everywhere.
116static std::string progname;
117
118/// PrintAndExit - Prints a message to standard error and exits with error code
119///
120/// Inputs:
121/// Message - The message to print to standard error.
122///
123static void PrintAndExit(const std::string &Message, int errcode = 1) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000124 errs() << progname << ": " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 llvm_shutdown();
126 exit(errcode);
127}
128
129static void PrintCommand(const std::vector<const char*> &args) {
130 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
131 for (; I != E; ++I)
132 if (*I)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000133 outs() << "'" << *I << "'" << " ";
134 outs() << "\n"; outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135}
136
137/// CopyEnv - This function takes an array of environment variables and makes a
138/// copy of it. This copy can then be manipulated any way the caller likes
139/// without affecting the process's real environment.
140///
141/// Inputs:
142/// envp - An array of C strings containing an environment.
143///
144/// Return value:
145/// NULL - An error occurred.
146///
147/// Otherwise, a pointer to a new array of C strings is returned. Every string
148/// in the array is a duplicate of the one in the original array (i.e. we do
149/// not copy the char *'s from one array to another).
150///
151static char ** CopyEnv(char ** const envp) {
152 // Count the number of entries in the old list;
153 unsigned entries; // The number of entries in the old environment list
154 for (entries = 0; envp[entries] != NULL; entries++)
155 /*empty*/;
156
157 // Add one more entry for the NULL pointer that ends the list.
158 ++entries;
159
160 // If there are no entries at all, just return NULL.
161 if (entries == 0)
162 return NULL;
163
164 // Allocate a new environment list.
165 char **newenv = new char* [entries];
166 if ((newenv = new char* [entries]) == NULL)
167 return NULL;
168
169 // Make a copy of the list. Don't forget the NULL that ends the list.
170 entries = 0;
171 while (envp[entries] != NULL) {
172 newenv[entries] = new char[strlen (envp[entries]) + 1];
173 strcpy (newenv[entries], envp[entries]);
174 ++entries;
175 }
176 newenv[entries] = NULL;
177
178 return newenv;
179}
180
181
182/// RemoveEnv - Remove the specified environment variable from the environment
183/// array.
184///
185/// Inputs:
186/// name - The name of the variable to remove. It cannot be NULL.
187/// envp - The array of environment variables. It cannot be NULL.
188///
189/// Notes:
190/// This is mainly done because functions to remove items from the environment
191/// are not available across all platforms. In particular, Solaris does not
192/// seem to have an unsetenv() function or a setenv() function (or they are
193/// undocumented if they do exist).
194///
195static void RemoveEnv(const char * name, char ** const envp) {
196 for (unsigned index=0; envp[index] != NULL; index++) {
197 // Find the first equals sign in the array and make it an EOS character.
198 char *p = strchr (envp[index], '=');
199 if (p == NULL)
200 continue;
201 else
202 *p = '\0';
203
204 // Compare the two strings. If they are equal, zap this string.
205 // Otherwise, restore it.
206 if (!strcmp(name, envp[index]))
207 *envp[index] = '\0';
208 else
209 *p = '=';
210 }
211
212 return;
213}
214
215/// GenerateBitcode - generates a bitcode file from the module provided
216void GenerateBitcode(Module* M, const std::string& FileName) {
217
218 if (Verbose)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000219 outs() << "Generating Bitcode To " << FileName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220
221 // Create the output file.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000222 std::string ErrorInfo;
223 raw_fd_ostream Out(FileName.c_str(), /*Binary=*/true, /*Force=*/true,
224 ErrorInfo);
225 if (!ErrorInfo.empty())
226 PrintAndExit(ErrorInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227
228 // Ensure that the bitcode file gets removed from the disk if we get a
229 // terminating signal.
230 sys::RemoveFileOnSignal(sys::Path(FileName));
231
232 // Write it out
233 WriteBitcodeToFile(M, Out);
234
235 // Close the bitcode file.
236 Out.close();
237}
238
239/// GenerateAssembly - generates a native assembly language source file from the
240/// specified bitcode file.
241///
242/// Inputs:
243/// InputFilename - The name of the input bitcode file.
244/// OutputFilename - The name of the file to generate.
245/// llc - The pathname to use for LLC.
246/// envp - The environment to use when running LLC.
247///
248/// Return non-zero value on error.
249///
250static int GenerateAssembly(const std::string &OutputFilename,
251 const std::string &InputFilename,
252 const sys::Path &llc,
253 std::string &ErrMsg ) {
254 // Run LLC to convert the bitcode file into assembly code.
255 std::vector<const char*> args;
256 args.push_back(llc.c_str());
Argiris Kirtzidisbbef6c22008-06-27 15:08:59 +0000257 // We will use GCC to assemble the program so set the assembly syntax to AT&T,
258 // regardless of what the target in the bitcode file is.
259 args.push_back("-x86-asm-syntax=att");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 args.push_back("-f");
261 args.push_back("-o");
262 args.push_back(OutputFilename.c_str());
263 args.push_back(InputFilename.c_str());
264 args.push_back(0);
265
266 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000267 outs() << "Generating Assembly With: \n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268 PrintCommand(args);
269 }
270
271 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
272}
273
274/// GenerateCFile - generates a C source file from the specified bitcode file.
275static int GenerateCFile(const std::string &OutputFile,
276 const std::string &InputFile,
277 const sys::Path &llc,
278 std::string& ErrMsg) {
279 // Run LLC to convert the bitcode file into C.
280 std::vector<const char*> args;
281 args.push_back(llc.c_str());
282 args.push_back("-march=c");
283 args.push_back("-f");
284 args.push_back("-o");
285 args.push_back(OutputFile.c_str());
286 args.push_back(InputFile.c_str());
287 args.push_back(0);
288
289 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000290 outs() << "Generating C Source With: \n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 PrintCommand(args);
292 }
293
294 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
295}
296
297/// GenerateNative - generates a native object file from the
298/// specified bitcode file.
299///
300/// Inputs:
301/// InputFilename - The name of the input bitcode file.
302/// OutputFilename - The name of the file to generate.
303/// NativeLinkItems - The native libraries, files, code with which to link
304/// LibPaths - The list of directories in which to find libraries.
Chris Lattner5247f172008-01-27 22:58:59 +0000305/// FrameworksPaths - The list of directories in which to find frameworks.
306/// Frameworks - The list of frameworks (dynamic libraries)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307/// gcc - The pathname to use for GGC.
308/// envp - A copy of the process's current environment.
309///
310/// Outputs:
311/// None.
312///
313/// Returns non-zero value on error.
314///
315static int GenerateNative(const std::string &OutputFilename,
316 const std::string &InputFilename,
317 const Linker::ItemList &LinkItems,
318 const sys::Path &gcc, char ** const envp,
319 std::string& ErrMsg) {
320 // Remove these environment variables from the environment of the
321 // programs that we will execute. It appears that GCC sets these
322 // environment variables so that the programs it uses can configure
323 // themselves identically.
324 //
325 // However, when we invoke GCC below, we want it to use its normal
326 // configuration. Hence, we must sanitize its environment.
327 char ** clean_env = CopyEnv(envp);
328 if (clean_env == NULL)
329 return 1;
330 RemoveEnv("LIBRARY_PATH", clean_env);
331 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
332 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
333 RemoveEnv("COMPILER_PATH", clean_env);
334 RemoveEnv("COLLECT_GCC", clean_env);
335
336
337 // Run GCC to assemble and link the program into native code.
338 //
339 // Note:
340 // We can't just assemble and link the file with the system assembler
341 // and linker because we don't know where to put the _start symbol.
342 // GCC mysteriously knows how to do it.
343 std::vector<std::string> args;
344 args.push_back(gcc.c_str());
345 args.push_back("-fno-strict-aliasing");
346 args.push_back("-O3");
347 args.push_back("-o");
348 args.push_back(OutputFilename);
349 args.push_back(InputFilename);
350
Chris Lattner5247f172008-01-27 22:58:59 +0000351 // Add in the library and framework paths
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 for (unsigned index = 0; index < LibPaths.size(); index++) {
Chris Lattner5247f172008-01-27 22:58:59 +0000353 args.push_back("-L" + LibPaths[index]);
354 }
355 for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
356 args.push_back("-F" + FrameworkPaths[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 }
358
359 // Add the requested options
Chris Lattner890df602008-01-09 01:01:17 +0000360 for (unsigned index = 0; index < XLinker.size(); index++)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 args.push_back(XLinker[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362
363 // Add in the libraries to link.
364 for (unsigned index = 0; index < LinkItems.size(); index++)
365 if (LinkItems[index].first != "crtend") {
366 if (LinkItems[index].second)
367 args.push_back("-l" + LinkItems[index].first);
368 else
369 args.push_back(LinkItems[index].first);
370 }
371
Chris Lattner5247f172008-01-27 22:58:59 +0000372 // Add in frameworks to link.
373 for (unsigned index = 0; index < Frameworks.size(); index++) {
374 args.push_back("-framework");
375 args.push_back(Frameworks[index]);
376 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377
378 // Now that "args" owns all the std::strings for the arguments, call the c_str
379 // method to get the underlying string array. We do this game so that the
380 // std::string array is guaranteed to outlive the const char* array.
381 std::vector<const char *> Args;
382 for (unsigned i = 0, e = args.size(); i != e; ++i)
383 Args.push_back(args[i].c_str());
384 Args.push_back(0);
385
386 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000387 outs() << "Generating Native Executable With:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 PrintCommand(Args);
389 }
390
391 // Run the compiler to assembly and link together the program.
392 int R = sys::Program::ExecuteAndWait(
393 gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
394 delete [] clean_env;
395 return R;
396}
397
398/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
399/// bitcode file for the program.
400static void EmitShellScript(char **argv) {
401 if (Verbose)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000402 outs() << "Emitting Shell Script\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403#if defined(_WIN32) || defined(__CYGWIN__)
404 // Windows doesn't support #!/bin/sh style shell scripts in .exe files. To
405 // support windows systems, we copy the llvm-stub.exe executable from the
406 // build tree to the destination file.
407 std::string ErrMsg;
408 sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0]);
409 if (llvmstub.isEmpty())
410 PrintAndExit("Could not find llvm-stub.exe executable!");
411
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000412 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 PrintAndExit(ErrMsg);
414
415 return;
416#endif
417
418 // Output the script to start the program...
Dan Gohmanb714fab2009-07-16 15:30:09 +0000419 std::string ErrorInfo;
420 raw_fd_ostream Out2(OutputFilename.c_str(), /*Binary=*/false, /*Force=*/true,
421 ErrorInfo);
422 if (!ErrorInfo.empty())
423 PrintAndExit(ErrorInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424
425 Out2 << "#!/bin/sh\n";
426 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
427 Out2 << "lli=${LLVMINTERP-lli}\n";
428 Out2 << "exec $lli \\\n";
429 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
430 LibPaths.push_back("/lib");
431 LibPaths.push_back("/usr/lib");
432 LibPaths.push_back("/usr/X11R6/lib");
433 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
434 // shared object at all! See RH 8: plain text.
435 std::vector<std::string>::iterator libc =
436 std::find(Libraries.begin(), Libraries.end(), "c");
437 if (libc != Libraries.end()) Libraries.erase(libc);
438 // List all the shared object (native) libraries this executable will need
439 // on the command line, so that we don't have to do this manually!
440 for (std::vector<std::string>::iterator i = Libraries.begin(),
441 e = Libraries.end(); i != e; ++i) {
Chris Lattner2587bd92009-01-05 19:01:32 +0000442 // try explicit -L arguments first:
443 sys::Path FullLibraryPath;
444 for (cl::list<std::string>::const_iterator P = LibPaths.begin(),
445 E = LibPaths.end(); P != E; ++P) {
446 FullLibraryPath = *P;
447 FullLibraryPath.appendComponent("lib" + *i);
448 FullLibraryPath.appendSuffix(&(LTDL_SHLIB_EXT[1]));
449 if (!FullLibraryPath.isEmpty()) {
450 if (!FullLibraryPath.isDynamicLibrary()) {
451 // Not a native shared library; mark as invalid
452 FullLibraryPath = sys::Path();
453 } else break;
454 }
455 }
456 if (FullLibraryPath.isEmpty())
457 FullLibraryPath = sys::Path::FindLibrary(*i);
458 if (!FullLibraryPath.isEmpty())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459 Out2 << " -load=" << FullLibraryPath.toString() << " \\\n";
460 }
461 Out2 << " $0.bc ${1+\"$@\"}\n";
462 Out2.close();
463}
464
465// BuildLinkItems -- This function generates a LinkItemList for the LinkItems
466// linker function by combining the Files and Libraries in the order they were
467// declared on the command line.
468static void BuildLinkItems(
469 Linker::ItemList& Items,
470 const cl::list<std::string>& Files,
471 const cl::list<std::string>& Libraries) {
472
473 // Build the list of linkage items for LinkItems.
474
475 cl::list<std::string>::const_iterator fileIt = Files.begin();
476 cl::list<std::string>::const_iterator libIt = Libraries.begin();
477
478 int libPos = -1, filePos = -1;
479 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
480 if (libIt != Libraries.end())
481 libPos = Libraries.getPosition(libIt - Libraries.begin());
482 else
483 libPos = -1;
484 if (fileIt != Files.end())
485 filePos = Files.getPosition(fileIt - Files.begin());
486 else
487 filePos = -1;
488
489 if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
490 // Add a source file
491 Items.push_back(std::make_pair(*fileIt++, false));
492 } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
493 // Add a library
494 Items.push_back(std::make_pair(*libIt++, true));
495 }
496 }
497}
498
499// Rightly this should go in a header file but it just seems such a waste.
500namespace llvm {
501extern void Optimize(Module*);
502}
503
504int main(int argc, char **argv, char **envp) {
Chris Lattnere6012df2009-03-06 05:34:10 +0000505 // Print a stack trace if we signal out.
506 sys::PrintStackTraceOnErrorSignal();
507 PrettyStackTraceProgram X(argc, argv);
Owen Anderson25209b42009-07-01 16:58:40 +0000508
Owen Andersone84b8b32009-07-15 22:16:10 +0000509 LLVMContext &Context = getGlobalContext();
Chris Lattnere6012df2009-03-06 05:34:10 +0000510 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 try {
512 // Initial global variable above for convenience printing of program name.
513 progname = sys::Path(argv[0]).getBasename();
514
515 // Parse the command line options
Dan Gohman6099df82007-10-08 15:45:12 +0000516 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517
518 // Construct a Linker (now that Verbose is set)
Owen Andersona148fdd2009-07-01 21:22:36 +0000519 Linker TheLinker(progname, OutputFilename, Context, Verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520
521 // Keep track of the native link items (versus the bitcode items)
522 Linker::ItemList NativeLinkItems;
523
524 // Add library paths to the linker
525 TheLinker.addPaths(LibPaths);
526 TheLinker.addSystemPaths();
527
528 // Remove any consecutive duplicates of the same library...
529 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
530 Libraries.end());
531
532 if (LinkAsLibrary) {
533 std::vector<sys::Path> Files;
534 for (unsigned i = 0; i < InputFilenames.size(); ++i )
535 Files.push_back(sys::Path(InputFilenames[i]));
536 if (TheLinker.LinkInFiles(Files))
537 return 1; // Error already printed
538
539 // The libraries aren't linked in but are noted as "dependent" in the
540 // module.
541 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
542 E = Libraries.end(); I != E ; ++I) {
543 TheLinker.getModule()->addLibrary(*I);
544 }
545 } else {
546 // Build a list of the items from our command line
547 Linker::ItemList Items;
548 BuildLinkItems(Items, InputFilenames, Libraries);
549
550 // Link all the items together
551 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
552 return 1; // Error already printed
553 }
554
555 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
556
557 // Optimize the module
558 Optimize(Composite.get());
559
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000560#if defined(_WIN32) || defined(__CYGWIN__)
561 if (!LinkAsLibrary) {
Argiris Kirtzidis9ff7cee2008-06-15 15:20:16 +0000562 // Default to "a.exe" instead of "a.out".
563 if (OutputFilename.getNumOccurrences() == 0)
564 OutputFilename = "a.exe";
565
566 // If there is no suffix add an "exe" one.
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000567 sys::Path ExeFile( OutputFilename );
Argiris Kirtzidis9ff7cee2008-06-15 15:20:16 +0000568 if (ExeFile.getSuffix() == "") {
569 ExeFile.appendSuffix("exe");
570 OutputFilename = ExeFile.toString();
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000571 }
572 }
573#endif
574
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 // Generate the bitcode for the optimized module.
576 std::string RealBitcodeOutput = OutputFilename;
Argiris Kirtzidis20d70e72008-06-15 12:01:16 +0000577
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
579 GenerateBitcode(Composite.get(), RealBitcodeOutput);
580
581 // If we are not linking a library, generate either a native executable
582 // or a JIT shell script, depending upon what the user wants.
583 if (!LinkAsLibrary) {
584 // If the user wants to run a post-link optimization, run it now.
585 if (!PostLinkOpts.empty()) {
586 std::vector<std::string> opts = PostLinkOpts;
587 for (std::vector<std::string>::iterator I = opts.begin(),
588 E = opts.end(); I != E; ++I) {
589 sys::Path prog(*I);
590 if (!prog.canExecute()) {
591 prog = sys::Program::FindProgramByName(*I);
592 if (prog.isEmpty())
593 PrintAndExit(std::string("Optimization program '") + *I +
594 "' is not found or not executable.");
595 }
596 // Get the program arguments
597 sys::Path tmp_output("opt_result");
598 std::string ErrMsg;
599 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
600 PrintAndExit(ErrMsg);
601
602 const char* args[4];
603 args[0] = I->c_str();
604 args[1] = RealBitcodeOutput.c_str();
605 args[2] = tmp_output.c_str();
606 args[3] = 0;
607 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
608 if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
609 sys::Path target(RealBitcodeOutput);
610 target.eraseFromDisk();
611 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
612 PrintAndExit(ErrMsg, 2);
613 } else
614 PrintAndExit("Post-link optimization output is not bitcode");
615 } else {
616 PrintAndExit(ErrMsg);
617 }
618 }
619 }
620
621 // If the user wants to generate a native executable, compile it from the
622 // bitcode file.
623 //
624 // Otherwise, create a script that will run the bitcode through the JIT.
625 if (Native) {
626 // Name of the Assembly Language output file
627 sys::Path AssemblyFile ( OutputFilename);
628 AssemblyFile.appendSuffix("s");
629
630 // Mark the output files for removal if we get an interrupt.
631 sys::RemoveFileOnSignal(AssemblyFile);
632 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
633
634 // Determine the locations of the llc and gcc programs.
635 sys::Path llc = FindExecutable("llc", argv[0]);
636 if (llc.isEmpty())
637 PrintAndExit("Failed to find llc");
638
639 sys::Path gcc = FindExecutable("gcc", argv[0]);
640 if (gcc.isEmpty())
641 PrintAndExit("Failed to find gcc");
642
643 // Generate an assembly language file for the bitcode.
644 std::string ErrMsg;
645 if (0 != GenerateAssembly(AssemblyFile.toString(), RealBitcodeOutput,
646 llc, ErrMsg))
647 PrintAndExit(ErrMsg);
648
649 if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
650 NativeLinkItems, gcc, envp, ErrMsg))
651 PrintAndExit(ErrMsg);
652
653 // Remove the assembly language file.
654 AssemblyFile.eraseFromDisk();
655 } else if (NativeCBE) {
656 sys::Path CFile (OutputFilename);
657 CFile.appendSuffix("cbe.c");
658
659 // Mark the output files for removal if we get an interrupt.
660 sys::RemoveFileOnSignal(CFile);
661 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
662
663 // Determine the locations of the llc and gcc programs.
664 sys::Path llc = FindExecutable("llc", argv[0]);
665 if (llc.isEmpty())
666 PrintAndExit("Failed to find llc");
667
668 sys::Path gcc = FindExecutable("gcc", argv[0]);
669 if (gcc.isEmpty())
670 PrintAndExit("Failed to find gcc");
671
672 // Generate an assembly language file for the bitcode.
673 std::string ErrMsg;
674 if (0 != GenerateCFile(
675 CFile.toString(), RealBitcodeOutput, llc, ErrMsg))
676 PrintAndExit(ErrMsg);
677
678 if (0 != GenerateNative(OutputFilename, CFile.toString(),
679 NativeLinkItems, gcc, envp, ErrMsg))
680 PrintAndExit(ErrMsg);
681
682 // Remove the assembly language file.
683 CFile.eraseFromDisk();
684
685 } else {
686 EmitShellScript(argv);
687 }
688
689 // Make the script executable...
690 std::string ErrMsg;
691 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
692 PrintAndExit(ErrMsg);
693
694 // Make the bitcode file readable and directly executable in LLEE as well
695 if (sys::Path(RealBitcodeOutput).makeExecutableOnDisk(&ErrMsg))
696 PrintAndExit(ErrMsg);
697
698 if (sys::Path(RealBitcodeOutput).makeReadableOnDisk(&ErrMsg))
699 PrintAndExit(ErrMsg);
700 }
701 } catch (const std::string& msg) {
702 PrintAndExit(msg,2);
703 } catch (...) {
704 PrintAndExit("Unexpected unknown exception occurred.", 2);
705 }
706
707 // Graceful exit
708 return 0;
709}