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