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