Since we are using GCC to assemble the program, make sure the assembly syntax is...
[oota-llvm.git] / tools / llvm-ld / llvm-ld.cpp
1 //===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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>
41 #include <cstring>
42 using namespace llvm;
43
44 // Input/Output Options
45 static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
46   cl::desc("<input bitcode files>"));
47
48 static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
49   cl::desc("Override output filename"),
50   cl::value_desc("filename"));
51
52 static cl::opt<bool> Verbose("v",
53   cl::desc("Print information about actions taken"));
54
55 static cl::list<std::string> LibPaths("L", cl::Prefix,
56   cl::desc("Specify a library search path"),
57   cl::value_desc("directory"));
58
59 static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
60   cl::desc("Specify a framework search path"),
61   cl::value_desc("directory"));
62
63 static cl::list<std::string> Libraries("l", cl::Prefix,
64   cl::desc("Specify libraries to link to"),
65   cl::value_desc("library prefix"));
66
67 static cl::list<std::string> Frameworks("framework",
68   cl::desc("Specify frameworks to link to"),
69   cl::value_desc("framework"));
70
71 // Options to control the linking, optimization, and code gen processes
72 static cl::opt<bool> LinkAsLibrary("link-as-library",
73   cl::desc("Link the .bc files together as a library, not an executable"));
74
75 static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
76   cl::desc("Alias for -link-as-library"));
77
78 static cl::opt<bool> Native("native",
79   cl::desc("Generate a native binary instead of a shell script"));
80
81 static cl::opt<bool>NativeCBE("native-cbe",
82   cl::desc("Generate a native binary with the C backend and GCC"));
83
84 static 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
88 static 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
93 static cl::opt<std::string> CO3("soname", cl::Hidden,
94   cl::desc("Compatibility option: ignored"));
95
96 static cl::opt<std::string> CO4("version-script", cl::Hidden,
97   cl::desc("Compatibility option: ignored"));
98
99 static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
100   cl::desc("Compatibility option: ignored"));
101
102 static  cl::opt<std::string> CO6("h", cl::Hidden,
103   cl::desc("Compatibility option: ignored"));
104
105 static cl::opt<bool> CO7("start-group", cl::Hidden, 
106   cl::desc("Compatibility option: ignored"));
107
108 static 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.
113 static 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 ///
120 static void PrintAndExit(const std::string &Message, int errcode = 1) {
121   cerr << progname << ": " << Message << "\n";
122   llvm_shutdown();
123   exit(errcode);
124 }
125
126 static 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 ///
148 static 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 ///
192 static 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
213 void 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 ///
247 static 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   // We will use GCC to assemble the program so set the assembly syntax to AT&T,
255   // regardless of what the target in the bitcode file is.
256   args.push_back("-x86-asm-syntax=att");
257   args.push_back("-f");
258   args.push_back("-o");
259   args.push_back(OutputFilename.c_str());
260   args.push_back(InputFilename.c_str());
261   args.push_back(0);
262
263   if (Verbose) {
264     cout << "Generating Assembly With: \n";
265     PrintCommand(args);
266   }
267
268   return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
269 }
270
271 /// GenerateCFile - generates a C source file from the specified bitcode file.
272 static int GenerateCFile(const std::string &OutputFile,
273                          const std::string &InputFile,
274                          const sys::Path &llc,
275                          std::string& ErrMsg) {
276   // Run LLC to convert the bitcode file into C.
277   std::vector<const char*> args;
278   args.push_back(llc.c_str());
279   args.push_back("-march=c");
280   args.push_back("-f");
281   args.push_back("-o");
282   args.push_back(OutputFile.c_str());
283   args.push_back(InputFile.c_str());
284   args.push_back(0);
285
286   if (Verbose) {
287     cout << "Generating C Source With: \n";
288     PrintCommand(args);
289   }
290
291   return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
292 }
293
294 /// GenerateNative - generates a native object file from the
295 /// specified bitcode file.
296 ///
297 /// Inputs:
298 ///  InputFilename   - The name of the input bitcode file.
299 ///  OutputFilename  - The name of the file to generate.
300 ///  NativeLinkItems - The native libraries, files, code with which to link
301 ///  LibPaths        - The list of directories in which to find libraries.
302 ///  FrameworksPaths - The list of directories in which to find frameworks.
303 ///  Frameworks      - The list of frameworks (dynamic libraries)
304 ///  gcc             - The pathname to use for GGC.
305 ///  envp            - A copy of the process's current environment.
306 ///
307 /// Outputs:
308 ///  None.
309 ///
310 /// Returns non-zero value on error.
311 ///
312 static int GenerateNative(const std::string &OutputFilename,
313                           const std::string &InputFilename,
314                           const Linker::ItemList &LinkItems,
315                           const sys::Path &gcc, char ** const envp,
316                           std::string& ErrMsg) {
317   // Remove these environment variables from the environment of the
318   // programs that we will execute.  It appears that GCC sets these
319   // environment variables so that the programs it uses can configure
320   // themselves identically.
321   //
322   // However, when we invoke GCC below, we want it to use its normal
323   // configuration.  Hence, we must sanitize its environment.
324   char ** clean_env = CopyEnv(envp);
325   if (clean_env == NULL)
326     return 1;
327   RemoveEnv("LIBRARY_PATH", clean_env);
328   RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
329   RemoveEnv("GCC_EXEC_PREFIX", clean_env);
330   RemoveEnv("COMPILER_PATH", clean_env);
331   RemoveEnv("COLLECT_GCC", clean_env);
332
333
334   // Run GCC to assemble and link the program into native code.
335   //
336   // Note:
337   //  We can't just assemble and link the file with the system assembler
338   //  and linker because we don't know where to put the _start symbol.
339   //  GCC mysteriously knows how to do it.
340   std::vector<std::string> args;
341   args.push_back(gcc.c_str());
342   args.push_back("-fno-strict-aliasing");
343   args.push_back("-O3");
344   args.push_back("-o");
345   args.push_back(OutputFilename);
346   args.push_back(InputFilename);
347
348   // Add in the library and framework paths
349   for (unsigned index = 0; index < LibPaths.size(); index++) {
350     args.push_back("-L" + LibPaths[index]);
351   }
352   for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
353     args.push_back("-F" + FrameworkPaths[index]);
354   }
355
356   // Add the requested options
357   for (unsigned index = 0; index < XLinker.size(); index++)
358     args.push_back(XLinker[index]);
359
360   // Add in the libraries to link.
361   for (unsigned index = 0; index < LinkItems.size(); index++)
362     if (LinkItems[index].first != "crtend") {
363       if (LinkItems[index].second)
364         args.push_back("-l" + LinkItems[index].first);
365       else
366         args.push_back(LinkItems[index].first);
367     }
368
369   // Add in frameworks to link.
370   for (unsigned index = 0; index < Frameworks.size(); index++) {
371     args.push_back("-framework");
372     args.push_back(Frameworks[index]);
373   }
374       
375   // Now that "args" owns all the std::strings for the arguments, call the c_str
376   // method to get the underlying string array.  We do this game so that the
377   // std::string array is guaranteed to outlive the const char* array.
378   std::vector<const char *> Args;
379   for (unsigned i = 0, e = args.size(); i != e; ++i)
380     Args.push_back(args[i].c_str());
381   Args.push_back(0);
382
383   if (Verbose) {
384     cout << "Generating Native Executable With:\n";
385     PrintCommand(Args);
386   }
387
388   // Run the compiler to assembly and link together the program.
389   int R = sys::Program::ExecuteAndWait(
390     gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
391   delete [] clean_env;
392   return R;
393 }
394
395 /// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
396 /// bitcode file for the program.
397 static void EmitShellScript(char **argv) {
398   if (Verbose)
399     cout << "Emitting Shell Script\n";
400 #if defined(_WIN32) || defined(__CYGWIN__)
401   // Windows doesn't support #!/bin/sh style shell scripts in .exe files.  To
402   // support windows systems, we copy the llvm-stub.exe executable from the
403   // build tree to the destination file.
404   std::string ErrMsg;  
405   sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0]);
406   if (llvmstub.isEmpty())
407     PrintAndExit("Could not find llvm-stub.exe executable!");
408
409   if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
410     PrintAndExit(ErrMsg);
411
412   return;
413 #endif
414
415   // Output the script to start the program...
416   std::ofstream Out2(OutputFilename.c_str());
417   if (!Out2.good())
418     PrintAndExit("error opening '" + OutputFilename + "' for writing!");
419
420   Out2 << "#!/bin/sh\n";
421   // Allow user to setenv LLVMINTERP if lli is not in their PATH.
422   Out2 << "lli=${LLVMINTERP-lli}\n";
423   Out2 << "exec $lli \\\n";
424   // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
425   LibPaths.push_back("/lib");
426   LibPaths.push_back("/usr/lib");
427   LibPaths.push_back("/usr/X11R6/lib");
428   // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
429   // shared object at all! See RH 8: plain text.
430   std::vector<std::string>::iterator libc =
431     std::find(Libraries.begin(), Libraries.end(), "c");
432   if (libc != Libraries.end()) Libraries.erase(libc);
433   // List all the shared object (native) libraries this executable will need
434   // on the command line, so that we don't have to do this manually!
435   for (std::vector<std::string>::iterator i = Libraries.begin(),
436          e = Libraries.end(); i != e; ++i) {
437     sys::Path FullLibraryPath = sys::Path::FindLibrary(*i);
438     if (!FullLibraryPath.isEmpty() && FullLibraryPath.isDynamicLibrary())
439       Out2 << "    -load=" << FullLibraryPath.toString() << " \\\n";
440   }
441   Out2 << "    $0.bc ${1+\"$@\"}\n";
442   Out2.close();
443 }
444
445 // BuildLinkItems -- This function generates a LinkItemList for the LinkItems
446 // linker function by combining the Files and Libraries in the order they were
447 // declared on the command line.
448 static void BuildLinkItems(
449   Linker::ItemList& Items,
450   const cl::list<std::string>& Files,
451   const cl::list<std::string>& Libraries) {
452
453   // Build the list of linkage items for LinkItems.
454
455   cl::list<std::string>::const_iterator fileIt = Files.begin();
456   cl::list<std::string>::const_iterator libIt  = Libraries.begin();
457
458   int libPos = -1, filePos = -1;
459   while ( libIt != Libraries.end() || fileIt != Files.end() ) {
460     if (libIt != Libraries.end())
461       libPos = Libraries.getPosition(libIt - Libraries.begin());
462     else
463       libPos = -1;
464     if (fileIt != Files.end())
465       filePos = Files.getPosition(fileIt - Files.begin());
466     else
467       filePos = -1;
468
469     if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
470       // Add a source file
471       Items.push_back(std::make_pair(*fileIt++, false));
472     } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
473       // Add a library
474       Items.push_back(std::make_pair(*libIt++, true));
475     }
476   }
477 }
478
479 // Rightly this should go in a header file but it just seems such a waste.
480 namespace llvm {
481 extern void Optimize(Module*);
482 }
483
484 int main(int argc, char **argv, char **envp) {
485   llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
486   try {
487     // Initial global variable above for convenience printing of program name.
488     progname = sys::Path(argv[0]).getBasename();
489
490     // Parse the command line options
491     cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
492     sys::PrintStackTraceOnErrorSignal();
493
494     // Construct a Linker (now that Verbose is set)
495     Linker TheLinker(progname, OutputFilename, Verbose);
496
497     // Keep track of the native link items (versus the bitcode items)
498     Linker::ItemList NativeLinkItems;
499
500     // Add library paths to the linker
501     TheLinker.addPaths(LibPaths);
502     TheLinker.addSystemPaths();
503
504     // Remove any consecutive duplicates of the same library...
505     Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
506                     Libraries.end());
507
508     if (LinkAsLibrary) {
509       std::vector<sys::Path> Files;
510       for (unsigned i = 0; i < InputFilenames.size(); ++i )
511         Files.push_back(sys::Path(InputFilenames[i]));
512       if (TheLinker.LinkInFiles(Files))
513         return 1; // Error already printed
514
515       // The libraries aren't linked in but are noted as "dependent" in the
516       // module.
517       for (cl::list<std::string>::const_iterator I = Libraries.begin(),
518            E = Libraries.end(); I != E ; ++I) {
519         TheLinker.getModule()->addLibrary(*I);
520       }
521     } else {
522       // Build a list of the items from our command line
523       Linker::ItemList Items;
524       BuildLinkItems(Items, InputFilenames, Libraries);
525
526       // Link all the items together
527       if (TheLinker.LinkInItems(Items, NativeLinkItems) )
528         return 1; // Error already printed
529     }
530
531     std::auto_ptr<Module> Composite(TheLinker.releaseModule());
532
533     // Optimize the module
534     Optimize(Composite.get());
535
536 #if defined(_WIN32) || defined(__CYGWIN__)
537     if (!LinkAsLibrary) {
538       // Default to "a.exe" instead of "a.out".
539       if (OutputFilename.getNumOccurrences() == 0)
540         OutputFilename = "a.exe";
541
542       // If there is no suffix add an "exe" one.
543       sys::Path ExeFile( OutputFilename );
544       if (ExeFile.getSuffix() == "") {
545         ExeFile.appendSuffix("exe");
546         OutputFilename = ExeFile.toString();
547       }
548     }
549 #endif
550
551     // Generate the bitcode for the optimized module.
552     std::string RealBitcodeOutput = OutputFilename;
553
554     if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
555     GenerateBitcode(Composite.get(), RealBitcodeOutput);
556
557     // If we are not linking a library, generate either a native executable
558     // or a JIT shell script, depending upon what the user wants.
559     if (!LinkAsLibrary) {
560       // If the user wants to run a post-link optimization, run it now.
561       if (!PostLinkOpts.empty()) {
562         std::vector<std::string> opts = PostLinkOpts;
563         for (std::vector<std::string>::iterator I = opts.begin(),
564              E = opts.end(); I != E; ++I) {
565           sys::Path prog(*I);
566           if (!prog.canExecute()) {
567             prog = sys::Program::FindProgramByName(*I);
568             if (prog.isEmpty())
569               PrintAndExit(std::string("Optimization program '") + *I +
570                 "' is not found or not executable.");
571           }
572           // Get the program arguments
573           sys::Path tmp_output("opt_result");
574           std::string ErrMsg;
575           if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
576             PrintAndExit(ErrMsg);
577
578           const char* args[4];
579           args[0] = I->c_str();
580           args[1] = RealBitcodeOutput.c_str();
581           args[2] = tmp_output.c_str();
582           args[3] = 0;
583           if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
584             if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
585               sys::Path target(RealBitcodeOutput);
586               target.eraseFromDisk();
587               if (tmp_output.renamePathOnDisk(target, &ErrMsg))
588                 PrintAndExit(ErrMsg, 2);
589             } else
590               PrintAndExit("Post-link optimization output is not bitcode");
591           } else {
592             PrintAndExit(ErrMsg);
593           }
594         }
595       }
596
597       // If the user wants to generate a native executable, compile it from the
598       // bitcode file.
599       //
600       // Otherwise, create a script that will run the bitcode through the JIT.
601       if (Native) {
602         // Name of the Assembly Language output file
603         sys::Path AssemblyFile ( OutputFilename);
604         AssemblyFile.appendSuffix("s");
605
606         // Mark the output files for removal if we get an interrupt.
607         sys::RemoveFileOnSignal(AssemblyFile);
608         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
609
610         // Determine the locations of the llc and gcc programs.
611         sys::Path llc = FindExecutable("llc", argv[0]);
612         if (llc.isEmpty())
613           PrintAndExit("Failed to find llc");
614
615         sys::Path gcc = FindExecutable("gcc", argv[0]);
616         if (gcc.isEmpty())
617           PrintAndExit("Failed to find gcc");
618
619         // Generate an assembly language file for the bitcode.
620         std::string ErrMsg;
621         if (0 != GenerateAssembly(AssemblyFile.toString(), RealBitcodeOutput,
622             llc, ErrMsg))
623           PrintAndExit(ErrMsg);
624
625         if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
626                                 NativeLinkItems, gcc, envp, ErrMsg))
627           PrintAndExit(ErrMsg);
628
629         // Remove the assembly language file.
630         AssemblyFile.eraseFromDisk();
631       } else if (NativeCBE) {
632         sys::Path CFile (OutputFilename);
633         CFile.appendSuffix("cbe.c");
634
635         // Mark the output files for removal if we get an interrupt.
636         sys::RemoveFileOnSignal(CFile);
637         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
638
639         // Determine the locations of the llc and gcc programs.
640         sys::Path llc = FindExecutable("llc", argv[0]);
641         if (llc.isEmpty())
642           PrintAndExit("Failed to find llc");
643
644         sys::Path gcc = FindExecutable("gcc", argv[0]);
645         if (gcc.isEmpty())
646           PrintAndExit("Failed to find gcc");
647
648         // Generate an assembly language file for the bitcode.
649         std::string ErrMsg;
650         if (0 != GenerateCFile(
651             CFile.toString(), RealBitcodeOutput, llc, ErrMsg))
652           PrintAndExit(ErrMsg);
653
654         if (0 != GenerateNative(OutputFilename, CFile.toString(), 
655                                 NativeLinkItems, gcc, envp, ErrMsg))
656           PrintAndExit(ErrMsg);
657
658         // Remove the assembly language file.
659         CFile.eraseFromDisk();
660
661       } else {
662         EmitShellScript(argv);
663       }
664
665       // Make the script executable...
666       std::string ErrMsg;
667       if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
668         PrintAndExit(ErrMsg);
669
670       // Make the bitcode file readable and directly executable in LLEE as well
671       if (sys::Path(RealBitcodeOutput).makeExecutableOnDisk(&ErrMsg))
672         PrintAndExit(ErrMsg);
673
674       if (sys::Path(RealBitcodeOutput).makeReadableOnDisk(&ErrMsg))
675         PrintAndExit(ErrMsg);
676     }
677   } catch (const std::string& msg) {
678     PrintAndExit(msg,2);
679   } catch (...) {
680     PrintAndExit("Unexpected unknown exception occurred.", 2);
681   }
682
683   // Graceful exit
684   return 0;
685 }