blob: 6657c7c7fd276ecbaa305018ccd95be266d9754c [file] [log] [blame]
Reid Spencerc0af3f02004-09-13 01:27:53 +00001//===- llvm-ld.cpp - LLVM 'ld' compatible linker --------------------------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
Reid Spencerc0af3f02004-09-13 01:27:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner21c62da2007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
Reid Spencerc0af3f02004-09-13 01:27:53 +00008//===----------------------------------------------------------------------===//
9//
10// This utility is intended to be compatible with GCC, and follows standard
11// system 'ld' conventions. As such, the default output file is ./a.out.
12// Additionally, this program outputs a shell script that is used to invoke LLI
13// to execute the program. In this manner, the generated executable (a.out for
Gabor Greifa99be512007-07-05 17:07:56 +000014// example), is directly executable, whereas the bitcode file actually lives in
Reid Spencerc0af3f02004-09-13 01:27:53 +000015// 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 Spenceraf303d52006-06-07 23:03:13 +000023#include "llvm/LinkAllVMCore.h"
Reid Spencer605b9e22004-11-14 23:00:08 +000024#include "llvm/Linker.h"
Reid Spencer6da1e0d2004-12-14 04:20:08 +000025#include "llvm/System/Program.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000026#include "llvm/Module.h"
27#include "llvm/PassManager.h"
Chris Lattnerbb3f3d32007-05-06 05:56:58 +000028#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000029#include "llvm/Target/TargetData.h"
Reid Spenceraefd04b2004-09-25 16:00:07 +000030#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetMachineRegistry.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/FileUtilities.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000034#include "llvm/Support/ManagedStatic.h"
Chris Lattnerbb3f3d32007-05-06 05:56:58 +000035#include "llvm/Support/MemoryBuffer.h"
Bill Wendling68fe61d2006-11-29 00:19:40 +000036#include "llvm/Support/Streams.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000037#include "llvm/Support/SystemUtils.h"
Reid Spencer445564a2004-11-20 20:02:56 +000038#include "llvm/System/Signals.h"
Reid Spencerc0af3f02004-09-13 01:27:53 +000039#include <fstream>
40#include <memory>
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +000041#include <cstring>
Reid Spencerc0af3f02004-09-13 01:27:53 +000042using namespace llvm;
43
Reid Spencer445564a2004-11-20 20:02:56 +000044// Input/Output Options
45static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
Gabor Greifa99be512007-07-05 17:07:56 +000046 cl::desc("<input bitcode files>"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000047
Reid Spencer445564a2004-11-20 20:02:56 +000048static cl::opt<std::string> OutputFilename("o", cl::init("a.out"),
Misha Brukman3da94ae2005-04-22 00:00:37 +000049 cl::desc("Override output filename"),
Reid Spencer445564a2004-11-20 20:02:56 +000050 cl::value_desc("filename"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000051
Misha Brukman3da94ae2005-04-22 00:00:37 +000052static cl::opt<bool> Verbose("v",
Reid Spencer445564a2004-11-20 20:02:56 +000053 cl::desc("Print information about actions taken"));
Misha Brukman3da94ae2005-04-22 00:00:37 +000054
Reid Spencer445564a2004-11-20 20:02:56 +000055static cl::list<std::string> LibPaths("L", cl::Prefix,
Misha Brukman3da94ae2005-04-22 00:00:37 +000056 cl::desc("Specify a library search path"),
Reid Spencer445564a2004-11-20 20:02:56 +000057 cl::value_desc("directory"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000058
Chris Lattner3992f522008-01-27 22:58:59 +000059static cl::list<std::string> FrameworkPaths("F", cl::Prefix,
60 cl::desc("Specify a framework search path"),
61 cl::value_desc("directory"));
62
Reid Spencer445564a2004-11-20 20:02:56 +000063static cl::list<std::string> Libraries("l", cl::Prefix,
Misha Brukman3da94ae2005-04-22 00:00:37 +000064 cl::desc("Specify libraries to link to"),
Reid Spencer445564a2004-11-20 20:02:56 +000065 cl::value_desc("library prefix"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000066
Chris Lattner3992f522008-01-27 22:58:59 +000067static cl::list<std::string> Frameworks("framework",
68 cl::desc("Specify frameworks to link to"),
69 cl::value_desc("framework"));
70
Reid Spencer708585a2007-02-09 03:08:06 +000071// Options to control the linking, optimization, and code gen processes
Misha Brukman3da94ae2005-04-22 00:00:37 +000072static cl::opt<bool> LinkAsLibrary("link-as-library",
Reid Spencer445564a2004-11-20 20:02:56 +000073 cl::desc("Link the .bc files together as a library, not an executable"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000074
Reid Spencer445564a2004-11-20 20:02:56 +000075static cl::alias Relink("r", cl::aliasopt(LinkAsLibrary),
76 cl::desc("Alias for -link-as-library"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000077
Reid Spencer445564a2004-11-20 20:02:56 +000078static cl::opt<bool> Native("native",
79 cl::desc("Generate a native binary instead of a shell script"));
Reid Spencerc0af3f02004-09-13 01:27:53 +000080
Reid Spencer445564a2004-11-20 20:02:56 +000081static cl::opt<bool>NativeCBE("native-cbe",
82 cl::desc("Generate a native binary with the C backend and GCC"));
83
Reid Spencer73a74be2005-12-21 05:03:23 +000084static cl::list<std::string> PostLinkOpts("post-link-opts",
Reid Spenceraf303d52006-06-07 23:03:13 +000085 cl::value_desc("path"),
Reid Spencer73a74be2005-12-21 05:03:23 +000086 cl::desc("Run one or more optimization programs after linking"));
87
Reid Spenceraf303d52006-06-07 23:03:13 +000088static cl::list<std::string> XLinker("Xlinker", cl::value_desc("option"),
89 cl::desc("Pass options to the system linker"));
90
Reid Spencer708585a2007-02-09 03:08:06 +000091// Compatibility options that llvm-ld ignores but are supported for
92// compatibility with LD
Misha Brukman3da94ae2005-04-22 00:00:37 +000093static cl::opt<std::string> CO3("soname", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +000094 cl::desc("Compatibility option: ignored"));
95
Misha Brukman3da94ae2005-04-22 00:00:37 +000096static cl::opt<std::string> CO4("version-script", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +000097 cl::desc("Compatibility option: ignored"));
98
Misha Brukman3da94ae2005-04-22 00:00:37 +000099static cl::opt<bool> CO5("eh-frame-hdr", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +0000100 cl::desc("Compatibility option: ignored"));
101
Misha Brukman3da94ae2005-04-22 00:00:37 +0000102static cl::opt<std::string> CO6("h", cl::Hidden,
Reid Spencer445564a2004-11-20 20:02:56 +0000103 cl::desc("Compatibility option: ignored"));
104
Reid Spencer98a030c2007-02-08 19:03:11 +0000105static cl::opt<bool> CO7("start-group", cl::Hidden,
106 cl::desc("Compatibility option: ignored"));
107
108static cl::opt<bool> CO8("end-group", cl::Hidden,
109 cl::desc("Compatibility option: ignored"));
Reid Spenceraf303d52006-06-07 23:03:13 +0000110
Reid Spencer445564a2004-11-20 20:02:56 +0000111/// This is just for convenience so it doesn't have to be passed around
112/// everywhere.
Reid Spencerc4064132004-12-13 03:01:14 +0000113static std::string progname;
Reid Spencerc0af3f02004-09-13 01:27:53 +0000114
Reid Spencer708585a2007-02-09 03:08:06 +0000115/// PrintAndExit - Prints a message to standard error and exits with error code
Reid Spencerc0af3f02004-09-13 01:27:53 +0000116///
117/// Inputs:
Reid Spencerc0af3f02004-09-13 01:27:53 +0000118/// Message - The message to print to standard error.
119///
Reid Spencer708585a2007-02-09 03:08:06 +0000120static void PrintAndExit(const std::string &Message, int errcode = 1) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000121 cerr << progname << ": " << Message << "\n";
Reid Spencer708585a2007-02-09 03:08:06 +0000122 llvm_shutdown();
123 exit(errcode);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000124}
125
Reid Spencer3b726392007-04-29 23:59:47 +0000126static void PrintCommand(const std::vector<const char*> &args) {
127 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
128 for (; I != E; ++I)
129 if (*I)
130 cout << "'" << *I << "'" << " ";
131 cout << "\n" << std::flush;
132}
133
Reid Spencer445564a2004-11-20 20:02:56 +0000134/// CopyEnv - This function takes an array of environment variables and makes a
135/// copy of it. This copy can then be manipulated any way the caller likes
136/// without affecting the process's real environment.
137///
138/// Inputs:
139/// envp - An array of C strings containing an environment.
140///
141/// Return value:
142/// NULL - An error occurred.
143///
144/// Otherwise, a pointer to a new array of C strings is returned. Every string
145/// in the array is a duplicate of the one in the original array (i.e. we do
146/// not copy the char *'s from one array to another).
147///
148static char ** CopyEnv(char ** const envp) {
149 // Count the number of entries in the old list;
150 unsigned entries; // The number of entries in the old environment list
151 for (entries = 0; envp[entries] != NULL; entries++)
152 /*empty*/;
153
154 // Add one more entry for the NULL pointer that ends the list.
155 ++entries;
156
157 // If there are no entries at all, just return NULL.
158 if (entries == 0)
159 return NULL;
160
161 // Allocate a new environment list.
162 char **newenv = new char* [entries];
163 if ((newenv = new char* [entries]) == NULL)
164 return NULL;
165
166 // Make a copy of the list. Don't forget the NULL that ends the list.
167 entries = 0;
168 while (envp[entries] != NULL) {
169 newenv[entries] = new char[strlen (envp[entries]) + 1];
170 strcpy (newenv[entries], envp[entries]);
171 ++entries;
172 }
173 newenv[entries] = NULL;
174
175 return newenv;
176}
177
178
179/// RemoveEnv - Remove the specified environment variable from the environment
180/// array.
181///
182/// Inputs:
183/// name - The name of the variable to remove. It cannot be NULL.
184/// envp - The array of environment variables. It cannot be NULL.
185///
186/// Notes:
187/// This is mainly done because functions to remove items from the environment
188/// are not available across all platforms. In particular, Solaris does not
189/// seem to have an unsetenv() function or a setenv() function (or they are
190/// undocumented if they do exist).
191///
192static void RemoveEnv(const char * name, char ** const envp) {
193 for (unsigned index=0; envp[index] != NULL; index++) {
194 // Find the first equals sign in the array and make it an EOS character.
195 char *p = strchr (envp[index], '=');
196 if (p == NULL)
197 continue;
198 else
199 *p = '\0';
200
201 // Compare the two strings. If they are equal, zap this string.
202 // Otherwise, restore it.
203 if (!strcmp(name, envp[index]))
204 *envp[index] = '\0';
205 else
206 *p = '=';
207 }
208
209 return;
210}
211
Gabor Greifa99be512007-07-05 17:07:56 +0000212/// GenerateBitcode - generates a bitcode file from the module provided
213void GenerateBitcode(Module* M, const std::string& FileName) {
Reid Spencer445564a2004-11-20 20:02:56 +0000214
Reid Spencer3b726392007-04-29 23:59:47 +0000215 if (Verbose)
Gabor Greifa99be512007-07-05 17:07:56 +0000216 cout << "Generating Bitcode To " << FileName << '\n';
Reid Spencer3b726392007-04-29 23:59:47 +0000217
Reid Spencer445564a2004-11-20 20:02:56 +0000218 // Create the output file.
Jeff Cohen5fb6ed42005-01-22 17:36:17 +0000219 std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
220 std::ios::binary;
221 std::ofstream Out(FileName.c_str(), io_mode);
Reid Spencer708585a2007-02-09 03:08:06 +0000222 if (!Out.good())
223 PrintAndExit("error opening '" + FileName + "' for writing!");
Reid Spencer445564a2004-11-20 20:02:56 +0000224
Gabor Greifa99be512007-07-05 17:07:56 +0000225 // Ensure that the bitcode file gets removed from the disk if we get a
Reid Spencer445564a2004-11-20 20:02:56 +0000226 // terminating signal.
227 sys::RemoveFileOnSignal(sys::Path(FileName));
228
229 // Write it out
Chris Lattner44dadff2007-05-06 09:29:57 +0000230 WriteBitcodeToFile(M, Out);
Reid Spencer445564a2004-11-20 20:02:56 +0000231
Gabor Greifa99be512007-07-05 17:07:56 +0000232 // Close the bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000233 Out.close();
234}
235
236/// GenerateAssembly - generates a native assembly language source file from the
Gabor Greifa99be512007-07-05 17:07:56 +0000237/// specified bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000238///
239/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000240/// InputFilename - The name of the input bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000241/// OutputFilename - The name of the file to generate.
242/// llc - The pathname to use for LLC.
243/// envp - The environment to use when running LLC.
244///
245/// Return non-zero value on error.
246///
247static int GenerateAssembly(const std::string &OutputFilename,
248 const std::string &InputFilename,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000249 const sys::Path &llc,
250 std::string &ErrMsg ) {
Gabor Greifa99be512007-07-05 17:07:56 +0000251 // Run LLC to convert the bitcode file into assembly code.
Reid Spencerf6358c72004-12-19 18:00:56 +0000252 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000253 args.push_back(llc.c_str());
254 args.push_back("-f");
255 args.push_back("-o");
256 args.push_back(OutputFilename.c_str());
257 args.push_back(InputFilename.c_str());
Chris Lattner7456e3c2005-02-13 23:10:45 +0000258 args.push_back(0);
Reid Spencer445564a2004-11-20 20:02:56 +0000259
Reid Spencer3b726392007-04-29 23:59:47 +0000260 if (Verbose) {
261 cout << "Generating Assembly With: \n";
262 PrintCommand(args);
263 }
264
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000265 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
Reid Spencer445564a2004-11-20 20:02:56 +0000266}
267
Gabor Greifa99be512007-07-05 17:07:56 +0000268/// GenerateCFile - generates a C source file from the specified bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000269static int GenerateCFile(const std::string &OutputFile,
270 const std::string &InputFile,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000271 const sys::Path &llc,
272 std::string& ErrMsg) {
Gabor Greifa99be512007-07-05 17:07:56 +0000273 // Run LLC to convert the bitcode file into C.
Reid Spencerf6358c72004-12-19 18:00:56 +0000274 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000275 args.push_back(llc.c_str());
276 args.push_back("-march=c");
277 args.push_back("-f");
278 args.push_back("-o");
279 args.push_back(OutputFile.c_str());
280 args.push_back(InputFile.c_str());
Chris Lattner7456e3c2005-02-13 23:10:45 +0000281 args.push_back(0);
Reid Spencer3b726392007-04-29 23:59:47 +0000282
283 if (Verbose) {
284 cout << "Generating C Source With: \n";
285 PrintCommand(args);
286 }
287
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000288 return sys::Program::ExecuteAndWait(llc, &args[0], 0, 0, 0, 0, &ErrMsg);
Reid Spencer445564a2004-11-20 20:02:56 +0000289}
290
Devang Patele2f8ad82006-06-27 18:07:29 +0000291/// GenerateNative - generates a native object file from the
Gabor Greifa99be512007-07-05 17:07:56 +0000292/// specified bitcode file.
Reid Spencer445564a2004-11-20 20:02:56 +0000293///
294/// Inputs:
Gabor Greifa99be512007-07-05 17:07:56 +0000295/// InputFilename - The name of the input bitcode file.
Reid Spencerc82a5da2007-04-04 06:34:22 +0000296/// OutputFilename - The name of the file to generate.
297/// NativeLinkItems - The native libraries, files, code with which to link
298/// LibPaths - The list of directories in which to find libraries.
Chris Lattner3992f522008-01-27 22:58:59 +0000299/// FrameworksPaths - The list of directories in which to find frameworks.
300/// Frameworks - The list of frameworks (dynamic libraries)
Reid Spencerc82a5da2007-04-04 06:34:22 +0000301/// gcc - The pathname to use for GGC.
302/// envp - A copy of the process's current environment.
Reid Spencer445564a2004-11-20 20:02:56 +0000303///
304/// Outputs:
305/// None.
306///
307/// Returns non-zero value on error.
308///
309static int GenerateNative(const std::string &OutputFilename,
310 const std::string &InputFilename,
Reid Spencer49521432006-11-11 11:54:25 +0000311 const Linker::ItemList &LinkItems,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000312 const sys::Path &gcc, char ** const envp,
313 std::string& ErrMsg) {
Reid Spencer445564a2004-11-20 20:02:56 +0000314 // Remove these environment variables from the environment of the
315 // programs that we will execute. It appears that GCC sets these
316 // environment variables so that the programs it uses can configure
317 // themselves identically.
318 //
319 // However, when we invoke GCC below, we want it to use its normal
320 // configuration. Hence, we must sanitize its environment.
321 char ** clean_env = CopyEnv(envp);
322 if (clean_env == NULL)
323 return 1;
324 RemoveEnv("LIBRARY_PATH", clean_env);
325 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
326 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
327 RemoveEnv("COMPILER_PATH", clean_env);
328 RemoveEnv("COLLECT_GCC", clean_env);
329
Reid Spencer445564a2004-11-20 20:02:56 +0000330
331 // Run GCC to assemble and link the program into native code.
332 //
333 // Note:
334 // We can't just assemble and link the file with the system assembler
335 // and linker because we don't know where to put the _start symbol.
336 // GCC mysteriously knows how to do it.
Chris Lattner3f931b82007-06-19 16:46:48 +0000337 std::vector<std::string> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000338 args.push_back(gcc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000339 args.push_back("-fno-strict-aliasing");
340 args.push_back("-O3");
341 args.push_back("-o");
Chris Lattner3f931b82007-06-19 16:46:48 +0000342 args.push_back(OutputFilename);
343 args.push_back(InputFilename);
Reid Spencer445564a2004-11-20 20:02:56 +0000344
Chris Lattner3992f522008-01-27 22:58:59 +0000345 // Add in the library and framework paths
Reid Spenceraf303d52006-06-07 23:03:13 +0000346 for (unsigned index = 0; index < LibPaths.size(); index++) {
Chris Lattner3992f522008-01-27 22:58:59 +0000347 args.push_back("-L" + LibPaths[index]);
348 }
349 for (unsigned index = 0; index < FrameworkPaths.size(); index++) {
350 args.push_back("-F" + FrameworkPaths[index]);
Reid Spenceraf303d52006-06-07 23:03:13 +0000351 }
352
353 // Add the requested options
Chris Lattner03a1c7a2008-01-09 01:01:17 +0000354 for (unsigned index = 0; index < XLinker.size(); index++)
Chris Lattner3f931b82007-06-19 16:46:48 +0000355 args.push_back(XLinker[index]);
Reid Spenceraf303d52006-06-07 23:03:13 +0000356
Reid Spencer445564a2004-11-20 20:02:56 +0000357 // Add in the libraries to link.
Reid Spencer49521432006-11-11 11:54:25 +0000358 for (unsigned index = 0; index < LinkItems.size(); index++)
359 if (LinkItems[index].first != "crtend") {
Chris Lattner3f931b82007-06-19 16:46:48 +0000360 if (LinkItems[index].second)
361 args.push_back("-l" + LinkItems[index].first);
362 else
363 args.push_back(LinkItems[index].first);
Reid Spencerf6358c72004-12-19 18:00:56 +0000364 }
Reid Spenceraf303d52006-06-07 23:03:13 +0000365
Chris Lattner3992f522008-01-27 22:58:59 +0000366 // Add in frameworks to link.
367 for (unsigned index = 0; index < Frameworks.size(); index++) {
368 args.push_back("-framework");
369 args.push_back(Frameworks[index]);
370 }
Chris Lattner3f931b82007-06-19 16:46:48 +0000371
372 // Now that "args" owns all the std::strings for the arguments, call the c_str
373 // method to get the underlying string array. We do this game so that the
374 // std::string array is guaranteed to outlive the const char* array.
375 std::vector<const char *> Args;
376 for (unsigned i = 0, e = args.size(); i != e; ++i)
377 Args.push_back(args[i].c_str());
378 Args.push_back(0);
Reid Spencer445564a2004-11-20 20:02:56 +0000379
Reid Spencer3b726392007-04-29 23:59:47 +0000380 if (Verbose) {
381 cout << "Generating Native Executable With:\n";
Chris Lattner3f931b82007-06-19 16:46:48 +0000382 PrintCommand(Args);
Reid Spencer3b726392007-04-29 23:59:47 +0000383 }
384
Reid Spencer445564a2004-11-20 20:02:56 +0000385 // Run the compiler to assembly and link together the program.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000386 int R = sys::Program::ExecuteAndWait(
Chris Lattner3f931b82007-06-19 16:46:48 +0000387 gcc, &Args[0], (const char**)clean_env, 0, 0, 0, &ErrMsg);
Chris Lattner2f863622006-05-14 18:38:13 +0000388 delete [] clean_env;
389 return R;
Reid Spencer445564a2004-11-20 20:02:56 +0000390}
391
Reid Spencerc0af3f02004-09-13 01:27:53 +0000392/// EmitShellScript - Output the wrapper file that invokes the JIT on the LLVM
Gabor Greifa99be512007-07-05 17:07:56 +0000393/// bitcode file for the program.
Reid Spencerc0af3f02004-09-13 01:27:53 +0000394static void EmitShellScript(char **argv) {
Reid Spencer3b726392007-04-29 23:59:47 +0000395 if (Verbose)
396 cout << "Emitting Shell Script\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000397#if defined(_WIN32) || defined(__CYGWIN__)
398 // Windows doesn't support #!/bin/sh style shell scripts in .exe files. To
399 // support windows systems, we copy the llvm-stub.exe executable from the
400 // build tree to the destination file.
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000401 std::string ErrMsg;
Reid Spencer8d8b41d2004-12-22 13:50:17 +0000402 sys::Path llvmstub = FindExecutable("llvm-stub.exe", argv[0]);
Reid Spencer708585a2007-02-09 03:08:06 +0000403 if (llvmstub.isEmpty())
404 PrintAndExit("Could not find llvm-stub.exe executable!");
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000405
Reid Spencer708585a2007-02-09 03:08:06 +0000406 if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
407 PrintAndExit(ErrMsg);
Anton Korobeynikov7d515442006-09-01 20:35:17 +0000408
Reid Spencerc0af3f02004-09-13 01:27:53 +0000409 return;
410#endif
411
412 // Output the script to start the program...
413 std::ofstream Out2(OutputFilename.c_str());
414 if (!Out2.good())
Reid Spencer708585a2007-02-09 03:08:06 +0000415 PrintAndExit("error opening '" + OutputFilename + "' for writing!");
Reid Spencerc0af3f02004-09-13 01:27:53 +0000416
417 Out2 << "#!/bin/sh\n";
418 // Allow user to setenv LLVMINTERP if lli is not in their PATH.
419 Out2 << "lli=${LLVMINTERP-lli}\n";
420 Out2 << "exec $lli \\\n";
421 // gcc accepts -l<lib> and implicitly searches /lib and /usr/lib.
422 LibPaths.push_back("/lib");
423 LibPaths.push_back("/usr/lib");
424 LibPaths.push_back("/usr/X11R6/lib");
425 // We don't need to link in libc! In fact, /usr/lib/libc.so may not be a
426 // shared object at all! See RH 8: plain text.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000427 std::vector<std::string>::iterator libc =
Reid Spencerc0af3f02004-09-13 01:27:53 +0000428 std::find(Libraries.begin(), Libraries.end(), "c");
429 if (libc != Libraries.end()) Libraries.erase(libc);
430 // List all the shared object (native) libraries this executable will need
431 // on the command line, so that we don't have to do this manually!
Misha Brukman3da94ae2005-04-22 00:00:37 +0000432 for (std::vector<std::string>::iterator i = Libraries.begin(),
Reid Spencerc0af3f02004-09-13 01:27:53 +0000433 e = Libraries.end(); i != e; ++i) {
Reid Spencerc4064132004-12-13 03:01:14 +0000434 sys::Path FullLibraryPath = sys::Path::FindLibrary(*i);
435 if (!FullLibraryPath.isEmpty() && FullLibraryPath.isDynamicLibrary())
436 Out2 << " -load=" << FullLibraryPath.toString() << " \\\n";
Reid Spencerc0af3f02004-09-13 01:27:53 +0000437 }
438 Out2 << " $0.bc ${1+\"$@\"}\n";
439 Out2.close();
440}
441
Reid Spencerc4064132004-12-13 03:01:14 +0000442// BuildLinkItems -- This function generates a LinkItemList for the LinkItems
443// linker function by combining the Files and Libraries in the order they were
444// declared on the command line.
445static void BuildLinkItems(
446 Linker::ItemList& Items,
447 const cl::list<std::string>& Files,
448 const cl::list<std::string>& Libraries) {
449
Misha Brukman3da94ae2005-04-22 00:00:37 +0000450 // Build the list of linkage items for LinkItems.
Reid Spencerc4064132004-12-13 03:01:14 +0000451
452 cl::list<std::string>::const_iterator fileIt = Files.begin();
453 cl::list<std::string>::const_iterator libIt = Libraries.begin();
454
455 int libPos = -1, filePos = -1;
Reid Spencer05f7e792004-12-13 17:18:19 +0000456 while ( libIt != Libraries.end() || fileIt != Files.end() ) {
Reid Spencerc4064132004-12-13 03:01:14 +0000457 if (libIt != Libraries.end())
458 libPos = Libraries.getPosition(libIt - Libraries.begin());
459 else
460 libPos = -1;
461 if (fileIt != Files.end())
462 filePos = Files.getPosition(fileIt - Files.begin());
463 else
464 filePos = -1;
465
466 if (filePos != -1 && (libPos == -1 || filePos < libPos)) {
467 // Add a source file
468 Items.push_back(std::make_pair(*fileIt++, false));
469 } else if (libPos != -1 && (filePos == -1 || libPos < filePos)) {
470 // Add a library
471 Items.push_back(std::make_pair(*libIt++, true));
Reid Spencerc4064132004-12-13 03:01:14 +0000472 }
473 }
474}
475
Reid Spencer445564a2004-11-20 20:02:56 +0000476// Rightly this should go in a header file but it just seems such a waste.
477namespace llvm {
478extern void Optimize(Module*);
479}
480
Reid Spencerc0af3f02004-09-13 01:27:53 +0000481int main(int argc, char **argv, char **envp) {
Chris Lattnerc30598b2006-12-06 01:18:01 +0000482 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000483 try {
484 // Initial global variable above for convenience printing of program name.
485 progname = sys::Path(argv[0]).getBasename();
Misha Brukman3da94ae2005-04-22 00:00:37 +0000486
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000487 // Parse the command line options
Dan Gohman82a13c92007-10-08 15:45:12 +0000488 cl::ParseCommandLineOptions(argc, argv, "llvm linker\n");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000489 sys::PrintStackTraceOnErrorSignal();
Reid Spencerc0af3f02004-09-13 01:27:53 +0000490
Reid Spencer49521432006-11-11 11:54:25 +0000491 // Construct a Linker (now that Verbose is set)
492 Linker TheLinker(progname, OutputFilename, Verbose);
Reid Spencerc82a5da2007-04-04 06:34:22 +0000493
Gabor Greifa99be512007-07-05 17:07:56 +0000494 // Keep track of the native link items (versus the bitcode items)
Reid Spencerc82a5da2007-04-04 06:34:22 +0000495 Linker::ItemList NativeLinkItems;
Reid Spencer49521432006-11-11 11:54:25 +0000496
497 // Add library paths to the linker
Reid Spencer78df5c32006-03-06 06:38:19 +0000498 TheLinker.addPaths(LibPaths);
499 TheLinker.addSystemPaths();
500
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000501 // Remove any consecutive duplicates of the same library...
502 Libraries.erase(std::unique(Libraries.begin(), Libraries.end()),
503 Libraries.end());
Reid Spencerc0af3f02004-09-13 01:27:53 +0000504
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000505 if (LinkAsLibrary) {
506 std::vector<sys::Path> Files;
507 for (unsigned i = 0; i < InputFilenames.size(); ++i )
508 Files.push_back(sys::Path(InputFilenames[i]));
509 if (TheLinker.LinkInFiles(Files))
510 return 1; // Error already printed
Reid Spencer6b463b22004-12-08 05:17:40 +0000511
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000512 // The libraries aren't linked in but are noted as "dependent" in the
513 // module.
Misha Brukman3da94ae2005-04-22 00:00:37 +0000514 for (cl::list<std::string>::const_iterator I = Libraries.begin(),
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000515 E = Libraries.end(); I != E ; ++I) {
516 TheLinker.getModule()->addLibrary(*I);
517 }
Reid Spencerc0af3f02004-09-13 01:27:53 +0000518 } else {
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000519 // Build a list of the items from our command line
520 Linker::ItemList Items;
521 BuildLinkItems(Items, InputFilenames, Libraries);
522
523 // Link all the items together
Reid Spencerc82a5da2007-04-04 06:34:22 +0000524 if (TheLinker.LinkInItems(Items, NativeLinkItems) )
Reid Spencer708585a2007-02-09 03:08:06 +0000525 return 1; // Error already printed
Reid Spencerc0af3f02004-09-13 01:27:53 +0000526 }
Reid Spencerc0af3f02004-09-13 01:27:53 +0000527
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000528 std::auto_ptr<Module> Composite(TheLinker.releaseModule());
529
530 // Optimize the module
531 Optimize(Composite.get());
532
Gabor Greifa99be512007-07-05 17:07:56 +0000533 // Generate the bitcode for the optimized module.
534 std::string RealBitcodeOutput = OutputFilename;
535 if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
536 GenerateBitcode(Composite.get(), RealBitcodeOutput);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000537
538 // If we are not linking a library, generate either a native executable
539 // or a JIT shell script, depending upon what the user wants.
540 if (!LinkAsLibrary) {
Reid Spencer73a74be2005-12-21 05:03:23 +0000541 // If the user wants to run a post-link optimization, run it now.
542 if (!PostLinkOpts.empty()) {
543 std::vector<std::string> opts = PostLinkOpts;
544 for (std::vector<std::string>::iterator I = opts.begin(),
545 E = opts.end(); I != E; ++I) {
546 sys::Path prog(*I);
547 if (!prog.canExecute()) {
548 prog = sys::Program::FindProgramByName(*I);
549 if (prog.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000550 PrintAndExit(std::string("Optimization program '") + *I +
Reid Spencer73a74be2005-12-21 05:03:23 +0000551 "' is not found or not executable.");
552 }
553 // Get the program arguments
554 sys::Path tmp_output("opt_result");
Reid Spencere5c9cb52006-08-23 00:39:35 +0000555 std::string ErrMsg;
Reid Spencer708585a2007-02-09 03:08:06 +0000556 if (tmp_output.createTemporaryFileOnDisk(true, &ErrMsg))
557 PrintAndExit(ErrMsg);
558
Reid Spencer73a74be2005-12-21 05:03:23 +0000559 const char* args[4];
560 args[0] = I->c_str();
Gabor Greifa99be512007-07-05 17:07:56 +0000561 args[1] = RealBitcodeOutput.c_str();
Reid Spencer73a74be2005-12-21 05:03:23 +0000562 args[2] = tmp_output.c_str();
563 args[3] = 0;
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000564 if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) {
Gabor Greifa99be512007-07-05 17:07:56 +0000565 if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) {
566 sys::Path target(RealBitcodeOutput);
Reid Spencer73a74be2005-12-21 05:03:23 +0000567 target.eraseFromDisk();
Reid Spencer708585a2007-02-09 03:08:06 +0000568 if (tmp_output.renamePathOnDisk(target, &ErrMsg))
569 PrintAndExit(ErrMsg, 2);
Reid Spencer73a74be2005-12-21 05:03:23 +0000570 } else
Gabor Greifa99be512007-07-05 17:07:56 +0000571 PrintAndExit("Post-link optimization output is not bitcode");
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000572 } else {
Reid Spencer708585a2007-02-09 03:08:06 +0000573 PrintAndExit(ErrMsg);
Reid Spencer73a74be2005-12-21 05:03:23 +0000574 }
575 }
576 }
577
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000578 // If the user wants to generate a native executable, compile it from the
Gabor Greifa99be512007-07-05 17:07:56 +0000579 // bitcode file.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000580 //
Gabor Greifa99be512007-07-05 17:07:56 +0000581 // Otherwise, create a script that will run the bitcode through the JIT.
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000582 if (Native) {
583 // Name of the Assembly Language output file
584 sys::Path AssemblyFile ( OutputFilename);
585 AssemblyFile.appendSuffix("s");
586
587 // Mark the output files for removal if we get an interrupt.
588 sys::RemoveFileOnSignal(AssemblyFile);
589 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
590
591 // Determine the locations of the llc and gcc programs.
592 sys::Path llc = FindExecutable("llc", argv[0]);
593 if (llc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000594 PrintAndExit("Failed to find llc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000595
596 sys::Path gcc = FindExecutable("gcc", argv[0]);
597 if (gcc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000598 PrintAndExit("Failed to find gcc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000599
Gabor Greifa99be512007-07-05 17:07:56 +0000600 // Generate an assembly language file for the bitcode.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000601 std::string ErrMsg;
Gabor Greifa99be512007-07-05 17:07:56 +0000602 if (0 != GenerateAssembly(AssemblyFile.toString(), RealBitcodeOutput,
Reid Spencer708585a2007-02-09 03:08:06 +0000603 llc, ErrMsg))
604 PrintAndExit(ErrMsg);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000605
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000606 if (0 != GenerateNative(OutputFilename, AssemblyFile.toString(),
Reid Spencerc82a5da2007-04-04 06:34:22 +0000607 NativeLinkItems, gcc, envp, ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000608 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000609
610 // Remove the assembly language file.
Reid Spencera229c5c2005-07-08 03:08:58 +0000611 AssemblyFile.eraseFromDisk();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000612 } else if (NativeCBE) {
613 sys::Path CFile (OutputFilename);
614 CFile.appendSuffix("cbe.c");
615
616 // Mark the output files for removal if we get an interrupt.
617 sys::RemoveFileOnSignal(CFile);
618 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
619
620 // Determine the locations of the llc and gcc programs.
621 sys::Path llc = FindExecutable("llc", argv[0]);
622 if (llc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000623 PrintAndExit("Failed to find llc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000624
625 sys::Path gcc = FindExecutable("gcc", argv[0]);
626 if (gcc.isEmpty())
Reid Spencer708585a2007-02-09 03:08:06 +0000627 PrintAndExit("Failed to find gcc");
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000628
Gabor Greifa99be512007-07-05 17:07:56 +0000629 // Generate an assembly language file for the bitcode.
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000630 std::string ErrMsg;
631 if (0 != GenerateCFile(
Gabor Greifa99be512007-07-05 17:07:56 +0000632 CFile.toString(), RealBitcodeOutput, llc, ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000633 PrintAndExit(ErrMsg);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000634
Reid Spencerc82a5da2007-04-04 06:34:22 +0000635 if (0 != GenerateNative(OutputFilename, CFile.toString(),
636 NativeLinkItems, gcc, envp, ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000637 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000638
639 // Remove the assembly language file.
Reid Spencera229c5c2005-07-08 03:08:58 +0000640 CFile.eraseFromDisk();
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000641
642 } else {
643 EmitShellScript(argv);
644 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000645
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000646 // Make the script executable...
Reid Spencere1647f42006-08-22 23:27:23 +0000647 std::string ErrMsg;
Reid Spencer708585a2007-02-09 03:08:06 +0000648 if (sys::Path(OutputFilename).makeExecutableOnDisk(&ErrMsg))
649 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000650
Gabor Greifa99be512007-07-05 17:07:56 +0000651 // Make the bitcode file readable and directly executable in LLEE as well
652 if (sys::Path(RealBitcodeOutput).makeExecutableOnDisk(&ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000653 PrintAndExit(ErrMsg);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000654
Gabor Greifa99be512007-07-05 17:07:56 +0000655 if (sys::Path(RealBitcodeOutput).makeReadableOnDisk(&ErrMsg))
Reid Spencer708585a2007-02-09 03:08:06 +0000656 PrintAndExit(ErrMsg);
657 }
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000658 } catch (const std::string& msg) {
Reid Spencer708585a2007-02-09 03:08:06 +0000659 PrintAndExit(msg,2);
Reid Spencer1ef8bda2004-12-30 05:36:08 +0000660 } catch (...) {
Reid Spencer708585a2007-02-09 03:08:06 +0000661 PrintAndExit("Unexpected unknown exception occurred.", 2);
Reid Spencerc0af3f02004-09-13 01:27:53 +0000662 }
Reid Spencer708585a2007-02-09 03:08:06 +0000663
664 // Graceful exit
665 return 0;
Reid Spencerc0af3f02004-09-13 01:27:53 +0000666}