blob: ecf0476eb291e4c604212fa33fc82898e6646c35 [file] [log] [blame]
Reid Spencerc0af3f02004-09-13 01:27:53 +00001//===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
Reid Spencerc0af3f02004-09-13 01:27:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
Reid Spencerc0af3f02004-09-13 01:27:53 +00008//===----------------------------------------------------------------------===//
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
Gabor Greifa99be512007-07-05 17:07:56 +000014// example), is directly executable, whereas the bitcode file actually lives in
Dan Gohmanbaa26392009-08-25 15:34:52 +000015// the a.out.bc file generated by this program.
Reid Spencerc0af3f02004-09-13 01:27:53 +000016//
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
Reid Spenceraf303d52006-06-07 23:03:13 +000023#include "llvm/LinkAllVMCore.h"
Reid Spencer605b9e22004-11-14 23:00:08 +000024#include "llvm/Linker.h"
Owen Anderson8b477ed2009-07-01 16:58:40 +000025#include "llvm/LLVMContext.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000026#include "llvm/Support/Program.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000027#include "llvm/Module.h"
28#include "llvm/PassManager.h"
Chris Lattnerbb3f3d32007-05-06 05:56:58 +000029#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000030#include "llvm/Target/TargetData.h"
Reid Spenceraefd04b2004-09-25 16:00:07 +000031#include "llvm/Target/TargetMachine.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000032#include "llvm/Support/CommandLine.h"
Dan Gohman132a9942010-03-30 19:56:41 +000033#include "llvm/Support/FileUtilities.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000034#include "llvm/Support/ManagedStatic.h"
Chris Lattnerbb3f3d32007-05-06 05:56:58 +000035#include "llvm/Support/MemoryBuffer.h"
Chris Lattnercc14d252009-03-06 05:34:10 +000036#include "llvm/Support/PrettyStackTrace.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000037#include "llvm/Support/SystemUtils.h"
Dan Gohmane4f1a9b2010-10-07 20:32:40 +000038#include "llvm/Support/ToolOutputFile.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000039#include "llvm/Support/Signals.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000040#include <memory>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000041#include <cstring>
Reid Spencerc0af3f02004-09-13 01:27:53 +000042using namespace llvm;
43
Dan Gohman197f7282009-08-05 20:21:17 +000044// Rightly this should go in a header file but it just seems such a waste.
45namespace llvm {
46extern void Optimize(Module*);
47}
48
Reid Spencer445564a2004-11-20 20:02:56 +000049// Input/Output Options
50static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
Gabor Greifa99be512007-07-05 17:07:56 +000051 cl::desc("<input bitcode files>"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000052
Reid Spencer445564a2004-11-20 20:02:56 +000053static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
Misha Brukman3da94ae2005-04-22 00:00:37 +000054 cl::desc("Override output filename"),
Reid Spencer445564a2004-11-20 20:02:56 +000055 cl::value_desc("filename"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000056
Sanjiv Guptad7de7bc2009-07-22 18:41:45 +000057static cl::opt<std::string> BitcodeOutputFilename("b", cl::init(""),
58 cl::desc("Override bitcode output filename"),
59 cl::value_desc("filename"));
60
Misha Brukman3da94ae2005-04-22 00:00:37 +000061static cl::opt<bool> Verbose("v",
Reid Spencer445564a2004-11-20 20:02:56 +000062 cl::desc("Print information about actions taken"));
Misha Brukman3da94ae2005-04-22 00:00:37 +000063
Reid Spencer445564a2004-11-20 20:02:56 +000064static cl::list<std::string> LibPaths("L", cl::Prefix,
Misha Brukman3da94ae2005-04-22 00:00:37 +000065 cl::desc("Specify a library search path"),
Reid Spencer445564a2004-11-20 20:02:56 +000066 cl::value_desc("directory"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000067
Chris Lattner3992f522008-01-27 22:58:59 +000068static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
69 cl::desc("Specify a framework search path"),
70 cl::value_desc("directory"));
71
Reid Spencer445564a2004-11-20 20:02:56 +000072static cl::list<std::string> Libraries("l", cl::Prefix,
Misha Brukman3da94ae2005-04-22 00:00:37 +000073 cl::desc("Specify libraries to link to"),
Reid Spencer445564a2004-11-20 20:02:56 +000074 cl::value_desc("library prefix"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000075
Chris Lattner3992f522008-01-27 22:58:59 +000076static cl::list<std::string> Frameworks("framework",
77 cl::desc("Specify frameworks to link to"),
78 cl::value_desc("framework"));
79
Reid Spencer708585a2007-02-09 03:08:06 +000080// Options to control the linking, optimization, and code gen processes
Misha Brukman3da94ae2005-04-22 00:00:37 +000081static cl::opt<bool> LinkAsLibrary("link-as-library",
Reid Spencer445564a2004-11-20 20:02:56 +000082 cl::desc("Link the .bc files together as a library, not an executable"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000083
Reid Spencer445564a2004-11-20 20:02:56 +000084static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
85 cl::desc("Alias for -link-as-library"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000086
Reid Spencer445564a2004-11-20 20:02:56 +000087static cl::opt<bool> Native("native",
88 cl::desc("Generate a native binary instead of a shell script"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000089
Reid Spencer445564a2004-11-20 20:02:56 +000090static cl::opt<bool>NativeCBE("native-cbe",
91 cl::desc("Generate a native binary with the C backend and GCC"));
92
Reid Spencer73a74be2005-12-21 05:03:23 +000093static cl::list<std::string> PostLinkOpts("post-link-opts",
Reid Spenceraf303d52006-06-07 23:03:13 +000094 cl::value_desc("path"),
Reid Spencer73a74be2005-12-21 05:03:23 +000095 cl::desc("Run one or more optimization programs after linking"));
96
Reid Spenceraf303d52006-06-07 23:03:13 +000097static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
98 cl::desc("Pass options to the system linker"));
99
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000100// Compatibility options that llvm-ld ignores but are supported for
Reid Spencer708585a2007-02-09 03:08:06 +0000101// compatibility with LD
Misha Brukman3da94ae2005-04-22 00:00:37 +0000102static cl::opt<std::string> CO3("soname", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +0000103 cl::desc("Compatibility option: ignored"));
104
Misha Brukman3da94ae2005-04-22 00:00:37 +0000105static cl::opt<std::string> CO4("version-script", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +0000106 cl::desc("Compatibility option: ignored"));
107
Misha Brukman3da94ae2005-04-22 00:00:37 +0000108static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +0000109 cl::desc("Compatibility option: ignored"));
110
Misha Brukman3da94ae2005-04-22 00:00:37 +0000111static cl::opt<std::string> CO6("h", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +0000112 cl::desc("Compatibility option: ignored"));
113
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000114static cl::opt<bool> CO7("start-group", cl::Hidden,
Reid Spencer98a030c2007-02-08 19:03:11 +0000115 cl::desc("Compatibility option: ignored"));
116
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000117static cl::opt<bool> CO8("end-group", cl::Hidden,
Reid Spencer98a030c2007-02-08 19:03:11 +0000118 cl::desc("Compatibility option: ignored"));
Reid Spenceraf303d52006-06-07 23:03:13 +0000119
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000120static cl::opt<std::string> CO9("m", cl::Hidden,
Andrew Lenharth0c6ba442008-11-19 17:00:08 +0000121 cl::desc("Compatibility option: ignored"));
122
Reid Spencer445564a2004-11-20 20:02:56 +0000123/// This is just for convenience so it doesn't have to be passed around
124/// everywhere.
Reid Spencerc4064132004-12-13 03:01:14 +0000125static std::string progname;
Reid Spencerc0af3f02004-09-13 01:27:53 +0000126
Dan Gohman132a9942010-03-30 19:56:41 +0000127/// FileRemover objects to clean up output files in the event of an error.
128static FileRemover OutputRemover;
129static FileRemover BitcodeOutputRemover;
130
Reid Spencer708585a2007-02-09 03:08:06 +0000131/// PrintAndExit - Prints a message to standard error and exits with error code
Reid Spencerc0af3f02004-09-13 01:27:53 +0000132///
133/// Inputs:
Reid Spencerc0af3f02004-09-13 01:27:53 +0000134/// Message - The message to print to standard error.
135///
Chris Lattner25c54c02010-03-23 21:59:43 +0000136static void PrintAndExit(const std::string &Message, Module *M, int errcode = 1) {
Dan Gohmanac95cc72009-07-16 15:30:09 +0000137 errs() << progname << ": " << Message << "\n";
Chris Lattner25c54c02010-03-23 21:59:43 +0000138 delete M;
Reid Spencer708585a2007-02-09 03:08:06 +0000139 llvm_shutdown();
140 exit(errcode);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000141}
142
Reid Spencer3b726392007-04-29 23:59:47 +0000143static void PrintCommand(const std::vector<const char*> &args) {
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000144 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
Reid Spencer3b726392007-04-29 23:59:47 +0000145 for (; I != E; ++I)
146 if (*I)
Dan Gohman4bb122e2010-08-20 01:02:14 +0000147 errs() << "'" << *I << "'" << " ";
148 errs() << "\n";
Reid Spencer3b726392007-04-29 23:59:47 +0000149}
150
Reid Spencer445564a2004-11-20 20:02:56 +0000151/// CopyEnv - This function takes an array of environment variables and makes a
152/// copy of it. This copy can then be manipulated any way the caller likes
153/// without affecting the process's real environment.
154///
155/// Inputs:
156/// envp - An array of C strings containing an environment.
157///
158/// Return value:
159/// NULL - An error occurred.
160///
161/// Otherwise, a pointer to a new array of C strings is returned. Every string
162/// in the array is a duplicate of the one in the original array (i.e. we do
163/// not copy the char *'s from one array to another).
164///
165static char ** CopyEnv(char ** const envp) {
166 // Count the number of entries in the old list;
167 unsigned entries; // The number of entries in the old environment list
168 for (entries = 0; envp[entries] != NULL; entries++)
169 /*empty*/;
170
171 // Add one more entry for the NULL pointer that ends the list.
172 ++entries;
173
174 // If there are no entries at all, just return NULL.
175 if (entries == 0)
176 return NULL;
177
178 // Allocate a new environment list.
179 char **newenv = new char* [entries];
Ted Kremenek7cefd0e2011-01-14 22:34:17 +0000180 if (newenv == NULL)
Reid Spencer445564a2004-11-20 20:02:56 +0000181 return NULL;
182
183 // Make a copy of the list. Don't forget the NULL that ends the list.
184 entries = 0;
185 while (envp[entries] != NULL) {
Benjamin Kramer12ea66a2010-01-28 18:04:38 +0000186 size_t len = strlen(envp[entries]) + 1;
187 newenv[entries] = new char[len];
188 memcpy(newenv[entries], envp[entries], len);
Reid Spencer445564a2004-11-20 20:02:56 +0000189 ++entries;
190 }
191 newenv[entries] = NULL;
192
193 return newenv;
194}
195
196
197/// RemoveEnv - Remove the specified environment variable from the environment
198/// array.
199///
200/// Inputs:
201/// name - The name of the variable to remove. It cannot be NULL.
202/// envp - The array of environment variables. It cannot be NULL.
203///
204/// Notes:
205/// This is mainly done because functions to remove items from the environment
206/// are not available across all platforms. In particular, Solaris does not
207/// seem to have an unsetenv() function or a setenv() function (or they are
208/// undocumented if they do exist).
209///
210static void RemoveEnv(const char * name, char ** const envp) {
211 for (unsigned index=0; envp[index] != NULL; index++) {
212 // Find the first equals sign in the array and make it an EOS character.
213 char *p = strchr (envp[index], '=');
214 if (p == NULL)
215 continue;
216 else
217 *p = '\0';
218
219 // Compare the two strings. If they are equal, zap this string.
220 // Otherwise, restore it.
221 if (!strcmp(name, envp[index]))
222 *envp[index] = '\0';
223 else
224 *p = '=';
225 }
226
227 return;
228}
229
Gabor Greifa99be512007-07-05 17:07:56 +0000230/// GenerateBitcode - generates a bitcode file from the module provided
231void GenerateBitcode(Module* M, const std::string& FileName) {
Reid Spencer445564a2004-11-20 20:02:56 +0000232
Reid Spencer3b726392007-04-29 23:59:47 +0000233 if (Verbose)
Dan Gohman4bb122e2010-08-20 01:02:14 +0000234 errs() << "Generating Bitcode To " << FileName << '\n';
Reid Spencer3b726392007-04-29 23:59:47 +0000235
Reid Spencer445564a2004-11-20 20:02:56 +0000236 // Create the output file.
Dan Gohmanac95cc72009-07-16 15:30:09 +0000237 std::string ErrorInfo;
Dan Gohmanf2914012010-08-20 16:59:15 +0000238 tool_output_file Out(FileName.c_str(), ErrorInfo,
239 raw_fd_ostream::F_Binary);
240 if (!ErrorInfo.empty()) {
Chris Lattner25c54c02010-03-23 21:59:43 +0000241 PrintAndExit(ErrorInfo, M);
Dan Gohmanf2914012010-08-20 16:59:15 +0000242 return;
243 }
Reid Spencer445564a2004-11-20 20:02:56 +0000244
Reid Spencer445564a2004-11-20 20:02:56 +0000245 // Write it out
Dan Gohmand4c45432010-09-01 14:20:41 +0000246 WriteBitcodeToFile(M, Out.os());
Dan Gohmanf2914012010-08-20 16:59:15 +0000247 Out.keep();
Reid Spencer445564a2004-11-20 20:02:56 +0000248}
249
250/// GenerateAssembly - generates a native assembly language source file from the
Gabor Greifa99be512007-07-05 17:07:56 +0000251/// specified bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000252///
253/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000254/// InputFilename - The name of the input bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000255/// OutputFilename - The name of the file to generate.
256/// llc - The pathname to use for LLC.
257/// envp - The environment to use when running LLC.
258///
259/// Return non-zero value on error.
260///
261static int GenerateAssembly(const std::string &OutputFilename,
262 const std::string &InputFilename,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000263 const sys::Path &llc,
264 std::string &ErrMsg ) {
Gabor Greifa99be512007-07-05 17:07:56 +0000265 // Run LLC to convert the bitcode file into assembly code.
Reid Spencerf6358c72004-12-19 18:00:56 +0000266 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000267 args.push_back(llc.c_str());
Argyrios Kyrtzidisca29dff2008-06-27 15:08:59 +0000268 // We will use GCC to assemble the program so set the assembly syntax to AT&T,
269 // regardless of what the target in the bitcode file is.
270 args.push_back("-x86-asm-syntax=att");
Chris Lattnerbf9add42005-04-10 20:59:38 +0000271 args.push_back("-o");
272 args.push_back(OutputFilename.c_str());
273 args.push_back(InputFilename.c_str());
Chris Lattner7456e3c2005-02-13 23:10:45 +0000274 args.push_back(0);
Reid Spencer445564a2004-11-20 20:02:56 +0000275
Reid Spencer3b726392007-04-29 23:59:47 +0000276 if (Verbose) {
Dan Gohman4bb122e2010-08-20 01:02:14 +0000277 errs() << "Generating Assembly With: \n";
Reid Spencer3b726392007-04-29 23:59:47 +0000278 PrintCommand(args);
279 }
280
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000281 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
Reid Spencer445564a2004-11-20 20:02:56 +0000282}
283
Gabor Greifa99be512007-07-05 17:07:56 +0000284/// GenerateCFile - generates a C source file from the specified bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000285static int GenerateCFile(const std::string &OutputFile,
286 const std::string &InputFile,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000287 const sys::Path &llc,
288 std::string& ErrMsg) {
Gabor Greifa99be512007-07-05 17:07:56 +0000289 // Run LLC to convert the bitcode file into C.
Reid Spencerf6358c72004-12-19 18:00:56 +0000290 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000291 args.push_back(llc.c_str());
292 args.push_back("-march=c");
Chris Lattnerbf9add42005-04-10 20:59:38 +0000293 args.push_back("-o");
294 args.push_back(OutputFile.c_str());
295 args.push_back(InputFile.c_str());
Chris Lattner7456e3c2005-02-13 23:10:45 +0000296 args.push_back(0);
Reid Spencer3b726392007-04-29 23:59:47 +0000297
298 if (Verbose) {
Dan Gohman4bb122e2010-08-20 01:02:14 +0000299 errs() << "Generating C Source With: \n";
Reid Spencer3b726392007-04-29 23:59:47 +0000300 PrintCommand(args);
301 }
302
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000303 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
Reid Spencer445564a2004-11-20 20:02:56 +0000304}
305
Devang Patele2f8ad82006-06-27 18:07:29 +0000306/// GenerateNative - generates a native object file from the
Gabor Greifa99be512007-07-05 17:07:56 +0000307/// specified bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000308///
309/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000310/// InputFilename - The name of the input bitcode file.
Reid Spencerc82a5da2007-04-04 06:34:22 +0000311/// OutputFilename - The name of the file to generate.
312/// NativeLinkItems - The native libraries, files, code with which to link
313/// LibPaths - The list of directories in which to find libraries.
Chris Lattner3992f522008-01-27 22:58:59 +0000314/// FrameworksPaths - The list of directories in which to find frameworks.
315/// Frameworks - The list of frameworks (dynamic libraries)
Reid Spencerc82a5da2007-04-04 06:34:22 +0000316/// gcc - The pathname to use for GGC.
317/// envp - A copy of the process's current environment.
Reid Spencer445564a2004-11-20 20:02:56 +0000318///
319/// Outputs:
320/// None.
321///
322/// Returns non-zero value on error.
323///
324static int GenerateNative(const std::string &OutputFilename,
325 const std::string &InputFilename,
Reid Spencer49521432006-11-11 11:54:25 +0000326 const Linker::ItemList &LinkItems,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000327 const sys::Path &gcc, char ** const envp,
328 std::string& ErrMsg) {
Reid Spencer445564a2004-11-20 20:02:56 +0000329 // Remove these environment variables from the environment of the
330 // programs that we will execute. It appears that GCC sets these
331 // environment variables so that the programs it uses can configure
332 // themselves identically.
333 //
334 // However, when we invoke GCC below, we want it to use its normal
335 // configuration. Hence, we must sanitize its environment.
336 char ** clean_env = CopyEnv(envp);
337 if (clean_env == NULL)
338 return 1;
339 RemoveEnv("LIBRARY_PATH", clean_env);
340 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
341 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
342 RemoveEnv("COMPILER_PATH", clean_env);
343 RemoveEnv("COLLECT_GCC", clean_env);
344
Reid Spencer445564a2004-11-20 20:02:56 +0000345
346 // Run GCC to assemble and link the program into native code.
347 //
348 // Note:
349 // We can't just assemble and link the file with the system assembler
350 // and linker because we don't know where to put the _start symbol.
351 // GCC mysteriously knows how to do it.
Chris Lattner3f931b82007-06-19 16:46:48 +0000352 std::vector<std::string> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000353 args.push_back(gcc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000354 args.push_back("-fno-strict-aliasing");
355 args.push_back("-O3");
356 args.push_back("-o");
Chris Lattner3f931b82007-06-19 16:46:48 +0000357 args.push_back(OutputFilename);
358 args.push_back(InputFilename);
Reid Spencer445564a2004-11-20 20:02:56 +0000359
Chris Lattner3992f522008-01-27 22:58:59 +0000360 // Add in the library and framework paths
Reid Spenceraf303d52006-06-07 23:03:13 +0000361 for (unsigned index = 0; index < LibPaths.size(); index++) {
Chris Lattner3992f522008-01-27 22:58:59 +0000362 args.push_back("-L" + LibPaths[index]);
363 }
364 for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
365 args.push_back("-F" + FrameworkPaths[index]);
Reid Spenceraf303d52006-06-07 23:03:13 +0000366 }
367
368 // Add the requested options
Chris Lattner03a1c7a2008-01-09 01:01:17 +0000369 for (unsigned index = 0; index < XLinker.size(); index++)
Chris Lattner3f931b82007-06-19 16:46:48 +0000370 args.push_back(XLinker[index]);
Reid Spenceraf303d52006-06-07 23:03:13 +0000371
Reid Spencer445564a2004-11-20 20:02:56 +0000372 // Add in the libraries to link.
Reid Spencer49521432006-11-11 11:54:25 +0000373 for (unsigned index = 0; index < LinkItems.size(); index++)
374 if (LinkItems[index].first != "crtend") {
Chris Lattner3f931b82007-06-19 16:46:48 +0000375 if (LinkItems[index].second)
376 args.push_back("-l" + LinkItems[index].first);
377 else
378 args.push_back(LinkItems[index].first);
Reid Spencerf6358c72004-12-19 18:00:56 +0000379 }
Reid Spenceraf303d52006-06-07 23:03:13 +0000380
Chris Lattner3992f522008-01-27 22:58:59 +0000381 // Add in frameworks to link.
382 for (unsigned index = 0; index < Frameworks.size(); index++) {
383 args.push_back("-framework");
384 args.push_back(Frameworks[index]);
385 }
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000386
Chris Lattner3f931b82007-06-19 16:46:48 +0000387 // Now that "args" owns all the std::strings for the arguments, call the c_str
388 // method to get the underlying string array. We do this game so that the
389 // std::string array is guaranteed to outlive the const char* array.
390 std::vector<const char *> Args;
391 for (unsigned i = 0, e = args.size(); i != e; ++i)
392 Args.push_back(args[i].c_str());
393 Args.push_back(0);
Reid Spencer445564a2004-11-20 20:02:56 +0000394
Reid Spencer3b726392007-04-29 23:59:47 +0000395 if (Verbose) {
Dan Gohman4bb122e2010-08-20 01:02:14 +0000396 errs() << "Generating Native Executable With:\n";
Chris Lattner3f931b82007-06-19 16:46:48 +0000397 PrintCommand(Args);
Reid Spencer3b726392007-04-29 23:59:47 +0000398 }
399
Reid Spencer445564a2004-11-20 20:02:56 +0000400 // Run the compiler to assembly and link together the program.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000401 int R = sys::Program::ExecuteAndWait(
Dan Gohman43bc70e2010-04-17 17:44:03 +0000402 gcc, &Args[0], const_cast<const char **>(clean_env), 0, 0, 0, &ErrMsg);
Chris Lattner2f863622006-05-14 18:38:13 +0000403 delete [] clean_env;
404 return R;
Reid Spencer445564a2004-11-20 20:02:56 +0000405}
406
Reid Spencerc0af3f02004-09-13 01:27:53 +0000407/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
Gabor Greifa99be512007-07-05 17:07:56 +0000408/// bitcode file for the program.
Chris Lattner25c54c02010-03-23 21:59:43 +0000409static void EmitShellScript(char **argv, Module *M) {
Reid Spencer3b726392007-04-29 23:59:47 +0000410 if (Verbose)
Dan Gohman4bb122e2010-08-20 01:02:14 +0000411 errs() << "Emitting Shell Script\n";
NAKAMURA Takumifea2b512011-02-09 04:17:39 +0000412#if defined(_WIN32)
Reid Spencerc0af3f02004-09-13 01:27:53 +0000413 // Windows doesn't support #!/bin/sh style shell scripts in .exe files. To
414 // support windows systems, we copy the llvm-stub.exe executable from the
415 // build tree to the destination file.
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000416 std::string ErrMsg;
Mikhail Glushenkovd66f2b72010-11-03 16:14:16 +0000417 sys::Path llvmstub = PrependMainExecutablePath("llvm-stub", argv[0],
418 (void *)(intptr_t)&Optimize);
Reid Spencer708585a2007-02-09 03:08:06 +0000419 if (llvmstub.isEmpty())
Chris Lattner25c54c02010-03-23 21:59:43 +0000420 PrintAndExit("Could not find llvm-stub.exe executable!", M);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000421
Argyrios Kyrtzidis16621832008-06-15 13:48:12 +0000422 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000423 PrintAndExit(ErrMsg, M);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000424
Reid Spencerc0af3f02004-09-13 01:27:53 +0000425 return;
Ahmed Charlesb0934ab2012-02-19 11:37:01 +0000426#else
Reid Spencerc0af3f02004-09-13 01:27:53 +0000427
428 // Output the script to start the program...
Dan Gohmanac95cc72009-07-16 15:30:09 +0000429 std::string ErrorInfo;
Dan Gohmanf2914012010-08-20 16:59:15 +0000430 tool_output_file Out2(OutputFilename.c_str(), ErrorInfo);
Dan Gohmanac95cc72009-07-16 15:30:09 +0000431 if (!ErrorInfo.empty())
Chris Lattner25c54c02010-03-23 21:59:43 +0000432 PrintAndExit(ErrorInfo, M);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000433
Dan Gohmand4c45432010-09-01 14:20:41 +0000434 Out2.os() << "#!/bin/sh\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000435 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
Dan Gohmand4c45432010-09-01 14:20:41 +0000436 Out2.os() << "lli=${LLVMINTERP-lli}\n";
437 Out2.os() << "exec $lli \\\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000438 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
439 LibPaths.push_back("/lib");
440 LibPaths.push_back("/usr/lib");
441 LibPaths.push_back("/usr/X11R6/lib");
442 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
443 // shared object at all! See RH 8: plain text.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000444 std::vector<std::string>::iterator libc =
Reid Spencerc0af3f02004-09-13 01:27:53 +0000445 std::find(Libraries.begin(), Libraries.end(), "c");
446 if (libc != Libraries.end()) Libraries.erase(libc);
447 // List all the shared object (native) libraries this executable will need
448 // on the command line, so that we don't have to do this manually!
Misha Brukman3da94ae2005-04-22 00:00:37 +0000449 for (std::vector<std::string>::iterator i = Libraries.begin(),
Reid Spencerc0af3f02004-09-13 01:27:53 +0000450 e = Libraries.end(); i != e; ++i) {
Chris Lattner5d5a8972009-01-05 19:01:32 +0000451 // try explicit -L arguments first:
452 sys::Path FullLibraryPath;
453 for (cl::list<std::string>::const_iterator P = LibPaths.begin(),
454 E = LibPaths.end(); P != E; ++P) {
455 FullLibraryPath = *P;
456 FullLibraryPath.appendComponent("lib" + *i);
Mikhail Glushenkovc8aef4b2010-11-02 20:32:59 +0000457 FullLibraryPath.appendSuffix(sys::Path::GetDLLSuffix());
Chris Lattner5d5a8972009-01-05 19:01:32 +0000458 if (!FullLibraryPath.isEmpty()) {
459 if (!FullLibraryPath.isDynamicLibrary()) {
460 // Not a native shared library; mark as invalid
461 FullLibraryPath = sys::Path();
462 } else break;
463 }
464 }
465 if (FullLibraryPath.isEmpty())
466 FullLibraryPath = sys::Path::FindLibrary(*i);
467 if (!FullLibraryPath.isEmpty())
Dan Gohmand4c45432010-09-01 14:20:41 +0000468 Out2.os() << " -load=" << FullLibraryPath.str() << " \\\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000469 }
Dan Gohmand4c45432010-09-01 14:20:41 +0000470 Out2.os() << " " << BitcodeOutputFilename << " ${1+\"$@\"}\n";
Dan Gohmanf2914012010-08-20 16:59:15 +0000471 Out2.keep();
Ahmed Charlesb0934ab2012-02-19 11:37:01 +0000472#endif
Reid Spencerc0af3f02004-09-13 01:27:53 +0000473}
474
Reid Spencerc4064132004-12-13 03:01:14 +0000475// BuildLinkItems -- This function generates a LinkItemList for the LinkItems
476// linker function by combining the Files and Libraries in the order they were
477// declared on the command line.
478static void BuildLinkItems(
479 Linker::ItemList& Items,
480 const cl::list<std::string>& Files,
481 const cl::list<std::string>& Libraries) {
482
Misha Brukman3da94ae2005-04-22 00:00:37 +0000483 // Build the list of linkage items for LinkItems.
Reid Spencerc4064132004-12-13 03:01:14 +0000484
485 cl::list<std::string>::const_iterator fileIt = Files.begin();
486 cl::list<std::string>::const_iterator libIt = Libraries.begin();
487
488 int libPos = -1, filePos = -1;
Reid Spencer05f7e792004-12-13 17:18:19 +0000489 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
Reid Spencerc4064132004-12-13 03:01:14 +0000490 if (libIt != Libraries.end())
491 libPos = Libraries.getPosition(libIt - Libraries.begin());
492 else
493 libPos = -1;
494 if (fileIt != Files.end())
495 filePos = Files.getPosition(fileIt - Files.begin());
496 else
497 filePos = -1;
498
499 if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
500 // Add a source file
501 Items.push_back(std::make_pair(*fileIt++, false));
502 } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
503 // Add a library
504 Items.push_back(std::make_pair(*libIt++, true));
Reid Spencerc4064132004-12-13 03:01:14 +0000505 }
506 }
507}
508
Reid Spencerc0af3f02004-09-13 01:27:53 +0000509int main(int argc, char **argv, char **envp) {
Chris Lattnercc14d252009-03-06 05:34:10 +0000510 // Print a stack trace if we signal out.
511 sys::PrintStackTraceOnErrorSignal();
512 PrettyStackTraceProgram X(argc, argv);
Owen Anderson8b477ed2009-07-01 16:58:40 +0000513
Owen Anderson0d7c6952009-07-15 22:16:10 +0000514 LLVMContext &Context = getGlobalContext();
Chris Lattnercc14d252009-03-06 05:34:10 +0000515 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000516
Owen Anderson081c34b2010-10-19 17:21:58 +0000517 // Initialize passes
518 PassRegistry &Registry = *PassRegistry::getPassRegistry();
519 initializeCore(Registry);
520 initializeScalarOpts(Registry);
521 initializeIPO(Registry);
522 initializeAnalysis(Registry);
523 initializeIPA(Registry);
524 initializeTransformUtils(Registry);
525 initializeInstCombine(Registry);
526 initializeTarget(Registry);
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000527
Chris Lattner316e3262009-10-22 00:52:28 +0000528 // Initial global variable above for convenience printing of program name.
Michael J. Spencer73855092010-12-18 22:23:07 +0000529 progname = sys::path::stem(argv[0]);
Misha Brukman3da94ae2005-04-22 00:00:37 +0000530
Chris Lattner316e3262009-10-22 00:52:28 +0000531 // Parse the command line options
532 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Reid Spencerc0af3f02004-09-13 01:27:53 +0000533
Dan Gohman132a9942010-03-30 19:56:41 +0000534#if defined(_WIN32) || defined(__CYGWIN__)
535 if (!LinkAsLibrary) {
536 // Default to "a.exe" instead of "a.out".
537 if (OutputFilename.getNumOccurrences() == 0)
538 OutputFilename = "a.exe";
539
540 // If there is no suffix add an "exe" one.
Michael J. Spencer73855092010-12-18 22:23:07 +0000541 if (sys::path::extension(OutputFilename).empty())
542 OutputFilename.append(".exe");
Dan Gohman132a9942010-03-30 19:56:41 +0000543 }
544#endif
545
546 // Generate the bitcode for the optimized module.
547 // If -b wasn't specified, use the name specified
548 // with -o to construct BitcodeOutputFilename.
549 if (BitcodeOutputFilename.empty()) {
550 BitcodeOutputFilename = OutputFilename;
551 if (!LinkAsLibrary) BitcodeOutputFilename += ".bc";
552 }
553
554 // Arrange for the bitcode output file to be deleted on any errors.
Michael J. Spencerc9c08fb2011-03-31 13:04:19 +0000555 BitcodeOutputRemover.setFile(BitcodeOutputFilename);
Dan Gohman132a9942010-03-30 19:56:41 +0000556 sys::RemoveFileOnSignal(sys::Path(BitcodeOutputFilename));
557
558 // Arrange for the output file to be deleted on any errors.
559 if (!LinkAsLibrary) {
Michael J. Spencerc9c08fb2011-03-31 13:04:19 +0000560 OutputRemover.setFile(OutputFilename);
Dan Gohman132a9942010-03-30 19:56:41 +0000561 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
562 }
563
Chris Lattner316e3262009-10-22 00:52:28 +0000564 // Construct a Linker (now that Verbose is set)
565 Linker TheLinker(progname, OutputFilename, Context, Verbose);
Reid Spencerc82a5da2007-04-04 06:34:22 +0000566
Chris Lattner316e3262009-10-22 00:52:28 +0000567 // Keep track of the native link items (versus the bitcode items)
568 Linker::ItemList NativeLinkItems;
Reid Spencer49521432006-11-11 11:54:25 +0000569
Chris Lattner316e3262009-10-22 00:52:28 +0000570 // Add library paths to the linker
571 TheLinker.addPaths(LibPaths);
572 TheLinker.addSystemPaths();
Reid Spencer78df5c32006-03-06 06:38:19 +0000573
Chris Lattner316e3262009-10-22 00:52:28 +0000574 // Remove any consecutive duplicates of the same library...
575 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
576 Libraries.end());
Reid Spencerc0af3f02004-09-13 01:27:53 +0000577
Chris Lattner316e3262009-10-22 00:52:28 +0000578 if (LinkAsLibrary) {
579 std::vector<sys::Path> Files;
580 for (unsigned i = 0; i < InputFilenames.size(); ++i )
581 Files.push_back(sys::Path(InputFilenames[i]));
582 if (TheLinker.LinkInFiles(Files))
583 return 1; // Error already printed
Reid Spencer6b463b22004-12-08 05:17:40 +0000584
Chris Lattner316e3262009-10-22 00:52:28 +0000585 // The libraries aren't linked in but are noted as "dependent" in the
586 // module.
587 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
588 E = Libraries.end(); I != E ; ++I) {
589 TheLinker.getModule()->addLibrary(*I);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000590 }
Chris Lattner316e3262009-10-22 00:52:28 +0000591 } else {
592 // Build a list of the items from our command line
593 Linker::ItemList Items;
594 BuildLinkItems(Items, InputFilenames, Libraries);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000595
Chris Lattner316e3262009-10-22 00:52:28 +0000596 // Link all the items together
597 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
598 return 1; // Error already printed
599 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000600
Chris Lattner316e3262009-10-22 00:52:28 +0000601 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
602
603 // Optimize the module
604 Optimize(Composite.get());
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000605
Dan Gohman132a9942010-03-30 19:56:41 +0000606 // Generate the bitcode output.
Chris Lattner316e3262009-10-22 00:52:28 +0000607 GenerateBitcode(Composite.get(), BitcodeOutputFilename);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000608
Chris Lattner316e3262009-10-22 00:52:28 +0000609 // If we are not linking a library, generate either a native executable
610 // or a JIT shell script, depending upon what the user wants.
611 if (!LinkAsLibrary) {
612 // If the user wants to run a post-link optimization, run it now.
613 if (!PostLinkOpts.empty()) {
614 std::vector<std::string> opts = PostLinkOpts;
615 for (std::vector<std::string>::iterator I = opts.begin(),
616 E = opts.end(); I != E; ++I) {
617 sys::Path prog(*I);
618 if (!prog.canExecute()) {
619 prog = sys::Program::FindProgramByName(*I);
620 if (prog.isEmpty())
621 PrintAndExit(std::string("Optimization program '") + *I +
Chris Lattner25c54c02010-03-23 21:59:43 +0000622 "' is not found or not executable.", Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000623 }
624 // Get the program arguments
625 sys::Path tmp_output("opt_result");
626 std::string ErrMsg;
627 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000628 PrintAndExit(ErrMsg, Composite.get());
Reid Spencer708585a2007-02-09 03:08:06 +0000629
Chris Lattner316e3262009-10-22 00:52:28 +0000630 const char* args[4];
631 args[0] = I->c_str();
632 args[1] = BitcodeOutputFilename.c_str();
633 args[2] = tmp_output.c_str();
634 args[3] = 0;
635 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
Dan Gohman92f5fcc2010-03-27 16:36:08 +0000636 if (tmp_output.isBitcodeFile()) {
Chris Lattner316e3262009-10-22 00:52:28 +0000637 sys::Path target(BitcodeOutputFilename);
638 target.eraseFromDisk();
639 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000640 PrintAndExit(ErrMsg, Composite.get(), 2);
Chris Lattner316e3262009-10-22 00:52:28 +0000641 } else
Chris Lattner25c54c02010-03-23 21:59:43 +0000642 PrintAndExit("Post-link optimization output is not bitcode",
643 Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000644 } else {
Chris Lattner25c54c02010-03-23 21:59:43 +0000645 PrintAndExit(ErrMsg, Composite.get());
Reid Spencer73a74be2005-12-21 05:03:23 +0000646 }
647 }
Reid Spencer708585a2007-02-09 03:08:06 +0000648 }
Chris Lattner316e3262009-10-22 00:52:28 +0000649
650 // If the user wants to generate a native executable, compile it from the
651 // bitcode file.
652 //
653 // Otherwise, create a script that will run the bitcode through the JIT.
654 if (Native) {
655 // Name of the Assembly Language output file
656 sys::Path AssemblyFile ( OutputFilename);
657 AssemblyFile.appendSuffix("s");
658
Dan Gohman132a9942010-03-30 19:56:41 +0000659 // Mark the output files for removal.
Michael J. Spencerc9c08fb2011-03-31 13:04:19 +0000660 FileRemover AssemblyFileRemover(AssemblyFile.str());
Chris Lattner316e3262009-10-22 00:52:28 +0000661 sys::RemoveFileOnSignal(AssemblyFile);
Chris Lattner316e3262009-10-22 00:52:28 +0000662
663 // Determine the locations of the llc and gcc programs.
Mikhail Glushenkovd66f2b72010-11-03 16:14:16 +0000664 sys::Path llc = PrependMainExecutablePath("llc", argv[0],
665 (void *)(intptr_t)&Optimize);
Chris Lattner316e3262009-10-22 00:52:28 +0000666 if (llc.isEmpty())
Chris Lattner25c54c02010-03-23 21:59:43 +0000667 PrintAndExit("Failed to find llc", Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000668
669 sys::Path gcc = sys::Program::FindProgramByName("gcc");
670 if (gcc.isEmpty())
Chris Lattner25c54c02010-03-23 21:59:43 +0000671 PrintAndExit("Failed to find gcc", Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000672
673 // Generate an assembly language file for the bitcode.
674 std::string ErrMsg;
675 if (0 != GenerateAssembly(AssemblyFile.str(), BitcodeOutputFilename,
676 llc, ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000677 PrintAndExit(ErrMsg, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000678
679 if (0 != GenerateNative(OutputFilename, AssemblyFile.str(),
680 NativeLinkItems, gcc, envp, ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000681 PrintAndExit(ErrMsg, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000682 } else if (NativeCBE) {
683 sys::Path CFile (OutputFilename);
684 CFile.appendSuffix("cbe.c");
685
Dan Gohman132a9942010-03-30 19:56:41 +0000686 // Mark the output files for removal.
Michael J. Spencerc9c08fb2011-03-31 13:04:19 +0000687 FileRemover CFileRemover(CFile.str());
Chris Lattner316e3262009-10-22 00:52:28 +0000688 sys::RemoveFileOnSignal(CFile);
Chris Lattner316e3262009-10-22 00:52:28 +0000689
690 // Determine the locations of the llc and gcc programs.
Mikhail Glushenkovd66f2b72010-11-03 16:14:16 +0000691 sys::Path llc = PrependMainExecutablePath("llc", argv[0],
692 (void *)(intptr_t)&Optimize);
Chris Lattner316e3262009-10-22 00:52:28 +0000693 if (llc.isEmpty())
Chris Lattner25c54c02010-03-23 21:59:43 +0000694 PrintAndExit("Failed to find llc", Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000695
696 sys::Path gcc = sys::Program::FindProgramByName("gcc");
697 if (gcc.isEmpty())
Chris Lattner25c54c02010-03-23 21:59:43 +0000698 PrintAndExit("Failed to find gcc", Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000699
700 // Generate an assembly language file for the bitcode.
701 std::string ErrMsg;
702 if (GenerateCFile(CFile.str(), BitcodeOutputFilename, llc, ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000703 PrintAndExit(ErrMsg, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000704
Mikhail Glushenkov572ec1f2010-11-02 20:32:52 +0000705 if (GenerateNative(OutputFilename, CFile.str(),
Chris Lattner316e3262009-10-22 00:52:28 +0000706 NativeLinkItems, gcc, envp, ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000707 PrintAndExit(ErrMsg, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000708 } else {
Chris Lattner25c54c02010-03-23 21:59:43 +0000709 EmitShellScript(argv, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000710 }
711
712 // Make the script executable...
713 std::string ErrMsg;
714 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000715 PrintAndExit(ErrMsg, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000716
717 // Make the bitcode file readable and directly executable in LLEE as well
718 if (sys::Path(BitcodeOutputFilename).makeExecutableOnDisk(&ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000719 PrintAndExit(ErrMsg, Composite.get());
Chris Lattner316e3262009-10-22 00:52:28 +0000720
721 if (sys::Path(BitcodeOutputFilename).makeReadableOnDisk(&ErrMsg))
Chris Lattner25c54c02010-03-23 21:59:43 +0000722 PrintAndExit(ErrMsg, Composite.get());
Reid Spencerc0af3f02004-09-13 01:27:53 +0000723 }
Reid Spencer708585a2007-02-09 03:08:06 +0000724
Dan Gohman132a9942010-03-30 19:56:41 +0000725 // Operations which may fail are now complete.
726 BitcodeOutputRemover.releaseFile();
727 if (!LinkAsLibrary)
728 OutputRemover.releaseFile();
729
Reid Spencer708585a2007-02-09 03:08:06 +0000730 // Graceful exit
731 return 0;
Reid Spencerc0af3f02004-09-13 01:27:53 +0000732}