blob: 020d883a6bc21cc5c540696c7c4e0fc5e0a93284 [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 }
119
120 return;
121}
122
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000123static void dumpArgs(const char **args) {
124 std::cout << *args++;
125 while (*args)
126 std::cout << ' ' << *args++;
127 std::cout << '\n';
128}
129
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000130static inline void addPass(PassManager &PM, Pass *P) {
131 // Add the pass to the pass manager...
132 PM.add(P);
Misha Brukman704448f2005-04-20 04:08:35 +0000133
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000134 // If we are verifying all of the intermediate steps, add the verifier...
135 if (Verify) PM.add(createVerifierPass());
136}
137
Reid Spencer837149c2005-02-28 08:45:35 +0000138static bool isBytecodeLibrary(const sys::Path &FullPath) {
139 // Check for a bytecode file
140 if (FullPath.isBytecodeFile()) return true;
141 // Check for a dynamic library file
142 if (FullPath.isDynamicLibrary()) return false;
143 // Check for a true bytecode archive file
144 if (FullPath.isArchive() ) {
145 std::string ErrorMessage;
146 Archive* ar = Archive::OpenAndLoadSymbols( FullPath, &ErrorMessage );
Misha Brukman704448f2005-04-20 04:08:35 +0000147 return ar->isBytecodeArchive();
Reid Spencer837149c2005-02-28 08:45:35 +0000148 }
149 return false;
150}
151
Misha Brukman704448f2005-04-20 04:08:35 +0000152static bool isBytecodeLPath(const std::string &LibPath) {
Reid Spencer837149c2005-02-28 08:45:35 +0000153 bool isBytecodeLPath = false;
154
155 // Make sure the -L path has a '/' character
156 // because llvm-g++ passes them without the ending
Misha Brukman3da94ae2005-04-22 00:00:37 +0000157 // '/' char and sys::Path doesn't think it is a
158 // directory (see: sys::Path::isDirectory) without it
Reid Spencer837149c2005-02-28 08:45:35 +0000159 std::string dir = LibPath;
160 if ( dir[dir.length()-1] != '/' )
161 dir.append("/");
162
163 sys::Path LPath(dir);
164
165 // Grab the contents of the -L path
166 std::set<sys::Path> Files;
167 LPath.getDirectoryContents(Files);
168
169 // Iterate over the contents one by one to determine
170 // if this -L path has any bytecode shared libraries
171 // or archives
172 std::set<sys::Path>::iterator File = Files.begin();
173 for (; File != Files.end(); ++File) {
174
175 if ( File->isDirectory() )
176 continue;
Misha Brukman704448f2005-04-20 04:08:35 +0000177
Reid Spencer837149c2005-02-28 08:45:35 +0000178 std::string path = File->toString();
179 std::string dllsuffix = sys::Path::GetDLLSuffix();
180
181 // Check for an ending '.dll,.so' or '.a' suffix as all
182 // other files are not of interest to us here
183 if ( path.find(dllsuffix, path.size()-dllsuffix.size()) == std::string::npos
184 && path.find(".a", path.size()-2) == std::string::npos )
185 continue;
Misha Brukman704448f2005-04-20 04:08:35 +0000186
Reid Spencer837149c2005-02-28 08:45:35 +0000187 // Finally, check to see if the file is a true bytecode file
188 if (isBytecodeLibrary(*File))
189 isBytecodeLPath = true;
190 }
191 return isBytecodeLPath;
192}
193
Misha Brukman1c534052003-09-30 17:42:57 +0000194/// GenerateBytecode - generates a bytecode file from the specified module.
195///
196/// Inputs:
197/// M - The module for which bytecode should be generated.
Chris Lattner3f14fb12004-12-02 21:26:10 +0000198/// StripLevel - 2 if we should strip all symbols, 1 if we should strip
199/// debug info.
Misha Brukman1c534052003-09-30 17:42:57 +0000200/// Internalize - Flags whether all symbols should be marked internal.
201/// Out - Pointer to file stream to which to write the output.
202///
Misha Brukman1c534052003-09-30 17:42:57 +0000203/// Returns non-zero value on error.
204///
Chris Lattner3f14fb12004-12-02 21:26:10 +0000205int llvm::GenerateBytecode(Module *M, int StripLevel, bool Internalize,
Chris Lattner27a9b272004-04-06 16:54:04 +0000206 std::ostream *Out) {
John Criswelldc0de4f2003-09-18 16:22:26 +0000207 // In addition to just linking the input from GCC, we also want to spiff it up
208 // a little bit. Do this now.
209 PassManager Passes;
210
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000211 if (Verify) Passes.add(createVerifierPass());
212
John Criswelldc0de4f2003-09-18 16:22:26 +0000213 // Add an appropriate TargetData instance for this module...
Misha Brukman438e3642003-11-20 06:26:15 +0000214 addPass(Passes, new TargetData("gccld", M));
John Criswelldc0de4f2003-09-18 16:22:26 +0000215
Chris Lattner548e8132003-11-28 09:44:03 +0000216 // Often if the programmer does not specify proper prototypes for the
217 // functions they are calling, they end up calling a vararg version of the
218 // function that does not get a body filled in (the real function has typed
219 // arguments). This pass merges the two functions.
220 addPass(Passes, createFunctionResolvingPass());
221
Chris Lattner429a9cb2004-11-16 18:59:20 +0000222 if (!DisableOptimizations) {
Chris Lattner86f42db2004-11-17 16:41:19 +0000223 if (Internalize) {
224 // Now that composite has been compiled, scan through the module, looking
225 // for a main function. If main is defined, mark all other functions
226 // internal.
227 addPass(Passes, createInternalizePass());
228 }
229
Chris Lattner93a00e42004-10-07 04:12:02 +0000230 // Now that we internalized some globals, see if we can hack on them!
231 addPass(Passes, createGlobalOptimizerPass());
Chris Lattnerdd429c62004-02-25 21:35:13 +0000232
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000233 // Linking modules together can lead to duplicated global constants, only
234 // keep one copy of each constant...
Misha Brukman438e3642003-11-20 06:26:15 +0000235 addPass(Passes, createConstantMergePass());
John Criswelldc0de4f2003-09-18 16:22:26 +0000236
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000237 // Propagate constants at call sites into the functions they call.
Chris Lattnerb4a400a2004-12-10 08:03:43 +0000238 addPass(Passes, createIPSCCPPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000239
240 // Remove unused arguments from functions...
Misha Brukman438e3642003-11-20 06:26:15 +0000241 addPass(Passes, createDeadArgEliminationPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000242
243 if (!DisableInline)
Misha Brukman438e3642003-11-20 06:26:15 +0000244 addPass(Passes, createFunctionInliningPass()); // Inline small functions
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000245
Chris Lattnerf9c455d2004-04-12 05:38:15 +0000246 addPass(Passes, createPruneEHPass()); // Remove dead EH info
Chris Lattnere3ef9b52004-10-11 04:47:18 +0000247 addPass(Passes, createGlobalOptimizerPass()); // Optimize globals again.
Chris Lattnerf9c455d2004-04-12 05:38:15 +0000248 addPass(Passes, createGlobalDCEPass()); // Remove dead functions
249
Chris Lattnerf8338c42004-03-07 22:12:40 +0000250 // If we didn't decide to inline a function, check to see if we can
251 // transform it to pass arguments by value instead of by reference.
252 addPass(Passes, createArgumentPromotionPass());
253
Chris Lattnerf74a4012004-02-26 03:34:30 +0000254 // The IPO passes may leave cruft around. Clean up after them.
255 addPass(Passes, createInstructionCombiningPass());
256
257 addPass(Passes, createScalarReplAggregatesPass()); // Break up allocas
258
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000259 // Run a few AA driven optimizations here and now, to cleanup the code.
Chris Lattner93127fb2004-08-02 10:10:08 +0000260 addPass(Passes, createGlobalsModRefPass()); // IP alias analysis
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000261
Misha Brukman438e3642003-11-20 06:26:15 +0000262 addPass(Passes, createLICMPass()); // Hoist loop invariants
263 addPass(Passes, createLoadValueNumberingPass()); // GVN for load instrs
264 addPass(Passes, createGCSEPass()); // Remove common subexprs
Chris Lattner2d26ffb2004-07-27 08:13:15 +0000265 addPass(Passes, createDeadStoreEliminationPass()); // Nuke dead stores
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000266
Chris Lattnerf74a4012004-02-26 03:34:30 +0000267 // Cleanup and simplify the code after the scalar optimizations.
Misha Brukman438e3642003-11-20 06:26:15 +0000268 addPass(Passes, createInstructionCombiningPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000269
270 // Delete basic blocks, which optimization passes may have killed...
Misha Brukman438e3642003-11-20 06:26:15 +0000271 addPass(Passes, createCFGSimplificationPass());
Brian Gaeke1ab90d42003-11-16 23:07:28 +0000272
273 // Now that we have optimized the program, discard unreachable functions...
Misha Brukman438e3642003-11-20 06:26:15 +0000274 addPass(Passes, createGlobalDCEPass());
John Criswelldc0de4f2003-09-18 16:22:26 +0000275 }
276
Chris Lattner3f14fb12004-12-02 21:26:10 +0000277 // If the -s or -S command line options were specified, strip the symbols out
278 // of the resulting program to make it smaller. -s and -S are GLD options
279 // that we are supporting.
280 if (StripLevel)
281 addPass(Passes, createStripSymbolsPass(StripLevel == 1));
Chris Lattner429a9cb2004-11-16 18:59:20 +0000282
Chris Lattner0cccb182004-01-14 03:39:46 +0000283 // Make sure everything is still good.
284 Passes.add(createVerifierPass());
285
John Criswelldc0de4f2003-09-18 16:22:26 +0000286 // Add the pass that writes bytecode to the output file...
Misha Brukman438e3642003-11-20 06:26:15 +0000287 addPass(Passes, new WriteBytecodePass(Out));
John Criswelldc0de4f2003-09-18 16:22:26 +0000288
289 // Run our queue of passes all at once now, efficiently.
290 Passes.run(*M);
291
292 return 0;
293}
294
Misha Brukman1c534052003-09-30 17:42:57 +0000295/// GenerateAssembly - generates a native assembly language source file from the
296/// specified bytecode file.
297///
298/// Inputs:
299/// InputFilename - The name of the output bytecode file.
300/// OutputFilename - The name of the file to generate.
301/// llc - The pathname to use for LLC.
Misha Brukman1c534052003-09-30 17:42:57 +0000302///
Misha Brukman1c534052003-09-30 17:42:57 +0000303/// Return non-zero value on error.
304///
Chris Lattner27a9b272004-04-06 16:54:04 +0000305int llvm::GenerateAssembly(const std::string &OutputFilename,
306 const std::string &InputFilename,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000307 const sys::Path &llc,
308 bool Verbose) {
John Criswelldc0de4f2003-09-18 16:22:26 +0000309 // Run LLC to convert the bytecode file into assembly code.
Reid Spencerf6358c72004-12-19 18:00:56 +0000310 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000311 args.push_back(llc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000312 args.push_back("-f");
313 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000314 args.push_back(OutputFilename.c_str());
315 args.push_back(InputFilename.c_str());
Chris Lattnered5fa582005-02-13 23:02:34 +0000316 args.push_back(0);
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000317 if (Verbose) dumpArgs(&args[0]);
Reid Spencerf6358c72004-12-19 18:00:56 +0000318 return sys::Program::ExecuteAndWait(llc, &args[0]);
John Criswelldc0de4f2003-09-18 16:22:26 +0000319}
320
Chris Lattner69e8d282004-04-06 16:43:13 +0000321/// GenerateAssembly - generates a native assembly language source file from the
322/// specified bytecode file.
Chris Lattner27a9b272004-04-06 16:54:04 +0000323int llvm::GenerateCFile(const std::string &OutputFile,
324 const std::string &InputFile,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000325 const sys::Path &llc,
326 bool Verbose) {
Chris Lattner69e8d282004-04-06 16:43:13 +0000327 // Run LLC to convert the bytecode file into C.
Reid Spencerf6358c72004-12-19 18:00:56 +0000328 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000329 args.push_back(llc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000330 args.push_back("-march=c");
331 args.push_back("-f");
332 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000333 args.push_back(OutputFile.c_str());
334 args.push_back(InputFile.c_str());
Chris Lattnered5fa582005-02-13 23:02:34 +0000335 args.push_back(0);
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000336 if (Verbose) dumpArgs(&args[0]);
Reid Spencerf6358c72004-12-19 18:00:56 +0000337 return sys::Program::ExecuteAndWait(llc, &args[0]);
Chris Lattner69e8d282004-04-06 16:43:13 +0000338}
339
Misha Brukman1c534052003-09-30 17:42:57 +0000340/// GenerateNative - generates a native assembly language source file from the
341/// specified assembly source file.
342///
343/// Inputs:
344/// InputFilename - The name of the output bytecode file.
345/// OutputFilename - The name of the file to generate.
346/// Libraries - The list of libraries with which to link.
Misha Brukman1c534052003-09-30 17:42:57 +0000347/// gcc - The pathname to use for GGC.
348/// envp - A copy of the process's current environment.
349///
350/// Outputs:
351/// None.
352///
353/// Returns non-zero value on error.
354///
Chris Lattner27a9b272004-04-06 16:54:04 +0000355int llvm::GenerateNative(const std::string &OutputFilename,
356 const std::string &InputFilename,
Reid Spencer837149c2005-02-28 08:45:35 +0000357 const std::vector<std::string> &LibPaths,
Chris Lattner27a9b272004-04-06 16:54:04 +0000358 const std::vector<std::string> &Libraries,
Reid Spencer837149c2005-02-28 08:45:35 +0000359 const sys::Path &gcc, char ** const envp,
360 bool Shared,
361 const std::string &RPath,
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000362 const std::string &SOName,
363 bool Verbose) {
John Criswelldc0de4f2003-09-18 16:22:26 +0000364 // Remove these environment variables from the environment of the
365 // programs that we will execute. It appears that GCC sets these
366 // environment variables so that the programs it uses can configure
367 // themselves identically.
368 //
Misha Brukmanbb5a4d02003-09-30 17:33:12 +0000369 // However, when we invoke GCC below, we want it to use its normal
370 // configuration. Hence, we must sanitize its environment.
371 char ** clean_env = CopyEnv(envp);
John Criswelldc0de4f2003-09-18 16:22:26 +0000372 if (clean_env == NULL)
John Criswelldc0de4f2003-09-18 16:22:26 +0000373 return 1;
Misha Brukmanbb5a4d02003-09-30 17:33:12 +0000374 RemoveEnv("LIBRARY_PATH", clean_env);
375 RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
376 RemoveEnv("GCC_EXEC_PREFIX", clean_env);
377 RemoveEnv("COMPILER_PATH", clean_env);
378 RemoveEnv("COLLECT_GCC", clean_env);
John Criswelldc0de4f2003-09-18 16:22:26 +0000379
John Criswelldc0de4f2003-09-18 16:22:26 +0000380
John Criswelldc0de4f2003-09-18 16:22:26 +0000381 // Run GCC to assemble and link the program into native code.
382 //
383 // Note:
384 // We can't just assemble and link the file with the system assembler
385 // and linker because we don't know where to put the _start symbol.
386 // GCC mysteriously knows how to do it.
Reid Spencerf6358c72004-12-19 18:00:56 +0000387 std::vector<const char*> args;
Chris Lattnerbf9add42005-04-10 20:59:38 +0000388 args.push_back(gcc.c_str());
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000389 args.push_back("-fno-strict-aliasing");
390 args.push_back("-O3");
391 args.push_back("-o");
Reid Spencerf6358c72004-12-19 18:00:56 +0000392 args.push_back(OutputFilename.c_str());
393 args.push_back(InputFilename.c_str());
Misha Brukman704448f2005-04-20 04:08:35 +0000394
Reid Spencer837149c2005-02-28 08:45:35 +0000395 if (Shared) args.push_back("-shared");
396 if (!RPath.empty()) {
397 std::string rp = "-Wl,-rpath," + RPath;
398 args.push_back(rp.c_str());
399 }
400 if (!SOName.empty()) {
401 std::string so = "-Wl,-soname," + SOName;
402 args.push_back(so.c_str());
403 }
Misha Brukman704448f2005-04-20 04:08:35 +0000404
Reid Spencer837149c2005-02-28 08:45:35 +0000405 // Add in the libpaths to find the libraries.
406 //
407 // Note:
408 // When gccld is called from the llvm-gxx frontends, the -L paths for
Misha Brukman3da94ae2005-04-22 00:00:37 +0000409 // the LLVM cfrontend install paths are appended. We don't want the
Reid Spencer837149c2005-02-28 08:45:35 +0000410 // native linker to use these -L paths as they contain bytecode files.
411 // Further, we don't want any -L paths that contain bytecode shared
412 // libraries or true bytecode archive files. We omit them in all such
413 // cases.
414 for (unsigned index = 0; index < LibPaths.size(); index++) {
415 if (!isBytecodeLPath( LibPaths[index]) ) {
416 args.push_back("-L");
417 args.push_back(LibPaths[index].c_str());
418 }
419 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000420
John Criswell71478b72003-09-19 20:24:23 +0000421 // Add in the libraries to link.
Reid Spencer6da1e0d2004-12-14 04:20:08 +0000422 for (unsigned index = 0; index < Libraries.size(); index++) {
Reid Spencerf6358c72004-12-19 18:00:56 +0000423 if (Libraries[index] != "crtend") {
424 args.push_back("-l");
425 args.push_back(Libraries[index].c_str());
426 }
John Criswell71478b72003-09-19 20:24:23 +0000427 }
Chris Lattnered5fa582005-02-13 23:02:34 +0000428 args.push_back(0);
John Criswell71478b72003-09-19 20:24:23 +0000429
John Criswell71478b72003-09-19 20:24:23 +0000430 // Run the compiler to assembly and link together the program.
Misha Brukmanb0bafc52005-04-20 03:22:18 +0000431 if (Verbose) dumpArgs(&args[0]);
Reid Spencerf6358c72004-12-19 18:00:56 +0000432 return sys::Program::ExecuteAndWait(gcc, &args[0], (const char**)clean_env);
John Criswelldc0de4f2003-09-18 16:22:26 +0000433}
Chris Lattner0ebee742004-06-02 00:22:24 +0000434