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