blob: d25ce6c306f1a0ba5339e0e52614233e32564e92 [file] [log] [blame]
Chris Lattner7915a1e2003-10-14 21:34:11 +00001//===-- ToolRunner.cpp ----------------------------------------------------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +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 Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner7915a1e2003-10-14 21:34:11 +00009//
10// This file implements the interfaces described in the ToolRunner.h file.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner0b1fe842003-10-19 02:27:40 +000014#define DEBUG_TYPE "toolrunner"
Chris Lattnerf1b20d82006-06-06 22:30:59 +000015#include "ToolRunner.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000016#include "llvm/Config/config.h" // for HAVE_LINK_R
Chris Lattner45495c52005-02-13 23:13:47 +000017#include "llvm/System/Program.h"
Evan Cheng34e400e2007-05-03 18:36:15 +000018#include "llvm/Support/CommandLine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Support/Debug.h"
20#include "llvm/Support/FileUtilities.h"
Chris Lattner7915a1e2003-10-14 21:34:11 +000021#include <fstream>
Chris Lattner89bf9ea2004-02-18 20:38:00 +000022#include <sstream>
Chris Lattner86a54842006-01-22 22:53:01 +000023#include <iostream>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000024using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000025
Evan Cheng34e400e2007-05-03 18:36:15 +000026namespace {
27 cl::opt<std::string>
28 RSHHost("rsh-host",
29 cl::desc("Remote execution (rsh) host"));
30
31 cl::opt<std::string>
32 RSHUser("rsh-user",
33 cl::desc("Remote execution (rsh) user id"));
34}
35
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +000036ToolExecutionError::~ToolExecutionError() throw() { }
37
Chris Lattner45495c52005-02-13 23:13:47 +000038/// RunProgramWithTimeout - This function provides an alternate interface to the
39/// sys::Program::ExecuteAndWait interface.
40/// @see sys:Program::ExecuteAndWait
41static int RunProgramWithTimeout(const sys::Path &ProgramPath,
42 const char **Args,
43 const sys::Path &StdInFile,
44 const sys::Path &StdOutFile,
45 const sys::Path &StdErrFile,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +000046 unsigned NumSeconds = 0,
47 unsigned MemoryLimit = 0) {
Chris Lattner45495c52005-02-13 23:13:47 +000048 const sys::Path* redirects[3];
49 redirects[0] = &StdInFile;
50 redirects[1] = &StdOutFile;
51 redirects[2] = &StdErrFile;
Chris Lattnerc600f3c2006-09-15 21:29:15 +000052
Chris Lattnerd4223502006-09-15 23:01:10 +000053 if (0) {
54 std::cerr << "RUN:";
55 for (unsigned i = 0; Args[i]; ++i)
56 std::cerr << " " << Args[i];
57 std::cerr << "\n";
58 }
Misha Brukmanf976c852005-04-21 22:55:34 +000059
60 return
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +000061 sys::Program::ExecuteAndWait(ProgramPath, Args, 0, redirects,
62 NumSeconds, MemoryLimit);
Chris Lattner45495c52005-02-13 23:13:47 +000063}
64
65
66
Reid Spencerb31baa82004-12-19 18:00:21 +000067static void ProcessFailure(sys::Path ProgPath, const char** Args) {
Chris Lattner89bf9ea2004-02-18 20:38:00 +000068 std::ostringstream OS;
Chris Lattnera3de1172004-02-18 20:58:00 +000069 OS << "\nError running tool:\n ";
Chris Lattner89bf9ea2004-02-18 20:38:00 +000070 for (const char **Arg = Args; *Arg; ++Arg)
71 OS << " " << *Arg;
72 OS << "\n";
73
74 // Rerun the compiler, capturing any error messages to print them.
Reid Spencercda985e2004-12-15 01:51:56 +000075 sys::Path ErrorFilename("error_messages");
Reid Spencer51c5a282006-08-23 20:34:57 +000076 std::string ErrMsg;
77 if (ErrorFilename.makeUnique(true, &ErrMsg)) {
78 std::cerr << "Error making unique filename: " << ErrMsg << "\n";
79 exit(1);
80 }
Reid Spencerb31baa82004-12-19 18:00:21 +000081 RunProgramWithTimeout(ProgPath, Args, sys::Path(""), ErrorFilename,
Reid Spencer8ea5ecb2006-08-21 06:04:45 +000082 ErrorFilename); // FIXME: check return code ?
Chris Lattner89bf9ea2004-02-18 20:38:00 +000083
84 // Print out the error messages generated by GCC if possible...
85 std::ifstream ErrorFile(ErrorFilename.c_str());
86 if (ErrorFile) {
87 std::copy(std::istreambuf_iterator<char>(ErrorFile),
88 std::istreambuf_iterator<char>(),
89 std::ostreambuf_iterator<char>(OS));
90 ErrorFile.close();
91 }
92
Reid Spencera229c5c2005-07-08 03:08:58 +000093 ErrorFilename.eraseFromDisk();
Chris Lattner89bf9ea2004-02-18 20:38:00 +000094 throw ToolExecutionError(OS.str());
95}
96
Misha Brukman9558c6a2003-09-29 22:39:25 +000097//===---------------------------------------------------------------------===//
98// LLI Implementation of AbstractIntepreter interface
99//
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000100namespace {
101 class LLI : public AbstractInterpreter {
102 std::string LLIPath; // The path to the LLI executable
Brian Gaeked11577b2004-05-04 21:09:01 +0000103 std::vector<std::string> ToolArgs; // Args to pass to LLI
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000104 public:
Brian Gaeked11577b2004-05-04 21:09:01 +0000105 LLI(const std::string &Path, const std::vector<std::string> *Args)
106 : LLIPath(Path) {
107 ToolArgs.clear ();
Brian Gaeke48b008d2004-05-04 22:02:41 +0000108 if (Args) { ToolArgs = *Args; }
Brian Gaeked11577b2004-05-04 21:09:01 +0000109 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000110
Gabor Greif8ff70c22007-07-04 21:55:50 +0000111 virtual int ExecuteProgram(const std::string &Bitcode,
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000112 const std::vector<std::string> &Args,
113 const std::string &InputFile,
114 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000115 const std::vector<std::string> &GCCArgs,
Misha Brukmanf976c852005-04-21 22:55:34 +0000116 const std::vector<std::string> &SharedLibs =
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000117 std::vector<std::string>(),
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000118 unsigned Timeout = 0,
119 unsigned MemoryLimit = 0);
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000120 };
121}
Misha Brukman9558c6a2003-09-29 22:39:25 +0000122
Gabor Greif8ff70c22007-07-04 21:55:50 +0000123int LLI::ExecuteProgram(const std::string &Bitcode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000124 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000125 const std::string &InputFile,
126 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000127 const std::vector<std::string> &GCCArgs,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000128 const std::vector<std::string> &SharedLibs,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000129 unsigned Timeout,
130 unsigned MemoryLimit) {
Chris Lattner8c56be52004-02-18 20:21:57 +0000131 if (!SharedLibs.empty())
132 throw ToolExecutionError("LLI currently does not support "
133 "loading shared libraries.");
Misha Brukman9558c6a2003-09-29 22:39:25 +0000134
Reid Spencer51ab5c82006-06-06 00:00:42 +0000135 if (!GCCArgs.empty())
136 throw ToolExecutionError("LLI currently does not support "
137 "GCC Arguments.");
Misha Brukman9558c6a2003-09-29 22:39:25 +0000138 std::vector<const char*> LLIArgs;
139 LLIArgs.push_back(LLIPath.c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000140 LLIArgs.push_back("-force-interpreter=true");
Brian Gaeked11577b2004-05-04 21:09:01 +0000141
142 // Add any extra LLI args.
143 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
144 LLIArgs.push_back(ToolArgs[i].c_str());
145
Gabor Greif8ff70c22007-07-04 21:55:50 +0000146 LLIArgs.push_back(Bitcode.c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000147 // Add optional parameters to the running program from Argv
148 for (unsigned i=0, e = Args.size(); i != e; ++i)
149 LLIArgs.push_back(Args[i].c_str());
150 LLIArgs.push_back(0);
151
152 std::cout << "<lli>" << std::flush;
Chris Lattner0b1fe842003-10-19 02:27:40 +0000153 DEBUG(std::cerr << "\nAbout to run:\t";
Chris Lattner7b2ccff2003-10-19 02:14:58 +0000154 for (unsigned i=0, e = LLIArgs.size()-1; i != e; ++i)
Misha Brukman9558c6a2003-09-29 22:39:25 +0000155 std::cerr << " " << LLIArgs[i];
156 std::cerr << "\n";
157 );
Reid Spencerb31baa82004-12-19 18:00:21 +0000158 return RunProgramWithTimeout(sys::Path(LLIPath), &LLIArgs[0],
Misha Brukmanf976c852005-04-21 22:55:34 +0000159 sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile),
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000160 Timeout, MemoryLimit);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000161}
162
163// LLI create method - Try to find the LLI executable
Chris Lattner7915a1e2003-10-14 21:34:11 +0000164AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000165 std::string &Message,
166 const std::vector<std::string> *ToolArgs) {
Reid Spencer51ab8ec2004-12-13 23:43:44 +0000167 std::string LLIPath = FindExecutable("lli", ProgPath).toString();
Misha Brukman9558c6a2003-09-29 22:39:25 +0000168 if (!LLIPath.empty()) {
169 Message = "Found lli: " + LLIPath + "\n";
Brian Gaeked11577b2004-05-04 21:09:01 +0000170 return new LLI(LLIPath, ToolArgs);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000171 }
172
173 Message = "Cannot find `lli' in executable directory or PATH!\n";
174 return 0;
175}
176
Anton Korobeynikov9ef74252008-04-28 20:53:48 +0000177//===---------------------------------------------------------------------===//
178// Custom execution command implementation of AbstractIntepreter interface
179//
180// Allows using a custom command for executing the bitcode, thus allows,
181// for example, to invoke a cross compiler for code generation followed by
182// a simulator that executes the generated binary.
183namespace {
184 class CustomExecutor : public AbstractInterpreter {
185 std::string ExecutionCommand;
186 std::vector<std::string> ExecutorArgs;
187 public:
188 CustomExecutor(
189 const std::string &ExecutionCmd, std::vector<std::string> ExecArgs) :
190 ExecutionCommand(ExecutionCmd), ExecutorArgs(ExecArgs) {}
191
192 virtual int ExecuteProgram(const std::string &Bitcode,
193 const std::vector<std::string> &Args,
194 const std::string &InputFile,
195 const std::string &OutputFile,
196 const std::vector<std::string> &GCCArgs,
197 const std::vector<std::string> &SharedLibs =
198 std::vector<std::string>(),
199 unsigned Timeout = 0,
200 unsigned MemoryLimit = 0);
201 };
202}
203
204int CustomExecutor::ExecuteProgram(const std::string &Bitcode,
205 const std::vector<std::string> &Args,
206 const std::string &InputFile,
207 const std::string &OutputFile,
208 const std::vector<std::string> &GCCArgs,
209 const std::vector<std::string> &SharedLibs,
210 unsigned Timeout,
211 unsigned MemoryLimit) {
212
213 std::vector<const char*> ProgramArgs;
214 ProgramArgs.push_back(ExecutionCommand.c_str());
215
216 for (std::size_t i = 0; i < ExecutorArgs.size(); ++i)
217 ProgramArgs.push_back(ExecutorArgs.at(i).c_str());
218 ProgramArgs.push_back(Bitcode.c_str());
219 ProgramArgs.push_back(0);
220
221 // Add optional parameters to the running program from Argv
222 for (unsigned i=0, e = Args.size(); i != e; ++i)
223 ProgramArgs.push_back(Args[i].c_str());
224
225 return RunProgramWithTimeout(
226 sys::Path(ExecutionCommand),
227 &ProgramArgs[0], sys::Path(InputFile), sys::Path(OutputFile),
228 sys::Path(OutputFile), Timeout, MemoryLimit);
229}
230
231// Custom execution environment create method, takes the execution command
232// as arguments
233AbstractInterpreter *AbstractInterpreter::createCustom(
234 const std::string &ProgramPath,
235 std::string &Message,
236 const std::string &ExecCommandLine) {
237
238 std::string Command = "";
239 std::vector<std::string> Args;
240 std::string delimiters = " ";
241
242 // Tokenize the ExecCommandLine to the command and the args to allow
243 // defining a full command line as the command instead of just the
244 // executed program. We cannot just pass the whole string after the command
245 // as a single argument because then program sees only a single
246 // command line argument (with spaces in it: "foo bar" instead
247 // of "foo" and "bar").
248
249 // code borrowed from:
250 // http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html
251 std::string::size_type lastPos =
252 ExecCommandLine.find_first_not_of(delimiters, 0);
253 std::string::size_type pos =
254 ExecCommandLine.find_first_of(delimiters, lastPos);
255
256 while (std::string::npos != pos || std::string::npos != lastPos) {
257 std::string token = ExecCommandLine.substr(lastPos, pos - lastPos);
258 if (Command == "")
259 Command = token;
260 else
261 Args.push_back(token);
262 // Skip delimiters. Note the "not_of"
263 lastPos = ExecCommandLine.find_first_not_of(delimiters, pos);
264 // Find next "non-delimiter"
265 pos = ExecCommandLine.find_first_of(delimiters, lastPos);
266 }
267
268 std::string CmdPath = FindExecutable(Command, ProgramPath).toString();
269 if (CmdPath.empty()) {
270 Message =
271 std::string("Cannot find '") + Command +
272 "' in executable directory or PATH!\n";
273 return 0;
274 }
275
276 Message = "Found command in: " + CmdPath + "\n";
277
278 return new CustomExecutor(CmdPath, Args);
279}
280
Misha Brukman9558c6a2003-09-29 22:39:25 +0000281//===----------------------------------------------------------------------===//
282// LLC Implementation of AbstractIntepreter interface
283//
Gabor Greif8ff70c22007-07-04 21:55:50 +0000284GCC::FileType LLC::OutputCode(const std::string &Bitcode,
Chris Lattnerc600f3c2006-09-15 21:29:15 +0000285 sys::Path &OutputAsmFile) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000286 sys::Path uniqueFile(Bitcode+".llc.s");
Reid Spencer51c5a282006-08-23 20:34:57 +0000287 std::string ErrMsg;
288 if (uniqueFile.makeUnique(true, &ErrMsg)) {
289 std::cerr << "Error making unique filename: " << ErrMsg << "\n";
290 exit(1);
291 }
Reid Spencer9ac14182004-12-16 23:01:34 +0000292 OutputAsmFile = uniqueFile;
Brian Gaeked11577b2004-05-04 21:09:01 +0000293 std::vector<const char *> LLCArgs;
294 LLCArgs.push_back (LLCPath.c_str());
295
296 // Add any extra LLC args.
297 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
298 LLCArgs.push_back(ToolArgs[i].c_str());
299
300 LLCArgs.push_back ("-o");
301 LLCArgs.push_back (OutputAsmFile.c_str()); // Output to the Asm file
302 LLCArgs.push_back ("-f"); // Overwrite as necessary...
Gabor Greif8ff70c22007-07-04 21:55:50 +0000303 LLCArgs.push_back (Bitcode.c_str()); // This is the input bitcode
Brian Gaeked11577b2004-05-04 21:09:01 +0000304 LLCArgs.push_back (0);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000305
306 std::cout << "<llc>" << std::flush;
Brian Gaeked11577b2004-05-04 21:09:01 +0000307 DEBUG(std::cerr << "\nAbout to run:\t";
308 for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
309 std::cerr << " " << LLCArgs[i];
310 std::cerr << "\n";
311 );
Misha Brukmanf976c852005-04-21 22:55:34 +0000312 if (RunProgramWithTimeout(sys::Path(LLCPath), &LLCArgs[0],
Reid Spencerb31baa82004-12-19 18:00:21 +0000313 sys::Path(), sys::Path(), sys::Path()))
314 ProcessFailure(sys::Path(LLCPath), &LLCArgs[0]);
Chris Lattnerc600f3c2006-09-15 21:29:15 +0000315
316 return GCC::AsmFile;
Misha Brukman9558c6a2003-09-29 22:39:25 +0000317}
318
Gabor Greif8ff70c22007-07-04 21:55:50 +0000319void LLC::compileProgram(const std::string &Bitcode) {
Reid Spencer9ac14182004-12-16 23:01:34 +0000320 sys::Path OutputAsmFile;
Gabor Greif8ff70c22007-07-04 21:55:50 +0000321 OutputCode(Bitcode, OutputAsmFile);
Reid Spencera229c5c2005-07-08 03:08:58 +0000322 OutputAsmFile.eraseFromDisk();
Chris Lattner9cbbee32004-02-18 23:24:41 +0000323}
324
Gabor Greif8ff70c22007-07-04 21:55:50 +0000325int LLC::ExecuteProgram(const std::string &Bitcode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000326 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000327 const std::string &InputFile,
328 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000329 const std::vector<std::string> &ArgsForGCC,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000330 const std::vector<std::string> &SharedLibs,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000331 unsigned Timeout,
332 unsigned MemoryLimit) {
Chris Lattnereeed9832003-10-14 21:52:52 +0000333
Reid Spencer9ac14182004-12-16 23:01:34 +0000334 sys::Path OutputAsmFile;
Gabor Greif8ff70c22007-07-04 21:55:50 +0000335 OutputCode(Bitcode, OutputAsmFile);
Chris Lattner8c56be52004-02-18 20:21:57 +0000336 FileRemover OutFileRemover(OutputAsmFile);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000337
Reid Spencer51ab5c82006-06-06 00:00:42 +0000338 std::vector<std::string> GCCArgs(ArgsForGCC);
339 GCCArgs.insert(GCCArgs.end(),SharedLibs.begin(),SharedLibs.end());
340
Misha Brukman9558c6a2003-09-29 22:39:25 +0000341 // Assuming LLC worked, compile the result with GCC and run it.
Reid Spencer9ac14182004-12-16 23:01:34 +0000342 return gcc->ExecuteProgram(OutputAsmFile.toString(), Args, GCC::AsmFile,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000343 InputFile, OutputFile, GCCArgs,
344 Timeout, MemoryLimit);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000345}
346
Chris Lattner7915a1e2003-10-14 21:34:11 +0000347/// createLLC - Try to find the LLC executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000348///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000349LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000350 std::string &Message,
351 const std::vector<std::string> *Args) {
Reid Spencer51ab8ec2004-12-13 23:43:44 +0000352 std::string LLCPath = FindExecutable("llc", ProgramPath).toString();
Misha Brukman9558c6a2003-09-29 22:39:25 +0000353 if (LLCPath.empty()) {
354 Message = "Cannot find `llc' in executable directory or PATH!\n";
355 return 0;
356 }
357
358 Message = "Found llc: " + LLCPath + "\n";
Chris Lattner7915a1e2003-10-14 21:34:11 +0000359 GCC *gcc = GCC::create(ProgramPath, Message);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000360 if (!gcc) {
361 std::cerr << Message << "\n";
362 exit(1);
363 }
Brian Gaeked11577b2004-05-04 21:09:01 +0000364 return new LLC(LLCPath, gcc, Args);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000365}
366
367//===---------------------------------------------------------------------===//
368// JIT Implementation of AbstractIntepreter interface
369//
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000370namespace {
371 class JIT : public AbstractInterpreter {
372 std::string LLIPath; // The path to the LLI executable
Brian Gaeked11577b2004-05-04 21:09:01 +0000373 std::vector<std::string> ToolArgs; // Args to pass to LLI
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000374 public:
Brian Gaeked11577b2004-05-04 21:09:01 +0000375 JIT(const std::string &Path, const std::vector<std::string> *Args)
376 : LLIPath(Path) {
377 ToolArgs.clear ();
Brian Gaeke48b008d2004-05-04 22:02:41 +0000378 if (Args) { ToolArgs = *Args; }
Brian Gaeked11577b2004-05-04 21:09:01 +0000379 }
Misha Brukmanf976c852005-04-21 22:55:34 +0000380
Gabor Greif8ff70c22007-07-04 21:55:50 +0000381 virtual int ExecuteProgram(const std::string &Bitcode,
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000382 const std::vector<std::string> &Args,
383 const std::string &InputFile,
384 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000385 const std::vector<std::string> &GCCArgs =
386 std::vector<std::string>(),
Misha Brukmanf976c852005-04-21 22:55:34 +0000387 const std::vector<std::string> &SharedLibs =
Reid Spencer51ab5c82006-06-06 00:00:42 +0000388 std::vector<std::string>(),
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000389 unsigned Timeout =0,
390 unsigned MemoryLimit =0);
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000391 };
392}
Misha Brukman9558c6a2003-09-29 22:39:25 +0000393
Gabor Greif8ff70c22007-07-04 21:55:50 +0000394int JIT::ExecuteProgram(const std::string &Bitcode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000395 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000396 const std::string &InputFile,
397 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000398 const std::vector<std::string> &GCCArgs,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000399 const std::vector<std::string> &SharedLibs,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000400 unsigned Timeout,
401 unsigned MemoryLimit) {
Reid Spencer51ab5c82006-06-06 00:00:42 +0000402 if (!GCCArgs.empty())
403 throw ToolExecutionError("JIT does not support GCC Arguments.");
Misha Brukman9558c6a2003-09-29 22:39:25 +0000404 // Construct a vector of parameters, incorporating those from the command-line
405 std::vector<const char*> JITArgs;
406 JITArgs.push_back(LLIPath.c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000407 JITArgs.push_back("-force-interpreter=false");
Chris Lattnereeed9832003-10-14 21:52:52 +0000408
Brian Gaeked11577b2004-05-04 21:09:01 +0000409 // Add any extra LLI args.
410 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
411 JITArgs.push_back(ToolArgs[i].c_str());
412
Chris Lattnereeed9832003-10-14 21:52:52 +0000413 for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000414 JITArgs.push_back("-load");
Chris Lattnereeed9832003-10-14 21:52:52 +0000415 JITArgs.push_back(SharedLibs[i].c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000416 }
Gabor Greif8ff70c22007-07-04 21:55:50 +0000417 JITArgs.push_back(Bitcode.c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000418 // Add optional parameters to the running program from Argv
419 for (unsigned i=0, e = Args.size(); i != e; ++i)
420 JITArgs.push_back(Args[i].c_str());
421 JITArgs.push_back(0);
422
423 std::cout << "<jit>" << std::flush;
Chris Lattner0b1fe842003-10-19 02:27:40 +0000424 DEBUG(std::cerr << "\nAbout to run:\t";
Chris Lattner7b2ccff2003-10-19 02:14:58 +0000425 for (unsigned i=0, e = JITArgs.size()-1; i != e; ++i)
Misha Brukman9558c6a2003-09-29 22:39:25 +0000426 std::cerr << " " << JITArgs[i];
427 std::cerr << "\n";
428 );
429 DEBUG(std::cerr << "\nSending output to " << OutputFile << "\n");
Reid Spencerb31baa82004-12-19 18:00:21 +0000430 return RunProgramWithTimeout(sys::Path(LLIPath), &JITArgs[0],
Misha Brukmanf976c852005-04-21 22:55:34 +0000431 sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile),
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000432 Timeout, MemoryLimit);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000433}
434
Chris Lattner7915a1e2003-10-14 21:34:11 +0000435/// createJIT - Try to find the LLI executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000436///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000437AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000438 std::string &Message, const std::vector<std::string> *Args) {
Reid Spencer51ab8ec2004-12-13 23:43:44 +0000439 std::string LLIPath = FindExecutable("lli", ProgPath).toString();
Misha Brukman9558c6a2003-09-29 22:39:25 +0000440 if (!LLIPath.empty()) {
441 Message = "Found lli: " + LLIPath + "\n";
Brian Gaeked11577b2004-05-04 21:09:01 +0000442 return new JIT(LLIPath, Args);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000443 }
444
445 Message = "Cannot find `lli' in executable directory or PATH!\n";
446 return 0;
447}
448
Gabor Greif8ff70c22007-07-04 21:55:50 +0000449GCC::FileType CBE::OutputCode(const std::string &Bitcode,
Chris Lattnerc600f3c2006-09-15 21:29:15 +0000450 sys::Path &OutputCFile) {
Gabor Greif8ff70c22007-07-04 21:55:50 +0000451 sys::Path uniqueFile(Bitcode+".cbe.c");
Reid Spencer51c5a282006-08-23 20:34:57 +0000452 std::string ErrMsg;
453 if (uniqueFile.makeUnique(true, &ErrMsg)) {
454 std::cerr << "Error making unique filename: " << ErrMsg << "\n";
455 exit(1);
456 }
Reid Spencer9ac14182004-12-16 23:01:34 +0000457 OutputCFile = uniqueFile;
Brian Gaeked11577b2004-05-04 21:09:01 +0000458 std::vector<const char *> LLCArgs;
459 LLCArgs.push_back (LLCPath.c_str());
460
461 // Add any extra LLC args.
462 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
463 LLCArgs.push_back(ToolArgs[i].c_str());
464
465 LLCArgs.push_back ("-o");
466 LLCArgs.push_back (OutputCFile.c_str()); // Output to the C file
467 LLCArgs.push_back ("-march=c"); // Output C language
468 LLCArgs.push_back ("-f"); // Overwrite as necessary...
Gabor Greif8ff70c22007-07-04 21:55:50 +0000469 LLCArgs.push_back (Bitcode.c_str()); // This is the input bitcode
Brian Gaeked11577b2004-05-04 21:09:01 +0000470 LLCArgs.push_back (0);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000471
472 std::cout << "<cbe>" << std::flush;
Brian Gaeked11577b2004-05-04 21:09:01 +0000473 DEBUG(std::cerr << "\nAbout to run:\t";
474 for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
475 std::cerr << " " << LLCArgs[i];
476 std::cerr << "\n";
477 );
Misha Brukmanf976c852005-04-21 22:55:34 +0000478 if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], sys::Path(), sys::Path(),
Reid Spencerb31baa82004-12-19 18:00:21 +0000479 sys::Path()))
Brian Gaeked11577b2004-05-04 21:09:01 +0000480 ProcessFailure(LLCPath, &LLCArgs[0]);
Chris Lattnerc600f3c2006-09-15 21:29:15 +0000481 return GCC::CFile;
Misha Brukman9558c6a2003-09-29 22:39:25 +0000482}
483
Gabor Greif8ff70c22007-07-04 21:55:50 +0000484void CBE::compileProgram(const std::string &Bitcode) {
Reid Spencer9ac14182004-12-16 23:01:34 +0000485 sys::Path OutputCFile;
Gabor Greif8ff70c22007-07-04 21:55:50 +0000486 OutputCode(Bitcode, OutputCFile);
Reid Spencera229c5c2005-07-08 03:08:58 +0000487 OutputCFile.eraseFromDisk();
Chris Lattner9cbbee32004-02-18 23:24:41 +0000488}
489
Gabor Greif8ff70c22007-07-04 21:55:50 +0000490int CBE::ExecuteProgram(const std::string &Bitcode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000491 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000492 const std::string &InputFile,
493 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000494 const std::vector<std::string> &ArgsForGCC,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000495 const std::vector<std::string> &SharedLibs,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000496 unsigned Timeout,
497 unsigned MemoryLimit) {
Reid Spencer9ac14182004-12-16 23:01:34 +0000498 sys::Path OutputCFile;
Gabor Greif8ff70c22007-07-04 21:55:50 +0000499 OutputCode(Bitcode, OutputCFile);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000500
Chris Lattner8c56be52004-02-18 20:21:57 +0000501 FileRemover CFileRemove(OutputCFile);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000502
Reid Spencer51ab5c82006-06-06 00:00:42 +0000503 std::vector<std::string> GCCArgs(ArgsForGCC);
504 GCCArgs.insert(GCCArgs.end(),SharedLibs.begin(),SharedLibs.end());
Misha Brukmanf976c852005-04-21 22:55:34 +0000505 return gcc->ExecuteProgram(OutputCFile.toString(), Args, GCC::CFile,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000506 InputFile, OutputFile, GCCArgs,
507 Timeout, MemoryLimit);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000508}
509
Chris Lattner9915cd92004-02-17 06:40:06 +0000510/// createCBE - Try to find the 'llc' executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000511///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000512CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000513 std::string &Message,
514 const std::vector<std::string> *Args) {
Reid Spencerb31baa82004-12-19 18:00:21 +0000515 sys::Path LLCPath = FindExecutable("llc", ProgramPath);
516 if (LLCPath.isEmpty()) {
Misha Brukmanf976c852005-04-21 22:55:34 +0000517 Message =
Chris Lattner9915cd92004-02-17 06:40:06 +0000518 "Cannot find `llc' in executable directory or PATH!\n";
Misha Brukman9558c6a2003-09-29 22:39:25 +0000519 return 0;
520 }
521
Reid Spencerb31baa82004-12-19 18:00:21 +0000522 Message = "Found llc: " + LLCPath.toString() + "\n";
Chris Lattner7915a1e2003-10-14 21:34:11 +0000523 GCC *gcc = GCC::create(ProgramPath, Message);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000524 if (!gcc) {
525 std::cerr << Message << "\n";
526 exit(1);
527 }
Brian Gaeked11577b2004-05-04 21:09:01 +0000528 return new CBE(LLCPath, gcc, Args);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000529}
530
531//===---------------------------------------------------------------------===//
532// GCC abstraction
533//
Misha Brukman9558c6a2003-09-29 22:39:25 +0000534int GCC::ExecuteProgram(const std::string &ProgramFile,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000535 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000536 FileType fileType,
537 const std::string &InputFile,
538 const std::string &OutputFile,
Reid Spencer51ab5c82006-06-06 00:00:42 +0000539 const std::vector<std::string> &ArgsForGCC,
Anton Korobeynikov9ba8a762007-02-16 19:11:07 +0000540 unsigned Timeout,
541 unsigned MemoryLimit) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000542 std::vector<const char*> GCCArgs;
543
544 GCCArgs.push_back(GCCPath.c_str());
Chris Lattnereeed9832003-10-14 21:52:52 +0000545
Chris Lattnereeed9832003-10-14 21:52:52 +0000546 // Specify -x explicitly in case the extension is wonky
Misha Brukman9558c6a2003-09-29 22:39:25 +0000547 GCCArgs.push_back("-x");
548 if (fileType == CFile) {
549 GCCArgs.push_back("c");
550 GCCArgs.push_back("-fno-strict-aliasing");
551 } else {
552 GCCArgs.push_back("assembler");
Chris Lattnerd00b2882005-08-29 13:14:24 +0000553#ifdef __APPLE__
554 GCCArgs.push_back("-force_cpusubtype_ALL");
555#endif
Misha Brukman9558c6a2003-09-29 22:39:25 +0000556 }
557 GCCArgs.push_back(ProgramFile.c_str()); // Specify the input filename...
Chris Lattner629e4872006-06-09 21:31:53 +0000558 GCCArgs.push_back("-x");
559 GCCArgs.push_back("none");
Misha Brukman9558c6a2003-09-29 22:39:25 +0000560 GCCArgs.push_back("-o");
Reid Spencercda985e2004-12-15 01:51:56 +0000561 sys::Path OutputBinary (ProgramFile+".gcc.exe");
Reid Spencer51c5a282006-08-23 20:34:57 +0000562 std::string ErrMsg;
563 if (OutputBinary.makeUnique(true, &ErrMsg)) {
564 std::cerr << "Error making unique filename: " << ErrMsg << "\n";
565 exit(1);
566 }
Misha Brukman9558c6a2003-09-29 22:39:25 +0000567 GCCArgs.push_back(OutputBinary.c_str()); // Output to the right file...
Reid Spencer51ab5c82006-06-06 00:00:42 +0000568
569 // Add any arguments intended for GCC. We locate them here because this is
570 // most likely -L and -l options that need to come before other libraries but
571 // after the source. Other options won't be sensitive to placement on the
572 // command line, so this should be safe.
573 for (unsigned i = 0, e = ArgsForGCC.size(); i != e; ++i)
574 GCCArgs.push_back(ArgsForGCC[i].c_str());
575
Misha Brukman9558c6a2003-09-29 22:39:25 +0000576 GCCArgs.push_back("-lm"); // Hard-code the math library...
577 GCCArgs.push_back("-O2"); // Optimize the program a bit...
Brian Gaekec8db76c2003-11-18 06:31:17 +0000578#if defined (HAVE_LINK_R)
Chris Lattner1f0f1622003-10-18 21:54:47 +0000579 GCCArgs.push_back("-Wl,-R."); // Search this dir for .so files
Brian Gaekec8db76c2003-11-18 06:31:17 +0000580#endif
Chris Lattnerfdcc71e2006-02-04 05:02:27 +0000581#ifdef __sparc__
582 GCCArgs.push_back("-mcpu=v9");
583#endif
Misha Brukman9558c6a2003-09-29 22:39:25 +0000584 GCCArgs.push_back(0); // NULL terminator
585
586 std::cout << "<gcc>" << std::flush;
Evan Cheng7f7fdcc2007-01-03 07:44:30 +0000587 DEBUG(std::cerr << "\nAbout to run:\t";
588 for (unsigned i=0, e = GCCArgs.size()-1; i != e; ++i)
589 std::cerr << " " << GCCArgs[i];
590 std::cerr << "\n";
591 );
Reid Spencerb31baa82004-12-19 18:00:21 +0000592 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], sys::Path(), sys::Path(),
593 sys::Path())) {
Chris Lattner89bf9ea2004-02-18 20:38:00 +0000594 ProcessFailure(GCCPath, &GCCArgs[0]);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000595 exit(1);
596 }
597
598 std::vector<const char*> ProgramArgs;
Chris Lattner45495c52005-02-13 23:13:47 +0000599
Evan Cheng34e400e2007-05-03 18:36:15 +0000600 if (RSHPath.isEmpty())
601 ProgramArgs.push_back(OutputBinary.c_str());
602 else {
603 ProgramArgs.push_back(RSHPath.c_str());
604 ProgramArgs.push_back(RSHHost.c_str());
605 ProgramArgs.push_back("-l");
606 ProgramArgs.push_back(RSHUser.c_str());
607
608 char* env_pwd = getenv("PWD");
609 std::string Exec = "cd ";
610 Exec += env_pwd;
611 Exec += "; ./";
612 Exec += OutputBinary.c_str();
613 ProgramArgs.push_back(Exec.c_str());
614 }
615
Misha Brukman9558c6a2003-09-29 22:39:25 +0000616 // Add optional parameters to the running program from Argv
617 for (unsigned i=0, e = Args.size(); i != e; ++i)
618 ProgramArgs.push_back(Args[i].c_str());
619 ProgramArgs.push_back(0); // NULL terminator
620
621 // Now that we have a binary, run it!
622 std::cout << "<program>" << std::flush;
Chris Lattner0b1fe842003-10-19 02:27:40 +0000623 DEBUG(std::cerr << "\nAbout to run:\t";
Chris Lattner7b2ccff2003-10-19 02:14:58 +0000624 for (unsigned i=0, e = ProgramArgs.size()-1; i != e; ++i)
Misha Brukman9558c6a2003-09-29 22:39:25 +0000625 std::cerr << " " << ProgramArgs[i];
626 std::cerr << "\n";
627 );
Chris Lattner8c56be52004-02-18 20:21:57 +0000628
Reid Spencer9ac14182004-12-16 23:01:34 +0000629 FileRemover OutputBinaryRemover(OutputBinary);
Evan Cheng34e400e2007-05-03 18:36:15 +0000630
631 if (RSHPath.isEmpty())
632 return RunProgramWithTimeout(OutputBinary, &ProgramArgs[0],
633 sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile),
634 Timeout, MemoryLimit);
635 else
636 return RunProgramWithTimeout(sys::Path(RSHPath), &ProgramArgs[0],
637 sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile),
638 Timeout, MemoryLimit);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000639}
640
Chris Lattner1798e4a2003-10-14 21:07:25 +0000641int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType,
Chris Lattner130e2a32006-06-27 20:35:36 +0000642 std::string &OutputFile,
643 const std::vector<std::string> &ArgsForGCC) {
Reid Spencercda985e2004-12-15 01:51:56 +0000644 sys::Path uniqueFilename(InputFile+LTDL_SHLIB_EXT);
Reid Spencer51c5a282006-08-23 20:34:57 +0000645 std::string ErrMsg;
646 if (uniqueFilename.makeUnique(true, &ErrMsg)) {
647 std::cerr << "Error making unique filename: " << ErrMsg << "\n";
648 exit(1);
649 }
Reid Spencercda985e2004-12-15 01:51:56 +0000650 OutputFile = uniqueFilename.toString();
651
Chris Lattner130e2a32006-06-27 20:35:36 +0000652 std::vector<const char*> GCCArgs;
653
654 GCCArgs.push_back(GCCPath.c_str());
655
656
Misha Brukman9558c6a2003-09-29 22:39:25 +0000657 // Compile the C/asm file into a shared object
Chris Lattner130e2a32006-06-27 20:35:36 +0000658 GCCArgs.push_back("-x");
659 GCCArgs.push_back(fileType == AsmFile ? "assembler" : "c");
660 GCCArgs.push_back("-fno-strict-aliasing");
661 GCCArgs.push_back(InputFile.c_str()); // Specify the input filename.
Lauro Ramos Venancio497391a2007-06-06 23:10:56 +0000662 GCCArgs.push_back("-x");
663 GCCArgs.push_back("none");
Misha Brukman9558c6a2003-09-29 22:39:25 +0000664#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
Chris Lattner130e2a32006-06-27 20:35:36 +0000665 GCCArgs.push_back("-G"); // Compile a shared library, `-G' for Sparc
Nate Begeman72b286b2005-07-08 00:23:26 +0000666#elif defined(__APPLE__)
Chris Lattner130e2a32006-06-27 20:35:36 +0000667 // link all source files into a single module in data segment, rather than
668 // generating blocks. dynamic_lookup requires that you set
669 // MACOSX_DEPLOYMENT_TARGET=10.3 in your env. FIXME: it would be better for
670 // bugpoint to just pass that in the environment of GCC.
671 GCCArgs.push_back("-single_module");
672 GCCArgs.push_back("-dynamiclib"); // `-dynamiclib' for MacOS X/PowerPC
673 GCCArgs.push_back("-undefined");
674 GCCArgs.push_back("dynamic_lookup");
Misha Brukmanb3998ec2004-07-16 19:45:45 +0000675#else
Chris Lattner130e2a32006-06-27 20:35:36 +0000676 GCCArgs.push_back("-shared"); // `-shared' for Linux/X86, maybe others
Misha Brukman9558c6a2003-09-29 22:39:25 +0000677#endif
Chris Lattner1c81f132005-03-09 03:31:02 +0000678
Torok Edwinaf4fc282008-04-06 12:42:29 +0000679#if defined(__ia64__) || defined(__alpha__) || defined(__amd64__)
Chris Lattner130e2a32006-06-27 20:35:36 +0000680 GCCArgs.push_back("-fPIC"); // Requires shared objs to contain PIC
Chris Lattner1c81f132005-03-09 03:31:02 +0000681#endif
Chris Lattnerfdcc71e2006-02-04 05:02:27 +0000682#ifdef __sparc__
Chris Lattner130e2a32006-06-27 20:35:36 +0000683 GCCArgs.push_back("-mcpu=v9");
Chris Lattnerfdcc71e2006-02-04 05:02:27 +0000684#endif
Chris Lattner130e2a32006-06-27 20:35:36 +0000685 GCCArgs.push_back("-o");
686 GCCArgs.push_back(OutputFile.c_str()); // Output to the right filename.
687 GCCArgs.push_back("-O2"); // Optimize the program a bit.
688
689
690
691 // Add any arguments intended for GCC. We locate them here because this is
692 // most likely -L and -l options that need to come before other libraries but
693 // after the source. Other options won't be sensitive to placement on the
694 // command line, so this should be safe.
695 for (unsigned i = 0, e = ArgsForGCC.size(); i != e; ++i)
696 GCCArgs.push_back(ArgsForGCC[i].c_str());
697 GCCArgs.push_back(0); // NULL terminator
698
699
Misha Brukmanf976c852005-04-21 22:55:34 +0000700
Misha Brukman9558c6a2003-09-29 22:39:25 +0000701 std::cout << "<gcc>" << std::flush;
Evan Cheng7f7fdcc2007-01-03 07:44:30 +0000702 DEBUG(std::cerr << "\nAbout to run:\t";
703 for (unsigned i=0, e = GCCArgs.size()-1; i != e; ++i)
704 std::cerr << " " << GCCArgs[i];
705 std::cerr << "\n";
706 );
Chris Lattner130e2a32006-06-27 20:35:36 +0000707 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], sys::Path(), sys::Path(),
Reid Spencerb31baa82004-12-19 18:00:21 +0000708 sys::Path())) {
Chris Lattner130e2a32006-06-27 20:35:36 +0000709 ProcessFailure(GCCPath, &GCCArgs[0]);
Chris Lattner1798e4a2003-10-14 21:07:25 +0000710 return 1;
Misha Brukman9558c6a2003-09-29 22:39:25 +0000711 }
712 return 0;
713}
714
Chris Lattner7915a1e2003-10-14 21:34:11 +0000715/// create - Try to find the `gcc' executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000716///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000717GCC *GCC::create(const std::string &ProgramPath, std::string &Message) {
Reid Spencerb31baa82004-12-19 18:00:21 +0000718 sys::Path GCCPath = FindExecutable("gcc", ProgramPath);
719 if (GCCPath.isEmpty()) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000720 Message = "Cannot find `gcc' in executable directory or PATH!\n";
721 return 0;
722 }
723
Evan Cheng34e400e2007-05-03 18:36:15 +0000724 sys::Path RSHPath;
725 if (!RSHHost.empty())
726 RSHPath = FindExecutable("rsh", ProgramPath);
727
Reid Spencerb31baa82004-12-19 18:00:21 +0000728 Message = "Found gcc: " + GCCPath.toString() + "\n";
Evan Cheng34e400e2007-05-03 18:36:15 +0000729 return new GCC(GCCPath, RSHPath);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000730}