blob: 62e5f09a085696fe4397932ff7aae1b62c523846 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This utility is intended to be compatible with GCC, and follows standard
11// system 'ld' conventions. As such, the default output file is ./a.out.
12// Additionally, this program outputs a shell script that is used to invoke LLI
13// to execute the program. In this manner, the generated executable (a.out for
14// example), is directly executable, whereas the bitcode file actually lives in
15// the a.out.bc file generated by this program. Also, Force is on by default.
16//
17// Note that if someone (or a script) deletes the executable program generated,
18// the .bc file will be left around. Considering that this is a temporary hack,
19// I'm not too worried about this.
20//
21//===----------------------------------------------------------------------===//
22
23#include "llvm/LinkAllVMCore.h"
24#include "llvm/Linker.h"
Owen Anderson25209b42009-07-01 16:58:40 +000025#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/System/Program.h"
27#include "llvm/Module.h"
28#include "llvm/PassManager.h"
29#include "llvm/Bitcode/ReaderWriter.h"
30#include "llvm/Target/TargetData.h"
31#include "llvm/Target/TargetMachine.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/FileUtilities.h"
34#include "llvm/Support/ManagedStatic.h"
35#include "llvm/Support/MemoryBuffer.h"
Chris Lattnere6012df2009-03-06 05:34:10 +000036#include "llvm/Support/PrettyStackTrace.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/Support/SystemUtils.h"
38#include "llvm/System/Signals.h"
Chris Lattner2587bd92009-01-05 19:01:32 +000039#include "llvm/Config/config.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include <memory>
Anton Korobeynikov357a27d2008-02-20 11:08:44 +000041#include <cstring>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042using namespace llvm;
43
Dan Gohman8e0b7b9d2009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049// Input/Output Options
50static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
51 cl::desc("<input bitcode files>"));
52
53static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
54 cl::desc("Override output filename"),
55 cl::value_desc("filename"));
56
Sanjiv Guptad5b21d62009-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061static cl::opt<bool> Verbose("v",
62 cl::desc("Print information about actions taken"));
63
64static cl::list<std::string> LibPaths("L", cl::Prefix,
65 cl::desc("Specify a library search path"),
66 cl::value_desc("directory"));
67
Chris Lattner5247f172008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072static cl::list<std::string> Libraries("l", cl::Prefix,
73 cl::desc("Specify libraries to link to"),
74 cl::value_desc("library prefix"));
75
Chris Lattner5247f172008-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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080// Options to control the linking, optimization, and code gen processes
81static cl::opt<bool> LinkAsLibrary("link-as-library",
82 cl::desc("Link the .bc files together as a library, not an executable"));
83
84static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
85 cl::desc("Alias for -link-as-library"));
86
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087static cl::opt<bool> Native("native",
88 cl::desc("Generate a native binary instead of a shell script"));
89
90static cl::opt<bool>NativeCBE("native-cbe",
91 cl::desc("Generate a native binary with the C backend and GCC"));
92
93static cl::list<std::string> PostLinkOpts("post-link-opts",
94 cl::value_desc("path"),
95 cl::desc("Run one or more optimization programs after linking"));
96
97static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
98 cl::desc("Pass options to the system linker"));
99
100// Compatibility options that llvm-ld ignores but are supported for
101// compatibility with LD
102static cl::opt<std::string> CO3("soname", cl::Hidden,
103 cl::desc("Compatibility option: ignored"));
104
105static cl::opt<std::string> CO4("version-script", cl::Hidden,
106 cl::desc("Compatibility option: ignored"));
107
108static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
109 cl::desc("Compatibility option: ignored"));
110
111static cl::opt<std::string> CO6("h", cl::Hidden,
112 cl::desc("Compatibility option: ignored"));
113
114static cl::opt<bool> CO7("start-group", cl::Hidden,
115 cl::desc("Compatibility option: ignored"));
116
117static cl::opt<bool> CO8("end-group", cl::Hidden,
118 cl::desc("Compatibility option: ignored"));
119
Andrew Lenharth45d0e162008-11-19 17:00:08 +0000120static cl::opt<std::string> CO9("m", cl::Hidden,
121 cl::desc("Compatibility option: ignored"));
122
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123/// This is just for convenience so it doesn't have to be passed around
124/// everywhere.
125static std::string progname;
126
127/// PrintAndExit - Prints a message to standard error and exits with error code
128///
129/// Inputs:
130/// Message - The message to print to standard error.
131///
132static void PrintAndExit(const std::string &Message, int errcode = 1) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000133 errs() << progname << ": " << Message << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 llvm_shutdown();
135 exit(errcode);
136}
137
138static void PrintCommand(const std::vector<const char*> &args) {
139 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
140 for (; I != E; ++I)
141 if (*I)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000142 outs() << "'" << *I << "'" << " ";
143 outs() << "\n"; outs().flush();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144}
145
146/// CopyEnv - This function takes an array of environment variables and makes a
147/// copy of it. This copy can then be manipulated any way the caller likes
148/// without affecting the process's real environment.
149///
150/// Inputs:
151/// envp - An array of C strings containing an environment.
152///
153/// Return value:
154/// NULL - An error occurred.
155///
156/// Otherwise, a pointer to a new array of C strings is returned. Every string
157/// in the array is a duplicate of the one in the original array (i.e. we do
158/// not copy the char *'s from one array to another).
159///
160static char ** CopyEnv(char ** const envp) {
161 // Count the number of entries in the old list;
162 unsigned entries; // The number of entries in the old environment list
163 for (entries = 0; envp[entries] != NULL; entries++)
164 /*empty*/;
165
166 // Add one more entry for the NULL pointer that ends the list.
167 ++entries;
168
169 // If there are no entries at all, just return NULL.
170 if (entries == 0)
171 return NULL;
172
173 // Allocate a new environment list.
174 char **newenv = new char* [entries];
175 if ((newenv = new char* [entries]) == NULL)
176 return NULL;
177
178 // Make a copy of the list. Don't forget the NULL that ends the list.
179 entries = 0;
180 while (envp[entries] != NULL) {
181 newenv[entries] = new char[strlen (envp[entries]) + 1];
182 strcpy (newenv[entries], envp[entries]);
183 ++entries;
184 }
185 newenv[entries] = NULL;
186
187 return newenv;
188}
189
190
191/// RemoveEnv - Remove the specified environment variable from the environment
192/// array.
193///
194/// Inputs:
195/// name - The name of the variable to remove. It cannot be NULL.
196/// envp - The array of environment variables. It cannot be NULL.
197///
198/// Notes:
199/// This is mainly done because functions to remove items from the environment
200/// are not available across all platforms. In particular, Solaris does not
201/// seem to have an unsetenv() function or a setenv() function (or they are
202/// undocumented if they do exist).
203///
204static void RemoveEnv(const char * name, char ** const envp) {
205 for (unsigned index=0; envp[index] != NULL; index++) {
206 // Find the first equals sign in the array and make it an EOS character.
207 char *p = strchr (envp[index], '=');
208 if (p == NULL)
209 continue;
210 else
211 *p = '\0';
212
213 // Compare the two strings. If they are equal, zap this string.
214 // Otherwise, restore it.
215 if (!strcmp(name, envp[index]))
216 *envp[index] = '\0';
217 else
218 *p = '=';
219 }
220
221 return;
222}
223
224/// GenerateBitcode - generates a bitcode file from the module provided
225void GenerateBitcode(Module* M, const std::string& FileName) {
226
227 if (Verbose)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000228 outs() << "Generating Bitcode To " << FileName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229
230 // Create the output file.
Dan Gohmanb714fab2009-07-16 15:30:09 +0000231 std::string ErrorInfo;
232 raw_fd_ostream Out(FileName.c_str(), /*Binary=*/true, /*Force=*/true,
233 ErrorInfo);
234 if (!ErrorInfo.empty())
235 PrintAndExit(ErrorInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236
237 // Ensure that the bitcode file gets removed from the disk if we get a
238 // terminating signal.
239 sys::RemoveFileOnSignal(sys::Path(FileName));
240
241 // Write it out
242 WriteBitcodeToFile(M, Out);
243
244 // Close the bitcode file.
245 Out.close();
246}
247
248/// GenerateAssembly - generates a native assembly language source file from the
249/// specified bitcode file.
250///
251/// Inputs:
252/// InputFilename - The name of the input bitcode file.
253/// OutputFilename - The name of the file to generate.
254/// llc - The pathname to use for LLC.
255/// envp - The environment to use when running LLC.
256///
257/// Return non-zero value on error.
258///
259static int GenerateAssembly(const std::string &OutputFilename,
260 const std::string &InputFilename,
261 const sys::Path &llc,
262 std::string &ErrMsg ) {
263 // Run LLC to convert the bitcode file into assembly code.
264 std::vector<const char*> args;
265 args.push_back(llc.c_str());
Argiris Kirtzidisbbef6c22008-06-27 15:08:59 +0000266 // We will use GCC to assemble the program so set the assembly syntax to AT&T,
267 // regardless of what the target in the bitcode file is.
268 args.push_back("-x86-asm-syntax=att");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 args.push_back("-f");
270 args.push_back("-o");
271 args.push_back(OutputFilename.c_str());
272 args.push_back(InputFilename.c_str());
273 args.push_back(0);
274
275 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000276 outs() << "Generating Assembly With: \n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277 PrintCommand(args);
278 }
279
280 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
281}
282
283/// GenerateCFile - generates a C source file from the specified bitcode file.
284static int GenerateCFile(const std::string &OutputFile,
285 const std::string &InputFile,
286 const sys::Path &llc,
287 std::string& ErrMsg) {
288 // Run LLC to convert the bitcode file into C.
289 std::vector<const char*> args;
290 args.push_back(llc.c_str());
291 args.push_back("-march=c");
292 args.push_back("-f");
293 args.push_back("-o");
294 args.push_back(OutputFile.c_str());
295 args.push_back(InputFile.c_str());
296 args.push_back(0);
297
298 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000299 outs() << "Generating C Source With: \n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 PrintCommand(args);
301 }
302
303 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
304}
305
306/// GenerateNative - generates a native object file from the
307/// specified bitcode file.
308///
309/// Inputs:
310/// InputFilename - The name of the input bitcode file.
311/// 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 Lattner5247f172008-01-27 22:58:59 +0000314/// FrameworksPaths - The list of directories in which to find frameworks.
315/// Frameworks - The list of frameworks (dynamic libraries)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316/// gcc - The pathname to use for GGC.
317/// envp - A copy of the process's current environment.
318///
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,
326 const Linker::ItemList &LinkItems,
327 const sys::Path &gcc, char ** const envp,
328 std::string& ErrMsg) {
329 // 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
345
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.
352 std::vector<std::string> args;
353 args.push_back(gcc.c_str());
354 args.push_back("-fno-strict-aliasing");
355 args.push_back("-O3");
356 args.push_back("-o");
357 args.push_back(OutputFilename);
358 args.push_back(InputFilename);
359
Chris Lattner5247f172008-01-27 22:58:59 +0000360 // Add in the library and framework paths
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 for (unsigned index = 0; index < LibPaths.size(); index++) {
Chris Lattner5247f172008-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]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 }
367
368 // Add the requested options
Chris Lattner890df602008-01-09 01:01:17 +0000369 for (unsigned index = 0; index < XLinker.size(); index++)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 args.push_back(XLinker[index]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371
372 // Add in the libraries to link.
373 for (unsigned index = 0; index < LinkItems.size(); index++)
374 if (LinkItems[index].first != "crtend") {
375 if (LinkItems[index].second)
376 args.push_back("-l" + LinkItems[index].first);
377 else
378 args.push_back(LinkItems[index].first);
379 }
380
Chris Lattner5247f172008-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 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386
387 // 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);
394
395 if (Verbose) {
Dan Gohmanb714fab2009-07-16 15:30:09 +0000396 outs() << "Generating Native Executable With:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000397 PrintCommand(Args);
398 }
399
400 // Run the compiler to assembly and link together the program.
401 int R = sys::Program::ExecuteAndWait(
402 gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
403 delete [] clean_env;
404 return R;
405}
406
407/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
408/// bitcode file for the program.
409static void EmitShellScript(char **argv) {
410 if (Verbose)
Dan Gohmanb714fab2009-07-16 15:30:09 +0000411 outs() << "Emitting Shell Script\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412#if defined(_WIN32) || defined(__CYGWIN__)
413 // 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.
416 std::string ErrMsg;
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000417 sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0],
418 reinterpret_cast<void *>(&Optimize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 if (llvmstub.isEmpty())
420 PrintAndExit("Could not find llvm-stub.exe executable!");
421
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000422 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 PrintAndExit(ErrMsg);
424
425 return;
426#endif
427
428 // Output the script to start the program...
Dan Gohmanb714fab2009-07-16 15:30:09 +0000429 std::string ErrorInfo;
430 raw_fd_ostream Out2(OutputFilename.c_str(), /*Binary=*/false, /*Force=*/true,
431 ErrorInfo);
432 if (!ErrorInfo.empty())
433 PrintAndExit(ErrorInfo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434
435 Out2 << "#!/bin/sh\n";
436 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
437 Out2 << "lli=${LLVMINTERP-lli}\n";
438 Out2 << "exec $lli \\\n";
439 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
440 LibPaths.push_back("/lib");
441 LibPaths.push_back("/usr/lib");
442 LibPaths.push_back("/usr/X11R6/lib");
443 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
444 // shared object at all! See RH 8: plain text.
445 std::vector<std::string>::iterator libc =
446 std::find(Libraries.begin(), Libraries.end(), "c");
447 if (libc != Libraries.end()) Libraries.erase(libc);
448 // List all the shared object (native) libraries this executable will need
449 // on the command line, so that we don't have to do this manually!
450 for (std::vector<std::string>::iterator i = Libraries.begin(),
451 e = Libraries.end(); i != e; ++i) {
Chris Lattner2587bd92009-01-05 19:01:32 +0000452 // try explicit -L arguments first:
453 sys::Path FullLibraryPath;
454 for (cl::list<std::string>::const_iterator P = LibPaths.begin(),
455 E = LibPaths.end(); P != E; ++P) {
456 FullLibraryPath = *P;
457 FullLibraryPath.appendComponent("lib" + *i);
458 FullLibraryPath.appendSuffix(&(LTDL_SHLIB_EXT[1]));
459 if (!FullLibraryPath.isEmpty()) {
460 if (!FullLibraryPath.isDynamicLibrary()) {
461 // Not a native shared library; mark as invalid
462 FullLibraryPath = sys::Path();
463 } else break;
464 }
465 }
466 if (FullLibraryPath.isEmpty())
467 FullLibraryPath = sys::Path::FindLibrary(*i);
468 if (!FullLibraryPath.isEmpty())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000469 Out2 << " -load=" << FullLibraryPath.toString() << " \\\n";
470 }
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000471 Out2 << " " << BitcodeOutputFilename << " ${1+\"$@\"}\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 Out2.close();
473}
474
475// 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
483 // Build the list of linkage items for LinkItems.
484
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;
489 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
490 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));
505 }
506 }
507}
508
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509int main(int argc, char **argv, char **envp) {
Chris Lattnere6012df2009-03-06 05:34:10 +0000510 // Print a stack trace if we signal out.
511 sys::PrintStackTraceOnErrorSignal();
512 PrettyStackTraceProgram X(argc, argv);
Owen Anderson25209b42009-07-01 16:58:40 +0000513
Owen Andersone84b8b32009-07-15 22:16:10 +0000514 LLVMContext &Context = getGlobalContext();
Chris Lattnere6012df2009-03-06 05:34:10 +0000515 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 try {
517 // Initial global variable above for convenience printing of program name.
518 progname = sys::Path(argv[0]).getBasename();
519
520 // Parse the command line options
Dan Gohman6099df82007-10-08 15:45:12 +0000521 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522
523 // Construct a Linker (now that Verbose is set)
Owen Andersona148fdd2009-07-01 21:22:36 +0000524 Linker TheLinker(progname, OutputFilename, Context, Verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525
526 // Keep track of the native link items (versus the bitcode items)
527 Linker::ItemList NativeLinkItems;
528
529 // Add library paths to the linker
530 TheLinker.addPaths(LibPaths);
531 TheLinker.addSystemPaths();
532
533 // Remove any consecutive duplicates of the same library...
534 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
535 Libraries.end());
536
537 if (LinkAsLibrary) {
538 std::vector<sys::Path> Files;
539 for (unsigned i = 0; i < InputFilenames.size(); ++i )
540 Files.push_back(sys::Path(InputFilenames[i]));
541 if (TheLinker.LinkInFiles(Files))
542 return 1; // Error already printed
543
544 // The libraries aren't linked in but are noted as "dependent" in the
545 // module.
546 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
547 E = Libraries.end(); I != E ; ++I) {
548 TheLinker.getModule()->addLibrary(*I);
549 }
550 } else {
551 // Build a list of the items from our command line
552 Linker::ItemList Items;
553 BuildLinkItems(Items, InputFilenames, Libraries);
554
555 // Link all the items together
556 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
557 return 1; // Error already printed
558 }
559
560 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
561
562 // Optimize the module
563 Optimize(Composite.get());
564
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000565#if defined(_WIN32) || defined(__CYGWIN__)
566 if (!LinkAsLibrary) {
Argiris Kirtzidis9ff7cee2008-06-15 15:20:16 +0000567 // Default to "a.exe" instead of "a.out".
568 if (OutputFilename.getNumOccurrences() == 0)
569 OutputFilename = "a.exe";
570
571 // If there is no suffix add an "exe" one.
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000572 sys::Path ExeFile( OutputFilename );
Argiris Kirtzidis9ff7cee2008-06-15 15:20:16 +0000573 if (ExeFile.getSuffix() == "") {
574 ExeFile.appendSuffix("exe");
575 OutputFilename = ExeFile.toString();
Argiris Kirtzidis68c84262008-06-15 13:48:12 +0000576 }
577 }
578#endif
579
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 // Generate the bitcode for the optimized module.
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000581 // If -b wasn't specified, use the name specified
582 // with -o to construct BitcodeOutputFilename.
583 if (BitcodeOutputFilename.empty()) {
584 BitcodeOutputFilename = OutputFilename;
585 if (!LinkAsLibrary) BitcodeOutputFilename += ".bc";
586 }
Argiris Kirtzidis20d70e72008-06-15 12:01:16 +0000587
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000588 GenerateBitcode(Composite.get(), BitcodeOutputFilename);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589
590 // If we are not linking a library, generate either a native executable
591 // or a JIT shell script, depending upon what the user wants.
592 if (!LinkAsLibrary) {
593 // If the user wants to run a post-link optimization, run it now.
594 if (!PostLinkOpts.empty()) {
595 std::vector<std::string> opts = PostLinkOpts;
596 for (std::vector<std::string>::iterator I = opts.begin(),
597 E = opts.end(); I != E; ++I) {
598 sys::Path prog(*I);
599 if (!prog.canExecute()) {
600 prog = sys::Program::FindProgramByName(*I);
601 if (prog.isEmpty())
602 PrintAndExit(std::string("Optimization program '") + *I +
603 "' is not found or not executable.");
604 }
605 // Get the program arguments
606 sys::Path tmp_output("opt_result");
607 std::string ErrMsg;
608 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
609 PrintAndExit(ErrMsg);
610
611 const char* args[4];
612 args[0] = I->c_str();
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000613 args[1] = BitcodeOutputFilename.c_str();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614 args[2] = tmp_output.c_str();
615 args[3] = 0;
616 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
617 if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000618 sys::Path target(BitcodeOutputFilename);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 target.eraseFromDisk();
620 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
621 PrintAndExit(ErrMsg, 2);
622 } else
623 PrintAndExit("Post-link optimization output is not bitcode");
624 } else {
625 PrintAndExit(ErrMsg);
626 }
627 }
628 }
629
630 // If the user wants to generate a native executable, compile it from the
631 // bitcode file.
632 //
633 // Otherwise, create a script that will run the bitcode through the JIT.
634 if (Native) {
635 // Name of the Assembly Language output file
636 sys::Path AssemblyFile ( OutputFilename);
637 AssemblyFile.appendSuffix("s");
638
639 // Mark the output files for removal if we get an interrupt.
640 sys::RemoveFileOnSignal(AssemblyFile);
641 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
642
643 // Determine the locations of the llc and gcc programs.
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000644 sys::Path llc = FindExecutable("llc", argv[0],
645 reinterpret_cast<void *>(&Optimize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646 if (llc.isEmpty())
647 PrintAndExit("Failed to find llc");
648
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000649 sys::Path gcc = sys::Program::FindProgramByName("gcc");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 if (gcc.isEmpty())
651 PrintAndExit("Failed to find gcc");
652
653 // Generate an assembly language file for the bitcode.
654 std::string ErrMsg;
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000655 if (0 != GenerateAssembly(AssemblyFile.toString(), BitcodeOutputFilename,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656 llc, ErrMsg))
657 PrintAndExit(ErrMsg);
658
659 if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
660 NativeLinkItems, gcc, envp, ErrMsg))
661 PrintAndExit(ErrMsg);
662
663 // Remove the assembly language file.
664 AssemblyFile.eraseFromDisk();
665 } else if (NativeCBE) {
666 sys::Path CFile (OutputFilename);
667 CFile.appendSuffix("cbe.c");
668
669 // Mark the output files for removal if we get an interrupt.
670 sys::RemoveFileOnSignal(CFile);
671 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
672
673 // Determine the locations of the llc and gcc programs.
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000674 sys::Path llc = FindExecutable("llc", argv[0],
675 reinterpret_cast<void *>(&Optimize));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676 if (llc.isEmpty())
677 PrintAndExit("Failed to find llc");
678
Dan Gohman8e0b7b9d2009-08-05 20:21:17 +0000679 sys::Path gcc = sys::Program::FindProgramByName("gcc");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 if (gcc.isEmpty())
681 PrintAndExit("Failed to find gcc");
682
683 // Generate an assembly language file for the bitcode.
684 std::string ErrMsg;
685 if (0 != GenerateCFile(
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000686 CFile.toString(), BitcodeOutputFilename, llc, ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 PrintAndExit(ErrMsg);
688
689 if (0 != GenerateNative(OutputFilename, CFile.toString(),
690 NativeLinkItems, gcc, envp, ErrMsg))
691 PrintAndExit(ErrMsg);
692
693 // Remove the assembly language file.
694 CFile.eraseFromDisk();
695
696 } else {
697 EmitShellScript(argv);
698 }
699
700 // Make the script executable...
701 std::string ErrMsg;
702 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
703 PrintAndExit(ErrMsg);
704
705 // Make the bitcode file readable and directly executable in LLEE as well
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000706 if (sys::Path(BitcodeOutputFilename).makeExecutableOnDisk(&ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000707 PrintAndExit(ErrMsg);
708
Sanjiv Guptad5b21d62009-07-22 18:41:45 +0000709 if (sys::Path(BitcodeOutputFilename).makeReadableOnDisk(&ErrMsg))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 PrintAndExit(ErrMsg);
711 }
712 } catch (const std::string& msg) {
713 PrintAndExit(msg,2);
714 } catch (...) {
715 PrintAndExit("Unexpected unknown exception occurred.", 2);
716 }
717
718 // Graceful exit
719 return 0;
720}