blob: b694127e076630eaceabf1f576c03ab2c642013f [file] [log] [blame]
Chris Lattner7915a1e2003-10-14 21:34:11 +00001//===-- ToolRunner.cpp ----------------------------------------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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"
Misha Brukman68734502003-10-06 18:37:24 +000015#include "llvm/Support/ToolRunner.h"
Brian Gaekec8db76c2003-11-18 06:31:17 +000016#include "Config/config.h" // for HAVE_LINK_R
Misha Brukman9558c6a2003-09-29 22:39:25 +000017#include "Support/Debug.h"
18#include "Support/FileUtilities.h"
Chris Lattner7915a1e2003-10-14 21:34:11 +000019#include <fstream>
Chris Lattner89bf9ea2004-02-18 20:38:00 +000020#include <sstream>
Chris Lattner2cdd21c2003-12-14 21:35:53 +000021using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000022
Alkis Evlogimenos1d29a6d2004-02-19 07:39:26 +000023ToolExecutionError::~ToolExecutionError() throw() { }
24
Chris Lattner89bf9ea2004-02-18 20:38:00 +000025static void ProcessFailure(std::string ProgPath, const char** Args) {
26 std::ostringstream OS;
Chris Lattnera3de1172004-02-18 20:58:00 +000027 OS << "\nError running tool:\n ";
Chris Lattner89bf9ea2004-02-18 20:38:00 +000028 for (const char **Arg = Args; *Arg; ++Arg)
29 OS << " " << *Arg;
30 OS << "\n";
31
32 // Rerun the compiler, capturing any error messages to print them.
33 std::string ErrorFilename = getUniqueFilename("error_messages");
34 RunProgramWithTimeout(ProgPath, Args, "/dev/null", ErrorFilename.c_str(),
35 ErrorFilename.c_str());
36
37 // Print out the error messages generated by GCC if possible...
38 std::ifstream ErrorFile(ErrorFilename.c_str());
39 if (ErrorFile) {
40 std::copy(std::istreambuf_iterator<char>(ErrorFile),
41 std::istreambuf_iterator<char>(),
42 std::ostreambuf_iterator<char>(OS));
43 ErrorFile.close();
44 }
45
46 removeFile(ErrorFilename);
47 throw ToolExecutionError(OS.str());
48}
49
Misha Brukman9558c6a2003-09-29 22:39:25 +000050//===---------------------------------------------------------------------===//
51// LLI Implementation of AbstractIntepreter interface
52//
Chris Lattner2cdd21c2003-12-14 21:35:53 +000053namespace {
54 class LLI : public AbstractInterpreter {
55 std::string LLIPath; // The path to the LLI executable
Brian Gaeked11577b2004-05-04 21:09:01 +000056 std::vector<std::string> ToolArgs; // Args to pass to LLI
Chris Lattner2cdd21c2003-12-14 21:35:53 +000057 public:
Brian Gaeked11577b2004-05-04 21:09:01 +000058 LLI(const std::string &Path, const std::vector<std::string> *Args)
59 : LLIPath(Path) {
60 ToolArgs.clear ();
Brian Gaeke48b008d2004-05-04 22:02:41 +000061 if (Args) { ToolArgs = *Args; }
Brian Gaeked11577b2004-05-04 21:09:01 +000062 }
Chris Lattner2cdd21c2003-12-14 21:35:53 +000063
64 virtual int ExecuteProgram(const std::string &Bytecode,
65 const std::vector<std::string> &Args,
66 const std::string &InputFile,
67 const std::string &OutputFile,
68 const std::vector<std::string> &SharedLibs =
Chris Lattnere96b2ed2004-07-24 07:49:11 +000069 std::vector<std::string>(),
70 unsigned Timeout = 0);
Chris Lattner2cdd21c2003-12-14 21:35:53 +000071 };
72}
Misha Brukman9558c6a2003-09-29 22:39:25 +000073
74int LLI::ExecuteProgram(const std::string &Bytecode,
Chris Lattner7915a1e2003-10-14 21:34:11 +000075 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +000076 const std::string &InputFile,
77 const std::string &OutputFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +000078 const std::vector<std::string> &SharedLibs,
79 unsigned Timeout) {
Chris Lattner8c56be52004-02-18 20:21:57 +000080 if (!SharedLibs.empty())
81 throw ToolExecutionError("LLI currently does not support "
82 "loading shared libraries.");
Misha Brukman9558c6a2003-09-29 22:39:25 +000083
84 std::vector<const char*> LLIArgs;
85 LLIArgs.push_back(LLIPath.c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +000086 LLIArgs.push_back("-force-interpreter=true");
Brian Gaeked11577b2004-05-04 21:09:01 +000087
88 // Add any extra LLI args.
89 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
90 LLIArgs.push_back(ToolArgs[i].c_str());
91
Misha Brukman9558c6a2003-09-29 22:39:25 +000092 LLIArgs.push_back(Bytecode.c_str());
93 // Add optional parameters to the running program from Argv
94 for (unsigned i=0, e = Args.size(); i != e; ++i)
95 LLIArgs.push_back(Args[i].c_str());
96 LLIArgs.push_back(0);
97
98 std::cout << "<lli>" << std::flush;
Chris Lattner0b1fe842003-10-19 02:27:40 +000099 DEBUG(std::cerr << "\nAbout to run:\t";
Chris Lattner7b2ccff2003-10-19 02:14:58 +0000100 for (unsigned i=0, e = LLIArgs.size()-1; i != e; ++i)
Misha Brukman9558c6a2003-09-29 22:39:25 +0000101 std::cerr << " " << LLIArgs[i];
102 std::cerr << "\n";
103 );
104 return RunProgramWithTimeout(LLIPath, &LLIArgs[0],
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000105 InputFile, OutputFile, OutputFile, Timeout);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000106}
107
108// LLI create method - Try to find the LLI executable
Chris Lattner7915a1e2003-10-14 21:34:11 +0000109AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000110 std::string &Message,
111 const std::vector<std::string> *ToolArgs) {
Chris Lattner7915a1e2003-10-14 21:34:11 +0000112 std::string LLIPath = FindExecutable("lli", ProgPath);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000113 if (!LLIPath.empty()) {
114 Message = "Found lli: " + LLIPath + "\n";
Brian Gaeked11577b2004-05-04 21:09:01 +0000115 return new LLI(LLIPath, ToolArgs);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000116 }
117
118 Message = "Cannot find `lli' in executable directory or PATH!\n";
119 return 0;
120}
121
122//===----------------------------------------------------------------------===//
123// LLC Implementation of AbstractIntepreter interface
124//
Chris Lattner8c56be52004-02-18 20:21:57 +0000125void LLC::OutputAsm(const std::string &Bytecode, std::string &OutputAsmFile) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000126 OutputAsmFile = getUniqueFilename(Bytecode+".llc.s");
Brian Gaeked11577b2004-05-04 21:09:01 +0000127 std::vector<const char *> LLCArgs;
128 LLCArgs.push_back (LLCPath.c_str());
129
130 // Add any extra LLC args.
131 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
132 LLCArgs.push_back(ToolArgs[i].c_str());
133
134 LLCArgs.push_back ("-o");
135 LLCArgs.push_back (OutputAsmFile.c_str()); // Output to the Asm file
136 LLCArgs.push_back ("-f"); // Overwrite as necessary...
137 LLCArgs.push_back (Bytecode.c_str()); // This is the input bytecode
138 LLCArgs.push_back (0);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000139
140 std::cout << "<llc>" << std::flush;
Brian Gaeked11577b2004-05-04 21:09:01 +0000141 DEBUG(std::cerr << "\nAbout to run:\t";
142 for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
143 std::cerr << " " << LLCArgs[i];
144 std::cerr << "\n";
145 );
146 if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], "/dev/null", "/dev/null",
Chris Lattner8c56be52004-02-18 20:21:57 +0000147 "/dev/null"))
Brian Gaeked11577b2004-05-04 21:09:01 +0000148 ProcessFailure(LLCPath, &LLCArgs[0]);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000149}
150
Chris Lattner9cbbee32004-02-18 23:24:41 +0000151void LLC::compileProgram(const std::string &Bytecode) {
152 std::string OutputAsmFile;
153 OutputAsm(Bytecode, OutputAsmFile);
154 removeFile(OutputAsmFile);
155}
156
Misha Brukman9558c6a2003-09-29 22:39:25 +0000157int LLC::ExecuteProgram(const std::string &Bytecode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000158 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000159 const std::string &InputFile,
160 const std::string &OutputFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000161 const std::vector<std::string> &SharedLibs,
162 unsigned Timeout) {
Chris Lattnereeed9832003-10-14 21:52:52 +0000163
Misha Brukman9558c6a2003-09-29 22:39:25 +0000164 std::string OutputAsmFile;
Chris Lattner8c56be52004-02-18 20:21:57 +0000165 OutputAsm(Bytecode, OutputAsmFile);
166 FileRemover OutFileRemover(OutputAsmFile);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000167
168 // Assuming LLC worked, compile the result with GCC and run it.
Chris Lattner8c56be52004-02-18 20:21:57 +0000169 return gcc->ExecuteProgram(OutputAsmFile, Args, GCC::AsmFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000170 InputFile, OutputFile, SharedLibs, Timeout);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000171}
172
Chris Lattner7915a1e2003-10-14 21:34:11 +0000173/// createLLC - Try to find the LLC executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000174///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000175LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000176 std::string &Message,
177 const std::vector<std::string> *Args) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000178 std::string LLCPath = FindExecutable("llc", ProgramPath);
179 if (LLCPath.empty()) {
180 Message = "Cannot find `llc' in executable directory or PATH!\n";
181 return 0;
182 }
183
184 Message = "Found llc: " + LLCPath + "\n";
Chris Lattner7915a1e2003-10-14 21:34:11 +0000185 GCC *gcc = GCC::create(ProgramPath, Message);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000186 if (!gcc) {
187 std::cerr << Message << "\n";
188 exit(1);
189 }
Brian Gaeked11577b2004-05-04 21:09:01 +0000190 return new LLC(LLCPath, gcc, Args);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000191}
192
193//===---------------------------------------------------------------------===//
194// JIT Implementation of AbstractIntepreter interface
195//
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000196namespace {
197 class JIT : public AbstractInterpreter {
198 std::string LLIPath; // The path to the LLI executable
Brian Gaeked11577b2004-05-04 21:09:01 +0000199 std::vector<std::string> ToolArgs; // Args to pass to LLI
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000200 public:
Brian Gaeked11577b2004-05-04 21:09:01 +0000201 JIT(const std::string &Path, const std::vector<std::string> *Args)
202 : LLIPath(Path) {
203 ToolArgs.clear ();
Brian Gaeke48b008d2004-05-04 22:02:41 +0000204 if (Args) { ToolArgs = *Args; }
Brian Gaeked11577b2004-05-04 21:09:01 +0000205 }
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000206
207 virtual int ExecuteProgram(const std::string &Bytecode,
208 const std::vector<std::string> &Args,
209 const std::string &InputFile,
210 const std::string &OutputFile,
211 const std::vector<std::string> &SharedLibs =
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000212 std::vector<std::string>(), unsigned Timeout =0);
Chris Lattner2cdd21c2003-12-14 21:35:53 +0000213 };
214}
Misha Brukman9558c6a2003-09-29 22:39:25 +0000215
216int JIT::ExecuteProgram(const std::string &Bytecode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000217 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000218 const std::string &InputFile,
219 const std::string &OutputFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000220 const std::vector<std::string> &SharedLibs,
221 unsigned Timeout) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000222 // Construct a vector of parameters, incorporating those from the command-line
223 std::vector<const char*> JITArgs;
224 JITArgs.push_back(LLIPath.c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000225 JITArgs.push_back("-force-interpreter=false");
Chris Lattnereeed9832003-10-14 21:52:52 +0000226
Brian Gaeked11577b2004-05-04 21:09:01 +0000227 // Add any extra LLI args.
228 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
229 JITArgs.push_back(ToolArgs[i].c_str());
230
Chris Lattnereeed9832003-10-14 21:52:52 +0000231 for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000232 JITArgs.push_back("-load");
Chris Lattnereeed9832003-10-14 21:52:52 +0000233 JITArgs.push_back(SharedLibs[i].c_str());
Misha Brukman9558c6a2003-09-29 22:39:25 +0000234 }
235 JITArgs.push_back(Bytecode.c_str());
236 // Add optional parameters to the running program from Argv
237 for (unsigned i=0, e = Args.size(); i != e; ++i)
238 JITArgs.push_back(Args[i].c_str());
239 JITArgs.push_back(0);
240
241 std::cout << "<jit>" << std::flush;
Chris Lattner0b1fe842003-10-19 02:27:40 +0000242 DEBUG(std::cerr << "\nAbout to run:\t";
Chris Lattner7b2ccff2003-10-19 02:14:58 +0000243 for (unsigned i=0, e = JITArgs.size()-1; i != e; ++i)
Misha Brukman9558c6a2003-09-29 22:39:25 +0000244 std::cerr << " " << JITArgs[i];
245 std::cerr << "\n";
246 );
247 DEBUG(std::cerr << "\nSending output to " << OutputFile << "\n");
248 return RunProgramWithTimeout(LLIPath, &JITArgs[0],
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000249 InputFile, OutputFile, OutputFile, Timeout);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000250}
251
Chris Lattner7915a1e2003-10-14 21:34:11 +0000252/// createJIT - Try to find the LLI executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000253///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000254AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000255 std::string &Message, const std::vector<std::string> *Args) {
Chris Lattner7915a1e2003-10-14 21:34:11 +0000256 std::string LLIPath = FindExecutable("lli", ProgPath);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000257 if (!LLIPath.empty()) {
258 Message = "Found lli: " + LLIPath + "\n";
Brian Gaeked11577b2004-05-04 21:09:01 +0000259 return new JIT(LLIPath, Args);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000260 }
261
262 Message = "Cannot find `lli' in executable directory or PATH!\n";
263 return 0;
264}
265
Chris Lattner8c56be52004-02-18 20:21:57 +0000266void CBE::OutputC(const std::string &Bytecode,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000267 std::string &OutputCFile) {
268 OutputCFile = getUniqueFilename(Bytecode+".cbe.c");
Brian Gaeked11577b2004-05-04 21:09:01 +0000269 std::vector<const char *> LLCArgs;
270 LLCArgs.push_back (LLCPath.c_str());
271
272 // Add any extra LLC args.
273 for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i)
274 LLCArgs.push_back(ToolArgs[i].c_str());
275
276 LLCArgs.push_back ("-o");
277 LLCArgs.push_back (OutputCFile.c_str()); // Output to the C file
278 LLCArgs.push_back ("-march=c"); // Output C language
279 LLCArgs.push_back ("-f"); // Overwrite as necessary...
280 LLCArgs.push_back (Bytecode.c_str()); // This is the input bytecode
281 LLCArgs.push_back (0);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000282
283 std::cout << "<cbe>" << std::flush;
Brian Gaeked11577b2004-05-04 21:09:01 +0000284 DEBUG(std::cerr << "\nAbout to run:\t";
285 for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i)
286 std::cerr << " " << LLCArgs[i];
287 std::cerr << "\n";
288 );
289 if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], "/dev/null", "/dev/null",
Chris Lattner8c56be52004-02-18 20:21:57 +0000290 "/dev/null"))
Brian Gaeked11577b2004-05-04 21:09:01 +0000291 ProcessFailure(LLCPath, &LLCArgs[0]);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000292}
293
Chris Lattner9cbbee32004-02-18 23:24:41 +0000294void CBE::compileProgram(const std::string &Bytecode) {
295 std::string OutputCFile;
296 OutputC(Bytecode, OutputCFile);
297 removeFile(OutputCFile);
298}
299
Misha Brukman9558c6a2003-09-29 22:39:25 +0000300int CBE::ExecuteProgram(const std::string &Bytecode,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000301 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000302 const std::string &InputFile,
303 const std::string &OutputFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000304 const std::vector<std::string> &SharedLibs,
305 unsigned Timeout) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000306 std::string OutputCFile;
Chris Lattner8c56be52004-02-18 20:21:57 +0000307 OutputC(Bytecode, OutputCFile);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000308
Chris Lattner8c56be52004-02-18 20:21:57 +0000309 FileRemover CFileRemove(OutputCFile);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000310
Chris Lattner8c56be52004-02-18 20:21:57 +0000311 return gcc->ExecuteProgram(OutputCFile, Args, GCC::CFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000312 InputFile, OutputFile, SharedLibs, Timeout);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000313}
314
Chris Lattner9915cd92004-02-17 06:40:06 +0000315/// createCBE - Try to find the 'llc' executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000316///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000317CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath,
Brian Gaeked11577b2004-05-04 21:09:01 +0000318 std::string &Message,
319 const std::vector<std::string> *Args) {
Chris Lattner9915cd92004-02-17 06:40:06 +0000320 std::string LLCPath = FindExecutable("llc", ProgramPath);
321 if (LLCPath.empty()) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000322 Message =
Chris Lattner9915cd92004-02-17 06:40:06 +0000323 "Cannot find `llc' in executable directory or PATH!\n";
Misha Brukman9558c6a2003-09-29 22:39:25 +0000324 return 0;
325 }
326
Chris Lattner9915cd92004-02-17 06:40:06 +0000327 Message = "Found llc: " + LLCPath + "\n";
Chris Lattner7915a1e2003-10-14 21:34:11 +0000328 GCC *gcc = GCC::create(ProgramPath, Message);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000329 if (!gcc) {
330 std::cerr << Message << "\n";
331 exit(1);
332 }
Brian Gaeked11577b2004-05-04 21:09:01 +0000333 return new CBE(LLCPath, gcc, Args);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000334}
335
336//===---------------------------------------------------------------------===//
337// GCC abstraction
338//
Misha Brukman9558c6a2003-09-29 22:39:25 +0000339int GCC::ExecuteProgram(const std::string &ProgramFile,
Chris Lattner7915a1e2003-10-14 21:34:11 +0000340 const std::vector<std::string> &Args,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000341 FileType fileType,
342 const std::string &InputFile,
343 const std::string &OutputFile,
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000344 const std::vector<std::string> &SharedLibs,
345 unsigned Timeout) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000346 std::vector<const char*> GCCArgs;
347
348 GCCArgs.push_back(GCCPath.c_str());
Chris Lattnereeed9832003-10-14 21:52:52 +0000349
350 // Specify the shared libraries to link in...
351 for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i)
352 GCCArgs.push_back(SharedLibs[i].c_str());
353
354 // Specify -x explicitly in case the extension is wonky
Misha Brukman9558c6a2003-09-29 22:39:25 +0000355 GCCArgs.push_back("-x");
356 if (fileType == CFile) {
357 GCCArgs.push_back("c");
358 GCCArgs.push_back("-fno-strict-aliasing");
359 } else {
360 GCCArgs.push_back("assembler");
361 }
362 GCCArgs.push_back(ProgramFile.c_str()); // Specify the input filename...
363 GCCArgs.push_back("-o");
Chris Lattnereeed9832003-10-14 21:52:52 +0000364 std::string OutputBinary = getUniqueFilename(ProgramFile+".gcc.exe");
Misha Brukman9558c6a2003-09-29 22:39:25 +0000365 GCCArgs.push_back(OutputBinary.c_str()); // Output to the right file...
366 GCCArgs.push_back("-lm"); // Hard-code the math library...
367 GCCArgs.push_back("-O2"); // Optimize the program a bit...
Brian Gaekec8db76c2003-11-18 06:31:17 +0000368#if defined (HAVE_LINK_R)
Chris Lattner1f0f1622003-10-18 21:54:47 +0000369 GCCArgs.push_back("-Wl,-R."); // Search this dir for .so files
Brian Gaekec8db76c2003-11-18 06:31:17 +0000370#endif
Misha Brukman9558c6a2003-09-29 22:39:25 +0000371 GCCArgs.push_back(0); // NULL terminator
372
373 std::cout << "<gcc>" << std::flush;
374 if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], "/dev/null", "/dev/null",
375 "/dev/null")) {
Chris Lattner89bf9ea2004-02-18 20:38:00 +0000376 ProcessFailure(GCCPath, &GCCArgs[0]);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000377 exit(1);
378 }
379
380 std::vector<const char*> ProgramArgs;
381 ProgramArgs.push_back(OutputBinary.c_str());
382 // Add optional parameters to the running program from Argv
383 for (unsigned i=0, e = Args.size(); i != e; ++i)
384 ProgramArgs.push_back(Args[i].c_str());
385 ProgramArgs.push_back(0); // NULL terminator
386
387 // Now that we have a binary, run it!
388 std::cout << "<program>" << std::flush;
Chris Lattner0b1fe842003-10-19 02:27:40 +0000389 DEBUG(std::cerr << "\nAbout to run:\t";
Chris Lattner7b2ccff2003-10-19 02:14:58 +0000390 for (unsigned i=0, e = ProgramArgs.size()-1; i != e; ++i)
Misha Brukman9558c6a2003-09-29 22:39:25 +0000391 std::cerr << " " << ProgramArgs[i];
392 std::cerr << "\n";
393 );
Chris Lattner8c56be52004-02-18 20:21:57 +0000394
395 FileRemover OutputBinaryRemover(OutputBinary);
396 return RunProgramWithTimeout(OutputBinary, &ProgramArgs[0],
Chris Lattnere96b2ed2004-07-24 07:49:11 +0000397 InputFile, OutputFile, OutputFile, Timeout);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000398}
399
Chris Lattner1798e4a2003-10-14 21:07:25 +0000400int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType,
Misha Brukman9558c6a2003-09-29 22:39:25 +0000401 std::string &OutputFile) {
John Criswell7f7d16b2004-01-26 20:59:41 +0000402 OutputFile = getUniqueFilename(InputFile+SHLIBEXT);
Misha Brukman9558c6a2003-09-29 22:39:25 +0000403 // Compile the C/asm file into a shared object
404 const char* GCCArgs[] = {
405 GCCPath.c_str(),
406 "-x", (fileType == AsmFile) ? "assembler" : "c",
407 "-fno-strict-aliasing",
408 InputFile.c_str(), // Specify the input filename...
409#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
410 "-G", // Compile a shared library, `-G' for Sparc
Misha Brukmanb3998ec2004-07-16 19:45:45 +0000411#elif (defined(__POWERPC__) || defined(__ppc__)) && defined(__APPLE__)
412 "-dynamiclib", // `-dynamiclib' for MacOS X/PowerPC
413 "-fno-common", // allow global vars w/o initializers to live
Chris Lattnere312e152004-07-19 06:03:51 +0000414 "-undefined", // in data segment, rather than generating
Chris Lattner5fbf29c2004-07-19 06:00:17 +0000415 "dynamic_lookup", // blocks. dynamic_lookup requires that you set
416 // MACOSX_DEPLOYMENT_TARGET=10.3 in your env.
Misha Brukmanb3998ec2004-07-16 19:45:45 +0000417#else
Misha Brukman9558c6a2003-09-29 22:39:25 +0000418 "-shared", // `-shared' for Linux/X86, maybe others
419#endif
420 "-o", OutputFile.c_str(), // Output to the right filename...
421 "-O2", // Optimize the program a bit...
422 0
423 };
424
425 std::cout << "<gcc>" << std::flush;
Chris Lattner1798e4a2003-10-14 21:07:25 +0000426 if (RunProgramWithTimeout(GCCPath, GCCArgs, "/dev/null", "/dev/null",
427 "/dev/null")) {
Chris Lattner89bf9ea2004-02-18 20:38:00 +0000428 ProcessFailure(GCCPath, GCCArgs);
Chris Lattner1798e4a2003-10-14 21:07:25 +0000429 return 1;
Misha Brukman9558c6a2003-09-29 22:39:25 +0000430 }
431 return 0;
432}
433
Chris Lattner7915a1e2003-10-14 21:34:11 +0000434/// create - Try to find the `gcc' executable
Misha Brukman9558c6a2003-09-29 22:39:25 +0000435///
Chris Lattner7915a1e2003-10-14 21:34:11 +0000436GCC *GCC::create(const std::string &ProgramPath, std::string &Message) {
Misha Brukman9558c6a2003-09-29 22:39:25 +0000437 std::string GCCPath = FindExecutable("gcc", ProgramPath);
438 if (GCCPath.empty()) {
439 Message = "Cannot find `gcc' in executable directory or PATH!\n";
440 return 0;
441 }
442
443 Message = "Found gcc: " + GCCPath + "\n";
444 return new GCC(GCCPath);
445}