blob: 38b3d418451e03dd998c92336bb9f0e1829dcb73 [file] [log] [blame]
Chris Lattnera58d2be2003-09-30 03:24:28 +00001//===- GenerateCode.cpp - Functions for generating executable files ------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// 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 Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
John Criswelldc0de4f2003-09-18 16:22:26 +00009//
10// This file contains functions for generating executable files once linking
11// has finished. This includes generating a shell script to run the JIT or
12// a native executable derived from the bytecode.
13//
14//===----------------------------------------------------------------------===//
15
Misha Brukmanbb5a4d02003-09-30 17:33:12 +000016#include "gccld.h"
Reid Spencer6da1e0d2004-12-14 04:20:08 +000017#include "llvm/System/Program.h"
John Criswelldc0de4f2003-09-18 16:22:26 +000018#include "llvm/Module.h"
19#include "llvm/PassManager.h"
Chris Lattnercc650b62003-11-09 19:55:09 +000020#include "llvm/Analysis/LoadValueNumbering.h"
Chris Lattner2d26ffb2004-07-27 08:13:15 +000021#include "llvm/Analysis/Passes.h"
Brian Gaeke1ab90d42003-11-16 23:07:28 +000022#include "llvm/Analysis/Verifier.h"
Reid Spencer837149c2005-02-28 08:45:35 +000023#include "llvm/Bytecode/Archive.h"
John Criswelldc0de4f2003-09-18 16:22:26 +000024#include "llvm/Bytecode/WriteBytecodePass.h"
Misha Brukmanbb5a4d02003-09-30 17:33:12 +000025#include "llvm/Target/TargetData.h"
26#include "llvm/Transforms/IPO.h"
27#include "llvm/Transforms/Scalar.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000028#include "llvm/Support/SystemUtils.h"
29#include "llvm/Support/CommandLine.h"
Reid Spencer6da1e0d2004-12-14 04:20:08 +000030
Brian Gaeked0fde302003-11-11 22:41:34 +000031using namespace llvm;
32
Chris Lattner246ce3c2003-10-24 18:09:23 +000033namespace {
34 cl::opt<bool>
35 DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
Brian Gaeke1ab90d42003-11-16 23:07:28 +000036
37 cl::opt<bool>
38 Verify("verify", cl::desc("Verify intermediate results of all passes"));
39
40 cl::opt<bool>
41 DisableOptimizations("disable-opt",
42 cl::desc("Do not run any optimization passes"));
Chris Lattner246ce3c2003-10-24 18:09:23 +000043}
44
Chris Lattner0ebee742004-06-02 00:22:24 +000045/// CopyEnv - This function takes an array of environment variables and makes a
46/// copy of it. This copy can then be manipulated any way the caller likes
47/// without affecting the process's real environment.
48///
49/// Inputs:
50/// envp - An array of C strings containing an environment.
51///
52/// Return value:
53/// NULL - An error occurred.
54///
55/// Otherwise, a pointer to a new array of C strings is returned. Every string
56/// in the array is a duplicate of the one in the original array (i.e. we do
57/// not copy the char *'s from one array to another).
58///
59static char ** CopyEnv(char ** const envp) {
60 // Count the number of entries in the old list;
61 unsigned entries; // The number of entries in the old environment list
62 for (entries = 0; envp[entries] != NULL; entries++)
63 /*empty*/;
64
65 // Add one more entry for the NULL pointer that ends the list.
66 ++entries;
67
68 // If there are no entries at all, just return NULL.
69 if (entries == 0)
70 return NULL;
71
72 // Allocate a new environment list.
73 char **newenv = new char* [entries];
74 if ((newenv = new char* [entries]) == NULL)
75 return NULL;
76
77 // Make a copy of the list. Don't forget the NULL that ends the list.
78 entries = 0;
79 while (envp[entries] != NULL) {
80 newenv[entries] = new char[strlen (envp[entries]) + 1];
81 strcpy (newenv[entries], envp[entries]);
82 ++entries;
83 }
84 newenv[entries] = NULL;
85
86 return newenv;
87}
88
89
90/// RemoveEnv - Remove the specified environment variable from the environment
91/// array.
92///
93/// Inputs:
94/// name - The name of the variable to remove. It cannot be NULL.
95/// envp - The array of environment variables. It cannot be NULL.
96///
97/// Notes:
98/// This is mainly done because functions to remove items from the environment
99/// are not available across all platforms. In particular, Solaris does not
100/// seem to have an unsetenv() function or a setenv() function (or they are
101/// undocumented if they do exist).
102///
103static void RemoveEnv(const char * name, char ** const envp) {
104 for (unsigned index=0; envp[index] != NULL; index++) {
105 // Find the first equals sign in the array and make it an EOS character.
106 char *p = strchr (envp[index], '=');
107 if (p == NULL)
108 continue;
109 else
110 *p = '\0';
111
112 // Compare the two strings. If they are equal, zap this string.
113 // Otherwise, restore it.
114 if (!strcmp(name, envp[index]))
115 *envp[index] = '\0';
116 else
117 *p = '=';
118 }
Chris Lattner0ebee742004-06-02 00:22:24 +0000119}
120
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000121static void dumpArgs(const char **args) {
Chris Lattnerf3942132005-09-23 06:05:46 +0000122 std::cerr << *args++;
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000123 while (*args)
Chris Lattnerf3942132005-09-23 06:05:46 +0000124 std::cerr << ' ' << *args++;
125 std::cerr << '\n' << std::flush;
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000126}
127
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000128static inline void addPass(PassManager &PM, Pass *P) {
129 // Add the pass to the pass manager...
130 PM.add(P);
Misha Brukman704448f2005-04-20 04:08:35 +0000131
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000132 // If we are verifying all of the intermediate steps, add the verifier...
133 if (Verify) PM.add(createVerifierPass());
134}
135
Reid Spencer837149c2005-02-28 08:45:35 +0000136static bool isBytecodeLibrary(const sys::Path &FullPath) {
137 // Check for a bytecode file
138 if (FullPath.isBytecodeFile()) return true;
139 // Check for a dynamic library file
140 if (FullPath.isDynamicLibrary()) return false;
141 // Check for a true bytecode archive file
142 if (FullPath.isArchive() ) {
143 std::string ErrorMessage;
144 Archive* ar = Archive::OpenAndLoadSymbols( FullPath, &ErrorMessage );
Misha Brukman704448f2005-04-20 04:08:35 +0000145 return ar->isBytecodeArchive();
Reid Spencer837149c2005-02-28 08:45:35 +0000146 }
147 return false;
148}
149
Misha Brukman704448f2005-04-20 04:08:35 +0000150static bool isBytecodeLPath(const std::string &LibPath) {
Reid Spencerdd04df02005-07-07 23:21:43 +0000151 sys::Path LPath(LibPath);
Reid Spencer837149c2005-02-28 08:45:35 +0000152
Chris Lattner7b5634d2005-09-23 06:11:24 +0000153 // Make sure it exists and is a directory
Chris Lattner0b32d8b2006-08-01 18:04:01 +0000154 sys::FileStatus Status;
155 if (LPath.getFileStatus(Status) || !Status.isDir)
Chris Lattner7b5634d2005-09-23 06:11:24 +0000156 return false;
Chris Lattner7b5634d2005-09-23 06:11:24 +0000157
Reid Spencer837149c2005-02-28 08:45:35 +0000158 // Grab the contents of the -L path
159 std::set<sys::Path> Files;
Reid Spencer142ca8e2006-08-23 06:56:27 +0000160 if (LPath.getDirectoryContents(Files, 0))
161 return false;
Chris Lattner7b5634d2005-09-23 06:11:24 +0000162
Reid Spencer837149c2005-02-28 08:45:35 +0000163 // Iterate over the contents one by one to determine
164 // if this -L path has any bytecode shared libraries
165 // or archives
166 std::set<sys::Path>::iterator File = Files.begin();
Chris Lattner7b5634d2005-09-23 06:11:24 +0000167 std::string dllsuffix = sys::Path::GetDLLSuffix();
Reid Spencer837149c2005-02-28 08:45:35 +0000168 for (; File != Files.end(); ++File) {
169
Chris Lattner0b32d8b2006-08-01 18:04:01 +0000170 // Not a file?
171 if (File->getFileStatus(Status) || Status.isDir)
Reid Spencer837149c2005-02-28 08:45:35 +0000172 continue;
Misha Brukman704448f2005-04-20 04:08:35 +0000173
Reid Spencer837149c2005-02-28 08:45:35 +0000174 std::string path = File->toString();
Reid Spencer837149c2005-02-28 08:45:35 +0000175
Chris Lattner0b32d8b2006-08-01 18:04:01 +0000176 // Check for an ending '.dll', '.so' or '.a' suffix as all
Reid Spencer837149c2005-02-28 08:45:35 +0000177 // other files are not of interest to us here
Chris Lattner7b5634d2005-09-23 06:11:24 +0000178 if (path.find(dllsuffix, path.size()-dllsuffix.size()) == std::string::npos
179 && path.find(".a", path.size()-2) == std::string::npos)
Reid Spencer837149c2005-02-28 08:45:35 +0000180 continue;
Misha Brukman704448f2005-04-20 04:08:35 +0000181
Reid Spencer837149c2005-02-28 08:45:35 +0000182 // Finally, check to see if the file is a true bytecode file
183 if (isBytecodeLibrary(*File))
Chris Lattner7b5634d2005-09-23 06:11:24 +0000184 return true;
Reid Spencer837149c2005-02-28 08:45:35 +0000185 }
Chris Lattner7b5634d2005-09-23 06:11:24 +0000186 return false;
Reid Spencer837149c2005-02-28 08:45:35 +0000187}
188
Misha Brukman1c534052003-09-30 17:42:57 +0000189/// GenerateBytecode - generates a bytecode file from the specified module.
190///
191/// Inputs:
192/// M - The module for which bytecode should be generated.
Chris Lattner3f14fb12004-12-02 21:26:10 +0000193/// StripLevel - 2 if we should strip all symbols, 1 if we should strip
194/// debug info.
Misha Brukman1c534052003-09-30 17:42:57 +0000195/// Internalize - Flags whether all symbols should be marked internal.
196/// Out - Pointer to file stream to which to write the output.
197///
Misha Brukman1c534052003-09-30 17:42:57 +0000198/// Returns non-zero value on error.
199///
Chris Lattner3f14fb12004-12-02 21:26:10 +0000200int llvm::GenerateBytecode(Module *M, int StripLevel, bool Internalize,
Chris Lattner27a9b272004-04-06 16:54:04 +0000201 std::ostream *Out) {
John Criswelldc0de4f2003-09-18 16:22:26 +0000202 // In addition to just linking the input from GCC, we also want to spiff it up
203 // a little bit. Do this now.
204 PassManager Passes;
205
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000206 if (Verify) Passes.add(createVerifierPass());
207
John Criswelldc0de4f2003-09-18 16:22:26 +0000208 // Add an appropriate TargetData instance for this module...
Chris Lattner831b1212006-06-16 18:23:49 +0000209 addPass(Passes, new TargetData(M));
John Criswelldc0de4f2003-09-18 16:22:26 +0000210
Chris Lattner548e8132003-11-28 09:44:03 +0000211 // Often if the programmer does not specify proper prototypes for the
212 // functions they are calling, they end up calling a vararg version of the
213 // function that does not get a body filled in (the real function has typed
214 // arguments). This pass merges the two functions.
215 addPass(Passes, createFunctionResolvingPass());
216
Chris Lattner429a9cb2004-11-16 18:59:20 +0000217 if (!DisableOptimizations) {
Chris Lattnerfbcd54f2005-10-18 06:29:43 +0000218 // Now that composite has been compiled, scan through the module, looking
219 // for a main function. If main is defined, mark all other functions
220 // internal.
221 addPass(Passes, createInternalizePass(Internalize));
Chris Lattner86f42db2004-11-17 16:41:19 +0000222
Chris Lattnercf508bc2006-09-09 21:30:13 +0000223 // Propagate constants at call sites into the functions they call. This
224 // opens opportunities for globalopt (and inlining) by substituting function
225 // pointers passed as arguments to direct uses of functions.
226 addPass(Passes, createIPSCCPPass());
227
Chris Lattner93a00e42004-10-07 04:12:02 +0000228 // Now that we internalized some globals, see if we can hack on them!
229 addPass(Passes, createGlobalOptimizerPass());
Chris Lattnerdd429c62004-02-25 21:35:13 +0000230
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000231 // Linking modules together can lead to duplicated global constants, only
232 // keep one copy of each constant...
Misha Brukman438e3642003-11-20 06:26:15 +0000233 addPass(Passes, createConstantMergePass());
John Criswelldc0de4f2003-09-18 16:22:26 +0000234
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000235 // Remove unused arguments from functions...
Misha Brukman438e3642003-11-20 06:26:15 +0000236 addPass(Passes, createDeadArgEliminationPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000237
238 if (!DisableInline)
Misha Brukman438e3642003-11-20 06:26:15 +0000239 addPass(Passes, createFunctionInliningPass()); // Inline small functions
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000240
Chris Lattnerf9c455d2004-04-12 05:38:15 +0000241 addPass(Passes, createPruneEHPass()); // Remove dead EH info
Chris Lattnere3ef9b52004-10-11 04:47:18 +0000242 addPass(Passes, createGlobalOptimizerPass()); // Optimize globals again.
Chris Lattnerf9c455d2004-04-12 05:38:15 +0000243 addPass(Passes, createGlobalDCEPass()); // Remove dead functions
244
Chris Lattnerf8338c42004-03-07 22:12:40 +0000245 // If we didn't decide to inline a function, check to see if we can
246 // transform it to pass arguments by value instead of by reference.
247 addPass(Passes, createArgumentPromotionPass());
248
Chris Lattnerf74a4012004-02-26 03:34:30 +0000249 // The IPO passes may leave cruft around. Clean up after them.
250 addPass(Passes, createInstructionCombiningPass());
251
252 addPass(Passes, createScalarReplAggregatesPass()); // Break up allocas
253
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000254 // Run a few AA driven optimizations here and now, to cleanup the code.
Chris Lattner93127fb2004-08-02 10:10:08 +0000255 addPass(Passes, createGlobalsModRefPass()); // IP alias analysis
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000256
Misha Brukman438e3642003-11-20 06:26:15 +0000257 addPass(Passes, createLICMPass()); // Hoist loop invariants
258 addPass(Passes, createLoadValueNumberingPass()); // GVN for load instrs
259 addPass(Passes, createGCSEPass()); // Remove common subexprs
Chris Lattner2d26ffb2004-07-27 08:13:15 +0000260 addPass(Passes, createDeadStoreEliminationPass()); // Nuke dead stores
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000261
Chris Lattnerf74a4012004-02-26 03:34:30 +0000262 // Cleanup and simplify the code after the scalar optimizations.
Misha Brukman438e3642003-11-20 06:26:15 +0000263 addPass(Passes, createInstructionCombiningPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000264
265 // Delete basic blocks, which optimization passes may have killed...
Misha Brukman438e3642003-11-20 06:26:15 +0000266 addPass(Passes, createCFGSimplificationPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000267
268 // Now that we have optimized the program, discard unreachable functions...
Misha Brukman438e3642003-11-20 06:26:15 +0000269 addPass(Passes, createGlobalDCEPass());
John Criswelldc0de4f2003-09-18 16:22:26 +0000270 }
271
Chris Lattner3f14fb12004-12-02 21:26:10 +0000272 // If the -s or -S command line options were specified, strip the symbols out
273 // of the resulting program to make it smaller. -s and -S are GLD options
274 // that we are supporting.
275 if (StripLevel)
276 addPass(Passes, createStripSymbolsPass(StripLevel == 1));
Chris Lattner429a9cb2004-11-16 18:59:20 +0000277
Chris Lattner0cccb182004-01-14 03:39:46 +0000278 // Make sure everything is still good.
279 Passes.add(createVerifierPass());
280
John Criswelldc0de4f2003-09-18 16:22:26 +0000281 // Add the pass that writes bytecode to the output file...
Misha Brukman438e3642003-11-20 06:26:15 +0000282 addPass(Passes, new WriteBytecodePass(Out));
John Criswelldc0de4f2003-09-18 16:22:26 +0000283
284 // Run our queue of passes all at once now, efficiently.
285 Passes.run(*M);
286
287 return 0;
288}
289
Misha Brukman1c534052003-09-30 17:42:57 +0000290/// GenerateAssembly - generates a native assembly language source file from the
291/// specified bytecode file.
292///
293/// Inputs:
294/// InputFilename - The name of the output bytecode file.
295/// OutputFilename - The name of the file to generate.
296/// llc - The pathname to use for LLC.
Misha Brukman1c534052003-09-30 17:42:57 +0000297///
Misha Brukman1c534052003-09-30 17:42:57 +0000298/// Return non-zero value on error.
299///
Chris Lattner27a9b272004-04-06 16:54:04 +0000300int llvm::GenerateAssembly(const std::string &OutputFilename,
301 const std::string &InputFilename,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000302 const sys::Path &llc,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000303 std::string& ErrMsg,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000304 bool Verbose) {
John Criswelldc0de4f2003-09-18 16:22:26 +0000305 // Run LLC to convert the bytecode file into assembly code.
Reid Spencerf6358c72004-12-19 18:00:56 +0000306 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000307 args.push_back(llc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000308 args.push_back("-f");
309 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000310 args.push_back(OutputFilename.c_str());
311 args.push_back(InputFilename.c_str());
Chris Lattnered5fa582005-02-13 23:02:34 +0000312 args.push_back(0);
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000313 if (Verbose) dumpArgs(&args[0]);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000314 return sys::Program::ExecuteAndWait(llc, &args[0],0,0,0,&ErrMsg);
John Criswelldc0de4f2003-09-18 16:22:26 +0000315}
316
Chris Lattner1d924f62005-08-02 22:07:38 +0000317/// GenerateCFile - generates a C source file from the specified bytecode file.
Chris Lattner27a9b272004-04-06 16:54:04 +0000318int llvm::GenerateCFile(const std::string &OutputFile,
319 const std::string &InputFile,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000320 const sys::Path &llc,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000321 std::string& ErrMsg,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000322 bool Verbose) {
Chris Lattner69e8d282004-04-06 16:43:13 +0000323 // Run LLC to convert the bytecode file into C.
Reid Spencerf6358c72004-12-19 18:00:56 +0000324 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000325 args.push_back(llc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000326 args.push_back("-march=c");
327 args.push_back("-f");
328 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000329 args.push_back(OutputFile.c_str());
330 args.push_back(InputFile.c_str());
Chris Lattnered5fa582005-02-13 23:02:34 +0000331 args.push_back(0);
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000332 if (Verbose) dumpArgs(&args[0]);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000333 return sys::Program::ExecuteAndWait(llc, &args[0],0,0,0,&ErrMsg);
Chris Lattner69e8d282004-04-06 16:43:13 +0000334}
335
Chris Lattner1d924f62005-08-02 22:07:38 +0000336/// GenerateNative - generates a native executable file from the specified
337/// assembly source file.
Misha Brukman1c534052003-09-30 17:42:57 +0000338///
339/// Inputs:
340/// InputFilename - The name of the output bytecode file.
341/// OutputFilename - The name of the file to generate.
342/// Libraries - The list of libraries with which to link.
Misha Brukman1c534052003-09-30 17:42:57 +0000343/// gcc - The pathname to use for GGC.
344/// envp - A copy of the process's current environment.
345///
346/// Outputs:
347/// None.
348///
349/// Returns non-zero value on error.
350///
Chris Lattner27a9b272004-04-06 16:54:04 +0000351int llvm::GenerateNative(const std::string &OutputFilename,
352 const std::string &InputFilename,
Reid Spencer837149c2005-02-28 08:45:35 +0000353 const std::vector<std::string> &LibPaths,
Chris Lattner27a9b272004-04-06 16:54:04 +0000354 const std::vector<std::string> &Libraries,
Reid Spencer837149c2005-02-28 08:45:35 +0000355 const sys::Path &gcc, char ** const envp,
356 bool Shared,
Chris Lattner1d924f62005-08-02 22:07:38 +0000357 bool ExportAllAsDynamic,
Reid Spencer156aa352005-12-22 01:50:56 +0000358 const std::vector<std::string> &RPaths,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000359 const std::string &SOName,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000360 std::string& ErrMsg,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000361 bool Verbose) {
John Criswelldc0de4f2003-09-18 16:22:26 +0000362 // Remove these environment variables from the environment of the
363 // programs that we will execute. It appears that GCC sets these
364 // environment variables so that the programs it uses can configure
365 // themselves identically.
366 //
Misha Brukmanbb5a4d02003-09-30 17:33:12 +0000367 // However, when we invoke GCC below, we want it to use its normal
368 // configuration. Hence, we must sanitize its environment.
369 char ** clean_env = CopyEnv(envp);
John Criswelldc0de4f2003-09-18 16:22:26 +0000370 if (clean_env == NULL)
John Criswelldc0de4f2003-09-18 16:22:26 +0000371 return 1;
Misha Brukmanbb5a4d02003-09-30 17:33:12 +0000372 RemoveEnv("LIBRARY_PATH", clean_env);
373 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
374 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
375 RemoveEnv("COMPILER_PATH", clean_env);
376 RemoveEnv("COLLECT_GCC", clean_env);
John Criswelldc0de4f2003-09-18 16:22:26 +0000377
John Criswelldc0de4f2003-09-18 16:22:26 +0000378
John Criswelldc0de4f2003-09-18 16:22:26 +0000379 // Run GCC to assemble and link the program into native code.
380 //
381 // Note:
382 // We can't just assemble and link the file with the system assembler
383 // and linker because we don't know where to put the _start symbol.
384 // GCC mysteriously knows how to do it.
Reid Spencerf6358c72004-12-19 18:00:56 +0000385 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000386 args.push_back(gcc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000387 args.push_back("-fno-strict-aliasing");
388 args.push_back("-O3");
389 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000390 args.push_back(OutputFilename.c_str());
391 args.push_back(InputFilename.c_str());
Misha Brukman704448f2005-04-20 04:08:35 +0000392
Chris Lattnerf3942132005-09-23 06:05:46 +0000393 // StringsToDelete - We don't want to call c_str() on temporary strings.
394 // If we need a temporary string, copy it here so that the memory is not
395 // reclaimed until after the exec call. All of these strings are allocated
396 // with strdup.
397 std::vector<char*> StringsToDelete;
398
Reid Spencer837149c2005-02-28 08:45:35 +0000399 if (Shared) args.push_back("-shared");
Chris Lattner1d924f62005-08-02 22:07:38 +0000400 if (ExportAllAsDynamic) args.push_back("-export-dynamic");
Reid Spencer156aa352005-12-22 01:50:56 +0000401 if (!RPaths.empty()) {
402 for (std::vector<std::string>::const_iterator I = RPaths.begin(),
403 E = RPaths.end(); I != E; I++) {
404 std::string rp = "-Wl,-rpath," + *I;
405 StringsToDelete.push_back(strdup(rp.c_str()));
406 args.push_back(StringsToDelete.back());
407 }
Reid Spencer837149c2005-02-28 08:45:35 +0000408 }
409 if (!SOName.empty()) {
410 std::string so = "-Wl,-soname," + SOName;
Chris Lattnerf3942132005-09-23 06:05:46 +0000411 StringsToDelete.push_back(strdup(so.c_str()));
412 args.push_back(StringsToDelete.back());
Reid Spencer837149c2005-02-28 08:45:35 +0000413 }
Misha Brukman704448f2005-04-20 04:08:35 +0000414
Reid Spencer837149c2005-02-28 08:45:35 +0000415 // Add in the libpaths to find the libraries.
416 //
417 // Note:
418 // When gccld is called from the llvm-gxx frontends, the -L paths for
Misha Brukman3da94ae2005-04-22 00:00:37 +0000419 // the LLVM cfrontend install paths are appended. We don't want the
Reid Spencer837149c2005-02-28 08:45:35 +0000420 // native linker to use these -L paths as they contain bytecode files.
421 // Further, we don't want any -L paths that contain bytecode shared
422 // libraries or true bytecode archive files. We omit them in all such
423 // cases.
Chris Lattnerf3942132005-09-23 06:05:46 +0000424 for (unsigned index = 0; index < LibPaths.size(); index++)
425 if (!isBytecodeLPath(LibPaths[index])) {
426 std::string Tmp = "-L"+LibPaths[index];
427 StringsToDelete.push_back(strdup(Tmp.c_str()));
428 args.push_back(StringsToDelete.back());
Reid Spencer837149c2005-02-28 08:45:35 +0000429 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000430
John Criswell71478b72003-09-19 20:24:23 +0000431 // Add in the libraries to link.
Chris Lattnerf3942132005-09-23 06:05:46 +0000432 for (unsigned index = 0; index < Libraries.size(); index++)
Chris Lattner2b119952005-11-03 07:17:51 +0000433 // HACK: If this is libg, discard it. This gets added by the compiler
434 // driver when doing: 'llvm-gcc main.c -Wl,-native -o a.out -g'. Note that
435 // this should really be fixed by changing the llvm-gcc compiler driver.
436 if (Libraries[index] != "crtend" && Libraries[index] != "g") {
Chris Lattnerf3942132005-09-23 06:05:46 +0000437 std::string Tmp = "-l"+Libraries[index];
438 StringsToDelete.push_back(strdup(Tmp.c_str()));
439 args.push_back(StringsToDelete.back());
Reid Spencerf6358c72004-12-19 18:00:56 +0000440 }
Chris Lattnerf3942132005-09-23 06:05:46 +0000441 args.push_back(0); // Null terminate.
John Criswell71478b72003-09-19 20:24:23 +0000442
John Criswell71478b72003-09-19 20:24:23 +0000443 // Run the compiler to assembly and link together the program.
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000444 if (Verbose) dumpArgs(&args[0]);
Reid Spencer8ea5ecb2006-08-21 06:04:45 +0000445 int Res = sys::Program::ExecuteAndWait(
446 gcc, &args[0],(const char**)clean_env,0,0,&ErrMsg);
Chris Lattnerc7809822006-05-14 19:17:28 +0000447
448 delete [] clean_env;
Chris Lattnerf3942132005-09-23 06:05:46 +0000449
450 while (!StringsToDelete.empty()) {
451 free(StringsToDelete.back());
452 StringsToDelete.pop_back();
453 }
454 return Res;
John Criswelldc0de4f2003-09-18 16:22:26 +0000455}
Chris Lattner0ebee742004-06-02 00:22:24 +0000456