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