blob: 0b8269c7f245b9a42e5a7fa561914a03a9e4fade [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"
25#include "llvm/System/Program.h"
26#include "llvm/Module.h"
27#include "llvm/PassManager.h"
28#include "llvm/Bitcode/ReaderWriter.h"
29#include "llvm/Target/TargetData.h"
30#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetMachineRegistry.h"
32#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/FileUtilities.h"
34#include "llvm/Support/ManagedStatic.h"
35#include "llvm/Support/MemoryBuffer.h"
36#include "llvm/Support/Streams.h"
37#include "llvm/Support/SystemUtils.h"
38#include "llvm/System/Signals.h"
39#include <fstream>
40#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
111/// This is just for convenience so it doesn't have to be passed around
112/// everywhere.
113static std::string progname;
114
115/// PrintAndExit - Prints a message to standard error and exits with error code
116///
117/// Inputs:
118/// Message - The message to print to standard error.
119///
120static void PrintAndExit(const std::string &Message, int errcode = 1) {
121 cerr << progname << ": " << Message << "\n";
122 llvm_shutdown();
123 exit(errcode);
124}
125
126static void PrintCommand(const std::vector<const char*> &args) {
127 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
128 for (; I != E; ++I)
129 if (*I)
130 cout << "'" << *I << "'" << " ";
131 cout << "\n" << std::flush;
132}
133
134/// CopyEnv - This function takes an array of environment variables and makes a
135/// copy of it. This copy can then be manipulated any way the caller likes
136/// without affecting the process's real environment.
137///
138/// Inputs:
139/// envp - An array of C strings containing an environment.
140///
141/// Return value:
142/// NULL - An error occurred.
143///
144/// Otherwise, a pointer to a new array of C strings is returned. Every string
145/// in the array is a duplicate of the one in the original array (i.e. we do
146/// not copy the char *'s from one array to another).
147///
148static char ** CopyEnv(char ** const envp) {
149 // Count the number of entries in the old list;
150 unsigned entries; // The number of entries in the old environment list
151 for (entries = 0; envp[entries] != NULL; entries++)
152 /*empty*/;
153
154 // Add one more entry for the NULL pointer that ends the list.
155 ++entries;
156
157 // If there are no entries at all, just return NULL.
158 if (entries == 0)
159 return NULL;
160
161 // Allocate a new environment list.
162 char **newenv = new char* [entries];
163 if ((newenv = new char* [entries]) == NULL)
164 return NULL;
165
166 // Make a copy of the list. Don't forget the NULL that ends the list.
167 entries = 0;
168 while (envp[entries] != NULL) {
169 newenv[entries] = new char[strlen (envp[entries]) + 1];
170 strcpy (newenv[entries], envp[entries]);
171 ++entries;
172 }
173 newenv[entries] = NULL;
174
175 return newenv;
176}
177
178
179/// RemoveEnv - Remove the specified environment variable from the environment
180/// array.
181///
182/// Inputs:
183/// name - The name of the variable to remove. It cannot be NULL.
184/// envp - The array of environment variables. It cannot be NULL.
185///
186/// Notes:
187/// This is mainly done because functions to remove items from the environment
188/// are not available across all platforms. In particular, Solaris does not
189/// seem to have an unsetenv() function or a setenv() function (or they are
190/// undocumented if they do exist).
191///
192static void RemoveEnv(const char * name, char ** const envp) {
193 for (unsigned index=0; envp[index] != NULL; index++) {
194 // Find the first equals sign in the array and make it an EOS character.
195 char *p = strchr (envp[index], '=');
196 if (p == NULL)
197 continue;
198 else
199 *p = '\0';
200
201 // Compare the two strings. If they are equal, zap this string.
202 // Otherwise, restore it.
203 if (!strcmp(name, envp[index]))
204 *envp[index] = '\0';
205 else
206 *p = '=';
207 }
208
209 return;
210}
211
212/// GenerateBitcode - generates a bitcode file from the module provided
213void GenerateBitcode(Module* M, const std::string& FileName) {
214
215 if (Verbose)
216 cout << "Generating Bitcode To " << FileName << '\n';
217
218 // Create the output file.
219 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
220 std::ios::binary;
221 std::ofstream Out(FileName.c_str(), io_mode);
222 if (!Out.good())
223 PrintAndExit("error opening '" + FileName + "' for writing!");
224
225 // Ensure that the bitcode file gets removed from the disk if we get a
226 // terminating signal.
227 sys::RemoveFileOnSignal(sys::Path(FileName));
228
229 // Write it out
230 WriteBitcodeToFile(M, Out);
231
232 // Close the bitcode file.
233 Out.close();
234}
235
236/// GenerateAssembly - generates a native assembly language source file from the
237/// specified bitcode file.
238///
239/// Inputs:
240/// InputFilename - The name of the input bitcode file.
241/// OutputFilename - The name of the file to generate.
242/// llc - The pathname to use for LLC.
243/// envp - The environment to use when running LLC.
244///
245/// Return non-zero value on error.
246///
247static int GenerateAssembly(const std::string &OutputFilename,
248 const std::string &InputFilename,
249 const sys::Path &llc,
250 std::string &ErrMsg ) {
251 // Run LLC to convert the bitcode file into assembly code.
252 std::vector<const char*> args;
253 args.push_back(llc.c_str());
254 args.push_back("-f");
255 args.push_back("-o");
256 args.push_back(OutputFilename.c_str());
257 args.push_back(InputFilename.c_str());
258 args.push_back(0);
259
260 if (Verbose) {
261 cout << "Generating Assembly With: \n";
262 PrintCommand(args);
263 }
264
265 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
266}
267
268/// GenerateCFile - generates a C source file from the specified bitcode file.
269static int GenerateCFile(const std::string &OutputFile,
270 const std::string &InputFile,
271 const sys::Path &llc,
272 std::string& ErrMsg) {
273 // Run LLC to convert the bitcode file into C.
274 std::vector<const char*> args;
275 args.push_back(llc.c_str());
276 args.push_back("-march=c");
277 args.push_back("-f");
278 args.push_back("-o");
279 args.push_back(OutputFile.c_str());
280 args.push_back(InputFile.c_str());
281 args.push_back(0);
282
283 if (Verbose) {
284 cout << "Generating C Source With: \n";
285 PrintCommand(args);
286 }
287
288 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
289}
290
291/// GenerateNative - generates a native object file from the
292/// specified bitcode file.
293///
294/// Inputs:
295/// InputFilename - The name of the input bitcode file.
296/// OutputFilename - The name of the file to generate.
297/// NativeLinkItems - The native libraries, files, code with which to link
298/// LibPaths - The list of directories in which to find libraries.
Chris Lattner5247f172008-01-27 22:58:59 +0000299/// FrameworksPaths - The list of directories in which to find frameworks.
300/// Frameworks - The list of frameworks (dynamic libraries)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301/// gcc - The pathname to use for GGC.
302/// envp - A copy of the process's current environment.
303///
304/// Outputs:
305/// None.
306///
307/// Returns non-zero value on error.
308///
309static int GenerateNative(const std::string &OutputFilename,
310 const std::string &InputFilename,
311 const Linker::ItemList &LinkItems,
312 const sys::Path &gcc, char ** const envp,
313 std::string& ErrMsg) {
314 // Remove these environment variables from the environment of the
315 // programs that we will execute. It appears that GCC sets these
316 // environment variables so that the programs it uses can configure
317 // themselves identically.
318 //
319 // However, when we invoke GCC below, we want it to use its normal
320 // configuration. Hence, we must sanitize its environment.
321 char ** clean_env = CopyEnv(envp);
322 if (clean_env == NULL)
323 return 1;
324 RemoveEnv("LIBRARY_PATH", clean_env);
325 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
326 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
327 RemoveEnv("COMPILER_PATH", clean_env);
328 RemoveEnv("COLLECT_GCC", clean_env);
329
330
331 // Run GCC to assemble and link the program into native code.
332 //
333 // Note:
334 // We can't just assemble and link the file with the system assembler
335 // and linker because we don't know where to put the _start symbol.
336 // GCC mysteriously knows how to do it.
337 std::vector<std::string> args;
338 args.push_back(gcc.c_str());
339 args.push_back("-fno-strict-aliasing");
340 args.push_back("-O3");
341 args.push_back("-o");
342 args.push_back(OutputFilename);
343 args.push_back(InputFilename);
344
Chris Lattner5247f172008-01-27 22:58:59 +0000345 // Add in the library and framework paths
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 for (unsigned index = 0; index < LibPaths.size(); index++) {
Chris Lattner5247f172008-01-27 22:58:59 +0000347 args.push_back("-L" + LibPaths[index]);
348 }
349 for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
350 args.push_back("-F" + FrameworkPaths[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351 }
352
353 // Add the requested options
Chris Lattner890df602008-01-09 01:01:17 +0000354 for (unsigned index = 0; index < XLinker.size(); index++)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355 args.push_back(XLinker[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356
357 // Add in the libraries to link.
358 for (unsigned index = 0; index < LinkItems.size(); index++)
359 if (LinkItems[index].first != "crtend") {
360 if (LinkItems[index].second)
361 args.push_back("-l" + LinkItems[index].first);
362 else
363 args.push_back(LinkItems[index].first);
364 }
365
Chris Lattner5247f172008-01-27 22:58:59 +0000366 // Add in frameworks to link.
367 for (unsigned index = 0; index < Frameworks.size(); index++) {
368 args.push_back("-framework");
369 args.push_back(Frameworks[index]);
370 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371
372 // Now that "args" owns all the std::strings for the arguments, call the c_str
373 // method to get the underlying string array. We do this game so that the
374 // std::string array is guaranteed to outlive the const char* array.
375 std::vector<const char *> Args;
376 for (unsigned i = 0, e = args.size(); i != e; ++i)
377 Args.push_back(args[i].c_str());
378 Args.push_back(0);
379
380 if (Verbose) {
381 cout << "Generating Native Executable With:\n";
382 PrintCommand(Args);
383 }
384
385 // Run the compiler to assembly and link together the program.
386 int R = sys::Program::ExecuteAndWait(
387 gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
388 delete [] clean_env;
389 return R;
390}
391
392/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
393/// bitcode file for the program.
394static void EmitShellScript(char **argv) {
395 if (Verbose)
396 cout << "Emitting Shell Script\n";
397#if defined(_WIN32) || defined(__CYGWIN__)
398 // Windows doesn't support #!/bin/sh style shell scripts in .exe files. To
399 // support windows systems, we copy the llvm-stub.exe executable from the
400 // build tree to the destination file.
401 std::string ErrMsg;
402 sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0]);
403 if (llvmstub.isEmpty())
404 PrintAndExit("Could not find llvm-stub.exe executable!");
405
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000406 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 PrintAndExit(ErrMsg);
408
409 return;
410#endif
411
412 // Output the script to start the program...
413 std::ofstream Out2(OutputFilename.c_str());
414 if (!Out2.good())
415 PrintAndExit("error opening '" + OutputFilename + "' for writing!");
416
417 Out2 << "#!/bin/sh\n";
418 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
419 Out2 << "lli=${LLVMINTERP-lli}\n";
420 Out2 << "exec $lli \\\n";
421 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
422 LibPaths.push_back("/lib");
423 LibPaths.push_back("/usr/lib");
424 LibPaths.push_back("/usr/X11R6/lib");
425 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
426 // shared object at all! See RH 8: plain text.
427 std::vector<std::string>::iterator libc =
428 std::find(Libraries.begin(), Libraries.end(), "c");
429 if (libc != Libraries.end()) Libraries.erase(libc);
430 // List all the shared object (native) libraries this executable will need
431 // on the command line, so that we don't have to do this manually!
432 for (std::vector<std::string>::iterator i = Libraries.begin(),
433 e = Libraries.end(); i != e; ++i) {
434 sys::Path FullLibraryPath = sys::Path::FindLibrary(*i);
435 if (!FullLibraryPath.isEmpty() && FullLibraryPath.isDynamicLibrary())
436 Out2 << " -load=" << FullLibraryPath.toString() << " \\\n";
437 }
438 Out2 << " $0.bc ${1+\"$@\"}\n";
439 Out2.close();
440}
441
442// BuildLinkItems -- This function generates a LinkItemList for the LinkItems
443// linker function by combining the Files and Libraries in the order they were
444// declared on the command line.
445static void BuildLinkItems(
446 Linker::ItemList& Items,
447 const cl::list<std::string>& Files,
448 const cl::list<std::string>& Libraries) {
449
450 // Build the list of linkage items for LinkItems.
451
452 cl::list<std::string>::const_iterator fileIt = Files.begin();
453 cl::list<std::string>::const_iterator libIt = Libraries.begin();
454
455 int libPos = -1, filePos = -1;
456 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
457 if (libIt != Libraries.end())
458 libPos = Libraries.getPosition(libIt - Libraries.begin());
459 else
460 libPos = -1;
461 if (fileIt != Files.end())
462 filePos = Files.getPosition(fileIt - Files.begin());
463 else
464 filePos = -1;
465
466 if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
467 // Add a source file
468 Items.push_back(std::make_pair(*fileIt++, false));
469 } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
470 // Add a library
471 Items.push_back(std::make_pair(*libIt++, true));
472 }
473 }
474}
475
476// Rightly this should go in a header file but it just seems such a waste.
477namespace llvm {
478extern void Optimize(Module*);
479}
480
481int main(int argc, char **argv, char **envp) {
482 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
483 try {
484 // Initial global variable above for convenience printing of program name.
485 progname = sys::Path(argv[0]).getBasename();
486
487 // Parse the command line options
Dan Gohman6099df82007-10-08 15:45:12 +0000488 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 sys::PrintStackTraceOnErrorSignal();
490
491 // Construct a Linker (now that Verbose is set)
492 Linker TheLinker(progname, OutputFilename, Verbose);
493
494 // Keep track of the native link items (versus the bitcode items)
495 Linker::ItemList NativeLinkItems;
496
497 // Add library paths to the linker
498 TheLinker.addPaths(LibPaths);
499 TheLinker.addSystemPaths();
500
501 // Remove any consecutive duplicates of the same library...
502 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
503 Libraries.end());
504
505 if (LinkAsLibrary) {
506 std::vector<sys::Path> Files;
507 for (unsigned i = 0; i < InputFilenames.size(); ++i )
508 Files.push_back(sys::Path(InputFilenames[i]));
509 if (TheLinker.LinkInFiles(Files))
510 return 1; // Error already printed
511
512 // The libraries aren't linked in but are noted as "dependent" in the
513 // module.
514 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
515 E = Libraries.end(); I != E ; ++I) {
516 TheLinker.getModule()->addLibrary(*I);
517 }
518 } else {
519 // Build a list of the items from our command line
520 Linker::ItemList Items;
521 BuildLinkItems(Items, InputFilenames, Libraries);
522
523 // Link all the items together
524 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
525 return 1; // Error already printed
526 }
527
528 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
529
530 // Optimize the module
531 Optimize(Composite.get());
532
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000533#if defined(_WIN32) || defined(__CYGWIN__)
534 if (!LinkAsLibrary) {
535 // Make sure the output executable has an "exe" suffix.
536 sys::Path ExeFile( OutputFilename );
537 if (ExeFile.getSuffix() != "exe") {
538 if (OutputFilename == "a.out") {
539 OutputFilename = "a.exe";
540 } else {
541 ExeFile.appendSuffix("exe");
542 OutputFilename = ExeFile.toString();
543 }
544 }
545 }
546#endif
547
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 // Generate the bitcode for the optimized module.
549 std::string RealBitcodeOutput = OutputFilename;
Argiris Kirtzidis20d70e72008-06-15 12:01:16 +0000550
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
552 GenerateBitcode(Composite.get(), RealBitcodeOutput);
553
554 // If we are not linking a library, generate either a native executable
555 // or a JIT shell script, depending upon what the user wants.
556 if (!LinkAsLibrary) {
557 // If the user wants to run a post-link optimization, run it now.
558 if (!PostLinkOpts.empty()) {
559 std::vector<std::string> opts = PostLinkOpts;
560 for (std::vector<std::string>::iterator I = opts.begin(),
561 E = opts.end(); I != E; ++I) {
562 sys::Path prog(*I);
563 if (!prog.canExecute()) {
564 prog = sys::Program::FindProgramByName(*I);
565 if (prog.isEmpty())
566 PrintAndExit(std::string("Optimization program '") + *I +
567 "' is not found or not executable.");
568 }
569 // Get the program arguments
570 sys::Path tmp_output("opt_result");
571 std::string ErrMsg;
572 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
573 PrintAndExit(ErrMsg);
574
575 const char* args[4];
576 args[0] = I->c_str();
577 args[1] = RealBitcodeOutput.c_str();
578 args[2] = tmp_output.c_str();
579 args[3] = 0;
580 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
581 if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
582 sys::Path target(RealBitcodeOutput);
583 target.eraseFromDisk();
584 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
585 PrintAndExit(ErrMsg, 2);
586 } else
587 PrintAndExit("Post-link optimization output is not bitcode");
588 } else {
589 PrintAndExit(ErrMsg);
590 }
591 }
592 }
593
594 // If the user wants to generate a native executable, compile it from the
595 // bitcode file.
596 //
597 // Otherwise, create a script that will run the bitcode through the JIT.
598 if (Native) {
599 // Name of the Assembly Language output file
600 sys::Path AssemblyFile ( OutputFilename);
601 AssemblyFile.appendSuffix("s");
602
603 // Mark the output files for removal if we get an interrupt.
604 sys::RemoveFileOnSignal(AssemblyFile);
605 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
606
607 // Determine the locations of the llc and gcc programs.
608 sys::Path llc = FindExecutable("llc", argv[0]);
609 if (llc.isEmpty())
610 PrintAndExit("Failed to find llc");
611
612 sys::Path gcc = FindExecutable("gcc", argv[0]);
613 if (gcc.isEmpty())
614 PrintAndExit("Failed to find gcc");
615
616 // Generate an assembly language file for the bitcode.
617 std::string ErrMsg;
618 if (0 != GenerateAssembly(AssemblyFile.toString(), RealBitcodeOutput,
619 llc, ErrMsg))
620 PrintAndExit(ErrMsg);
621
622 if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
623 NativeLinkItems, gcc, envp, ErrMsg))
624 PrintAndExit(ErrMsg);
625
626 // Remove the assembly language file.
627 AssemblyFile.eraseFromDisk();
628 } else if (NativeCBE) {
629 sys::Path CFile (OutputFilename);
630 CFile.appendSuffix("cbe.c");
631
632 // Mark the output files for removal if we get an interrupt.
633 sys::RemoveFileOnSignal(CFile);
634 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
635
636 // Determine the locations of the llc and gcc programs.
637 sys::Path llc = FindExecutable("llc", argv[0]);
638 if (llc.isEmpty())
639 PrintAndExit("Failed to find llc");
640
641 sys::Path gcc = FindExecutable("gcc", argv[0]);
642 if (gcc.isEmpty())
643 PrintAndExit("Failed to find gcc");
644
645 // Generate an assembly language file for the bitcode.
646 std::string ErrMsg;
647 if (0 != GenerateCFile(
648 CFile.toString(), RealBitcodeOutput, llc, ErrMsg))
649 PrintAndExit(ErrMsg);
650
651 if (0 != GenerateNative(OutputFilename, CFile.toString(),
652 NativeLinkItems, gcc, envp, ErrMsg))
653 PrintAndExit(ErrMsg);
654
655 // Remove the assembly language file.
656 CFile.eraseFromDisk();
657
658 } else {
659 EmitShellScript(argv);
660 }
661
662 // Make the script executable...
663 std::string ErrMsg;
664 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
665 PrintAndExit(ErrMsg);
666
667 // Make the bitcode file readable and directly executable in LLEE as well
668 if (sys::Path(RealBitcodeOutput).makeExecutableOnDisk(&ErrMsg))
669 PrintAndExit(ErrMsg);
670
671 if (sys::Path(RealBitcodeOutput).makeReadableOnDisk(&ErrMsg))
672 PrintAndExit(ErrMsg);
673 }
674 } catch (const std::string& msg) {
675 PrintAndExit(msg,2);
676 } catch (...) {
677 PrintAndExit("Unexpected unknown exception occurred.", 2);
678 }
679
680 // Graceful exit
681 return 0;
682}