blob: 2f75f6233810c21af22769756ef86f2a9d16e45c [file] [log] [blame]
Chris Lattner4a106452002-12-23 23:50:16 +00001//===- ExecutionDriver.cpp - Allow execution of LLVM program --------------===//
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//===----------------------------------------------------------------------===//
Chris Lattner4a106452002-12-23 23:50:16 +00009//
10// This file contains code used to execute the program utilizing one of the
11// various ways of running LLVM bytecode.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner4a106452002-12-23 23:50:16 +000015#include "BugDriver.h"
Chris Lattnerf1b20d82006-06-06 22:30:59 +000016#include "ToolRunner.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000017#include "llvm/Support/CommandLine.h"
18#include "llvm/Support/Debug.h"
19#include "llvm/Support/FileUtilities.h"
20#include "llvm/Support/SystemUtils.h"
Chris Lattner4a106452002-12-23 23:50:16 +000021#include <fstream>
Chris Lattnere31a9cc2006-01-22 22:53:40 +000022#include <iostream>
Reid Spencer51ab5c82006-06-06 00:00:42 +000023
Brian Gaeked0fde302003-11-11 22:41:34 +000024using namespace llvm;
25
Chris Lattner4a106452002-12-23 23:50:16 +000026namespace {
27 // OutputType - Allow the user to specify the way code should be run, to test
28 // for miscompilation.
29 //
30 enum OutputType {
Brian Gaekeb5ee5092003-10-21 17:41:35 +000031 AutoPick, RunLLI, RunJIT, RunLLC, RunCBE
Chris Lattner4a106452002-12-23 23:50:16 +000032 };
Misha Brukman41485562003-09-29 22:40:52 +000033
Chris Lattnera328c512005-01-23 03:45:26 +000034 cl::opt<double>
35 AbsTolerance("abs-tolerance", cl::desc("Absolute error tolerated"),
36 cl::init(0.0));
37 cl::opt<double>
38 RelTolerance("rel-tolerance", cl::desc("Relative error tolerated"),
39 cl::init(0.0));
40
Chris Lattner4a106452002-12-23 23:50:16 +000041 cl::opt<OutputType>
42 InterpreterSel(cl::desc("Specify how LLVM code should be executed:"),
Brian Gaekeb5ee5092003-10-21 17:41:35 +000043 cl::values(clEnumValN(AutoPick, "auto", "Use best guess"),
Misha Brukmanb687d822004-04-19 03:12:35 +000044 clEnumValN(RunLLI, "run-int",
45 "Execute with the interpreter"),
Misha Brukman50733362003-07-24 18:17:43 +000046 clEnumValN(RunJIT, "run-jit", "Execute with JIT"),
47 clEnumValN(RunLLC, "run-llc", "Compile with LLC"),
48 clEnumValN(RunCBE, "run-cbe", "Compile with CBE"),
Chris Lattner4d143ee2004-07-16 00:08:28 +000049 clEnumValEnd),
Brian Gaekeb5ee5092003-10-21 17:41:35 +000050 cl::init(AutoPick));
Chris Lattner3c053a02003-04-23 20:31:37 +000051
Brian Gaekec5cad212004-02-11 18:37:32 +000052 cl::opt<bool>
53 CheckProgramExitCode("check-exit-code",
Misha Brukmaneed80e22004-07-23 01:30:49 +000054 cl::desc("Assume nonzero exit code is failure (default on)"),
Brian Gaekec5cad212004-02-11 18:37:32 +000055 cl::init(true));
56
Chris Lattner3c053a02003-04-23 20:31:37 +000057 cl::opt<std::string>
58 InputFile("input", cl::init("/dev/null"),
59 cl::desc("Filename to pipe in as stdin (default: /dev/null)"));
Chris Lattner7dac6582003-10-14 22:24:31 +000060
61 cl::list<std::string>
62 AdditionalSOs("additional-so",
63 cl::desc("Additional shared objects to load "
64 "into executing programs"));
Chris Lattner7d91e492004-07-24 07:53:26 +000065
Reid Spencer51ab5c82006-06-06 00:00:42 +000066 cl::list<std::string>
67 AdditionalLinkerArgs("Xlinker",
68 cl::desc("Additional arguments to pass to the linker"));
Chris Lattner4a106452002-12-23 23:50:16 +000069}
70
Brian Gaeked0fde302003-11-11 22:41:34 +000071namespace llvm {
Chris Lattnerfa761832004-01-14 03:38:37 +000072 // Anything specified after the --args option are taken as arguments to the
73 // program being debugged.
74 cl::list<std::string>
75 InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
Chris Lattner60083e22004-05-06 22:05:35 +000076 cl::ZeroOrMore, cl::PositionalEatsArgs);
Brian Gaeke636df3d2004-05-04 21:09:16 +000077
78 cl::list<std::string>
79 ToolArgv("tool-args", cl::Positional, cl::desc("<tool arguments>..."),
Chris Lattner60083e22004-05-06 22:05:35 +000080 cl::ZeroOrMore, cl::PositionalEatsArgs);
Chris Lattnerfa761832004-01-14 03:38:37 +000081}
Misha Brukman9d679cb2003-07-30 20:15:44 +000082
Chris Lattner4a106452002-12-23 23:50:16 +000083//===----------------------------------------------------------------------===//
84// BugDriver method implementation
85//
86
87/// initializeExecutionEnvironment - This method is used to set up the
88/// environment for executing LLVM programs.
89///
90bool BugDriver::initializeExecutionEnvironment() {
91 std::cout << "Initializing execution environment: ";
92
Misha Brukman41485562003-09-29 22:40:52 +000093 // Create an instance of the AbstractInterpreter interface as specified on
94 // the command line
Chris Lattner7bb11542004-02-18 20:52:02 +000095 cbe = 0;
Chris Lattner4a106452002-12-23 23:50:16 +000096 std::string Message;
Brian Gaeke636df3d2004-05-04 21:09:16 +000097
Chris Lattnercc876a72003-05-03 03:19:41 +000098 switch (InterpreterSel) {
Brian Gaekeb5ee5092003-10-21 17:41:35 +000099 case AutoPick:
100 InterpreterSel = RunCBE;
Brian Gaeke636df3d2004-05-04 21:09:16 +0000101 Interpreter = cbe = AbstractInterpreter::createCBE(getToolName(), Message,
102 &ToolArgv);
Brian Gaekeb5ee5092003-10-21 17:41:35 +0000103 if (!Interpreter) {
104 InterpreterSel = RunJIT;
Brian Gaeke636df3d2004-05-04 21:09:16 +0000105 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
106 &ToolArgv);
Brian Gaekeb5ee5092003-10-21 17:41:35 +0000107 }
108 if (!Interpreter) {
109 InterpreterSel = RunLLC;
Brian Gaeke636df3d2004-05-04 21:09:16 +0000110 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
111 &ToolArgv);
Brian Gaekeb5ee5092003-10-21 17:41:35 +0000112 }
113 if (!Interpreter) {
114 InterpreterSel = RunLLI;
Brian Gaeke636df3d2004-05-04 21:09:16 +0000115 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
116 &ToolArgv);
Brian Gaekeb5ee5092003-10-21 17:41:35 +0000117 }
118 if (!Interpreter) {
119 InterpreterSel = AutoPick;
120 Message = "Sorry, I can't automatically select an interpreter!\n";
121 }
122 break;
Chris Lattner769f1fe2003-10-14 21:59:36 +0000123 case RunLLI:
Brian Gaeke636df3d2004-05-04 21:09:16 +0000124 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
125 &ToolArgv);
Chris Lattner769f1fe2003-10-14 21:59:36 +0000126 break;
127 case RunLLC:
Brian Gaeke636df3d2004-05-04 21:09:16 +0000128 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
129 &ToolArgv);
Chris Lattner769f1fe2003-10-14 21:59:36 +0000130 break;
131 case RunJIT:
Brian Gaeke636df3d2004-05-04 21:09:16 +0000132 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
133 &ToolArgv);
Chris Lattner769f1fe2003-10-14 21:59:36 +0000134 break;
135 case RunCBE:
Brian Gaeke636df3d2004-05-04 21:09:16 +0000136 Interpreter = cbe = AbstractInterpreter::createCBE(getToolName(), Message,
137 &ToolArgv);
Chris Lattner769f1fe2003-10-14 21:59:36 +0000138 break;
Chris Lattnercc876a72003-05-03 03:19:41 +0000139 default:
Misha Brukman41485562003-09-29 22:40:52 +0000140 Message = "Sorry, this back-end is not supported by bugpoint right now!\n";
Chris Lattnercc876a72003-05-03 03:19:41 +0000141 break;
Chris Lattner4a106452002-12-23 23:50:16 +0000142 }
Misha Brukman41485562003-09-29 22:40:52 +0000143 std::cerr << Message;
Chris Lattner4a106452002-12-23 23:50:16 +0000144
Misha Brukmana259c9b2003-07-24 21:59:10 +0000145 // Initialize auxiliary tools for debugging
Chris Lattner7bb11542004-02-18 20:52:02 +0000146 if (!cbe) {
Brian Gaeke636df3d2004-05-04 21:09:16 +0000147 cbe = AbstractInterpreter::createCBE(getToolName(), Message, &ToolArgv);
Chris Lattner7bb11542004-02-18 20:52:02 +0000148 if (!cbe) { std::cout << Message << "\nExiting.\n"; exit(1); }
149 }
Chris Lattner769f1fe2003-10-14 21:59:36 +0000150 gcc = GCC::create(getToolName(), Message);
Misha Brukmana259c9b2003-07-24 21:59:10 +0000151 if (!gcc) { std::cout << Message << "\nExiting.\n"; exit(1); }
152
Chris Lattner4a106452002-12-23 23:50:16 +0000153 // If there was an error creating the selected interpreter, quit with error.
154 return Interpreter == 0;
155}
156
Chris Lattnerea9212c2004-02-18 23:25:22 +0000157/// compileProgram - Try to compile the specified module, throwing an exception
158/// if an error occurs, or returning normally if not. This is used for code
159/// generation crash testing.
160///
161void BugDriver::compileProgram(Module *M) {
162 // Emit the program to a bytecode file...
Reid Spencer97182982004-12-15 01:53:08 +0000163 sys::Path BytecodeFile ("bugpoint-test-program.bc");
Reid Spencer51c5a282006-08-23 20:34:57 +0000164 std::string ErrMsg;
165 if (BytecodeFile.makeUnique(true,&ErrMsg)) {
166 std::cerr << ToolName << ": Error making unique filename: " << ErrMsg
167 << "\n";
168 exit(1);
169 }
Reid Spencer97182982004-12-15 01:53:08 +0000170 if (writeProgramToFile(BytecodeFile.toString(), M)) {
Chris Lattnerea9212c2004-02-18 23:25:22 +0000171 std::cerr << ToolName << ": Error emitting bytecode to file '"
172 << BytecodeFile << "'!\n";
173 exit(1);
174 }
175
176 // Remove the temporary bytecode file when we are done.
Reid Spencer5f767602004-12-16 23:04:20 +0000177 FileRemover BytecodeFileRemover(BytecodeFile);
Chris Lattnerea9212c2004-02-18 23:25:22 +0000178
179 // Actually compile the program!
Reid Spencer97182982004-12-15 01:53:08 +0000180 Interpreter->compileProgram(BytecodeFile.toString());
Chris Lattnerea9212c2004-02-18 23:25:22 +0000181}
182
Chris Lattner4a106452002-12-23 23:50:16 +0000183
184/// executeProgram - This method runs "Program", capturing the output of the
185/// program to a file, returning the filename of the file. A recommended
186/// filename may be optionally specified.
187///
188std::string BugDriver::executeProgram(std::string OutputFile,
Misha Brukman50733362003-07-24 18:17:43 +0000189 std::string BytecodeFile,
Chris Lattner769f1fe2003-10-14 21:59:36 +0000190 const std::string &SharedObj,
Brian Gaekec5cad212004-02-11 18:37:32 +0000191 AbstractInterpreter *AI,
192 bool *ProgramExitedNonzero) {
Chris Lattner769f1fe2003-10-14 21:59:36 +0000193 if (AI == 0) AI = Interpreter;
194 assert(AI && "Interpreter should have been created already!");
Chris Lattner4a106452002-12-23 23:50:16 +0000195 bool CreatedBytecode = false;
Reid Spencer51c5a282006-08-23 20:34:57 +0000196 std::string ErrMsg;
Chris Lattner4a106452002-12-23 23:50:16 +0000197 if (BytecodeFile.empty()) {
198 // Emit the program to a bytecode file...
Reid Spencer97182982004-12-15 01:53:08 +0000199 sys::Path uniqueFilename("bugpoint-test-program.bc");
Reid Spencer51c5a282006-08-23 20:34:57 +0000200 if (uniqueFilename.makeUnique(true, &ErrMsg)) {
201 std::cerr << ToolName << ": Error making unique filename: "
202 << ErrMsg << "!\n";
203 exit(1);
204 }
Reid Spencer97182982004-12-15 01:53:08 +0000205 BytecodeFile = uniqueFilename.toString();
Chris Lattner4a106452002-12-23 23:50:16 +0000206
207 if (writeProgramToFile(BytecodeFile, Program)) {
208 std::cerr << ToolName << ": Error emitting bytecode to file '"
Misha Brukman50733362003-07-24 18:17:43 +0000209 << BytecodeFile << "'!\n";
Chris Lattner4a106452002-12-23 23:50:16 +0000210 exit(1);
211 }
212 CreatedBytecode = true;
213 }
214
Chris Lattner97092722004-02-18 22:01:21 +0000215 // Remove the temporary bytecode file when we are done.
Brian Gaeke06c375b2004-12-22 22:33:33 +0000216 sys::Path BytecodePath (BytecodeFile);
217 FileRemover BytecodeFileRemover(BytecodePath, CreatedBytecode);
Chris Lattner97092722004-02-18 22:01:21 +0000218
Chris Lattner4a106452002-12-23 23:50:16 +0000219 if (OutputFile.empty()) OutputFile = "bugpoint-execution-output";
Misha Brukman50733362003-07-24 18:17:43 +0000220
Chris Lattner4a106452002-12-23 23:50:16 +0000221 // Check to see if this is a valid output filename...
Reid Spencer97182982004-12-15 01:53:08 +0000222 sys::Path uniqueFile(OutputFile);
Reid Spencer51c5a282006-08-23 20:34:57 +0000223 if (uniqueFile.makeUnique(true, &ErrMsg)) {
224 std::cerr << ToolName << ": Error making unique filename: "
225 << ErrMsg << "\n";
226 exit(1);
227 }
Reid Spencer97182982004-12-15 01:53:08 +0000228 OutputFile = uniqueFile.toString();
Chris Lattner4a106452002-12-23 23:50:16 +0000229
Chris Lattner769f1fe2003-10-14 21:59:36 +0000230 // Figure out which shared objects to run, if any.
Chris Lattner7dac6582003-10-14 22:24:31 +0000231 std::vector<std::string> SharedObjs(AdditionalSOs);
Chris Lattner769f1fe2003-10-14 21:59:36 +0000232 if (!SharedObj.empty())
233 SharedObjs.push_back(SharedObj);
234
Reid Spencer51ab5c82006-06-06 00:00:42 +0000235
236 // If this is an LLC or CBE run, then the GCC compiler might get run to
237 // compile the program. If so, we should pass the user's -Xlinker options
238 // as the GCCArgs.
239 int RetVal = 0;
240 if (InterpreterSel == RunLLC || InterpreterSel == RunCBE)
241 RetVal = AI->ExecuteProgram(BytecodeFile, InputArgv, InputFile,
242 OutputFile, AdditionalLinkerArgs, SharedObjs,
Chris Lattner9686ae72006-06-13 03:10:48 +0000243 Timeout);
Reid Spencer51ab5c82006-06-06 00:00:42 +0000244 else
245 RetVal = AI->ExecuteProgram(BytecodeFile, InputArgv, InputFile,
246 OutputFile, std::vector<std::string>(),
Chris Lattner9686ae72006-06-13 03:10:48 +0000247 SharedObjs, Timeout);
Chris Lattner7d91e492004-07-24 07:53:26 +0000248
249 if (RetVal == -1) {
250 std::cerr << "<timeout>";
251 static bool FirstTimeout = true;
252 if (FirstTimeout) {
253 std::cout << "\n"
254 "*** Program execution timed out! This mechanism is designed to handle\n"
255 " programs stuck in infinite loops gracefully. The -timeout option\n"
256 " can be used to change the timeout threshold or disable it completely\n"
257 " (with -timeout=0). This message is only displayed once.\n";
258 FirstTimeout = false;
259 }
260 }
Chris Lattner769f1fe2003-10-14 21:59:36 +0000261
Brian Gaekec5cad212004-02-11 18:37:32 +0000262 if (ProgramExitedNonzero != 0)
263 *ProgramExitedNonzero = (RetVal != 0);
Chris Lattner4a106452002-12-23 23:50:16 +0000264
Chris Lattner4a106452002-12-23 23:50:16 +0000265 // Return the filename we captured the output to.
266 return OutputFile;
267}
268
Brian Gaekec5cad212004-02-11 18:37:32 +0000269/// executeProgramWithCBE - Used to create reference output with the C
270/// backend, if reference output is not provided.
271///
272std::string BugDriver::executeProgramWithCBE(std::string OutputFile) {
273 bool ProgramExitedNonzero;
274 std::string outFN = executeProgram(OutputFile, "", "",
275 (AbstractInterpreter*)cbe,
276 &ProgramExitedNonzero);
277 if (ProgramExitedNonzero) {
278 std::cerr
279 << "Warning: While generating reference output, program exited with\n"
280 << "non-zero exit code. This will NOT be treated as a failure.\n";
281 CheckProgramExitCode = false;
282 }
283 return outFN;
284}
Misha Brukman50733362003-07-24 18:17:43 +0000285
Chris Lattnera0f5b152003-10-14 21:09:11 +0000286std::string BugDriver::compileSharedObject(const std::string &BytecodeFile) {
Misha Brukman50733362003-07-24 18:17:43 +0000287 assert(Interpreter && "Interpreter should have been created already!");
Reid Spencer5f767602004-12-16 23:04:20 +0000288 sys::Path OutputCFile;
Misha Brukman50733362003-07-24 18:17:43 +0000289
290 // Using CBE
Misha Brukman50733362003-07-24 18:17:43 +0000291 cbe->OutputC(BytecodeFile, OutputCFile);
292
293#if 0 /* This is an alternative, as yet unimplemented */
294 // Using LLC
Chris Lattnera0f5b152003-10-14 21:09:11 +0000295 std::string Message;
Misha Brukman41485562003-09-29 22:40:52 +0000296 LLC *llc = createLLCtool(Message);
Misha Brukman50733362003-07-24 18:17:43 +0000297 if (llc->OutputAsm(BytecodeFile, OutputFile)) {
298 std::cerr << "Could not generate asm code with `llc', exiting.\n";
299 exit(1);
300 }
301#endif
302
Chris Lattnera0f5b152003-10-14 21:09:11 +0000303 std::string SharedObjectFile;
Misha Brukman3da94ae2005-04-22 00:00:37 +0000304 if (gcc->MakeSharedObject(OutputCFile.toString(), GCC::CFile,
Chris Lattner130e2a32006-06-27 20:35:36 +0000305 SharedObjectFile, AdditionalLinkerArgs))
Chris Lattnera0f5b152003-10-14 21:09:11 +0000306 exit(1);
Misha Brukman50733362003-07-24 18:17:43 +0000307
308 // Remove the intermediate C file
Reid Spencera229c5c2005-07-08 03:08:58 +0000309 OutputCFile.eraseFromDisk();
Misha Brukman50733362003-07-24 18:17:43 +0000310
Chris Lattner6ebe44d2003-10-19 21:54:13 +0000311 return "./" + SharedObjectFile;
Misha Brukman50733362003-07-24 18:17:43 +0000312}
313
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000314/// createReferenceFile - calls compileProgram and then records the output
315/// into ReferenceOutputFile. Returns true if reference file created, false
316/// otherwise. Note: initializeExecutionEnvironment should be called BEFORE
317/// this function.
318///
319bool BugDriver::createReferenceFile(Module *M, const std::string &Filename){
320 try {
321 compileProgram(Program);
322 } catch (ToolExecutionError &TEE) {
323 return false;
324 }
325 try {
326 ReferenceOutputFile = executeProgramWithCBE(Filename);
327 std::cout << "Reference output is: " << ReferenceOutputFile << "\n\n";
328 } catch (ToolExecutionError &TEE) {
329 std::cerr << TEE.what();
330 if (Interpreter != cbe) {
331 std::cerr << "*** There is a bug running the C backend. Either debug"
332 << " it (use the -run-cbe bugpoint option), or fix the error"
333 << " some other way.\n";
334 }
335 return false;
336 }
337 return true;
338}
Misha Brukman50733362003-07-24 18:17:43 +0000339
Patrick Jenkins6a3f31c2006-08-15 16:40:49 +0000340/// diffProgram - This method executes the specified module and diffs the
341/// output against the file specified by ReferenceOutputFile. If the output
342/// is different, true is returned. If there is a problem with the code
343/// generator (e.g., llc crashes), this will throw an exception.
Chris Lattner4a106452002-12-23 23:50:16 +0000344///
Misha Brukman50733362003-07-24 18:17:43 +0000345bool BugDriver::diffProgram(const std::string &BytecodeFile,
346 const std::string &SharedObject,
Chris Lattner640f22e2003-04-24 17:02:17 +0000347 bool RemoveBytecode) {
Brian Gaekec5cad212004-02-11 18:37:32 +0000348 bool ProgramExitedNonzero;
349
Chris Lattner4a106452002-12-23 23:50:16 +0000350 // Execute the program, generating an output file...
Chris Lattner130e2a32006-06-27 20:35:36 +0000351 sys::Path Output(executeProgram("", BytecodeFile, SharedObject, 0,
Reid Spencer5f767602004-12-16 23:04:20 +0000352 &ProgramExitedNonzero));
Brian Gaekec5cad212004-02-11 18:37:32 +0000353
354 // If we're checking the program exit code, assume anything nonzero is bad.
Chris Lattner58d84ce2004-04-02 05:33:06 +0000355 if (CheckProgramExitCode && ProgramExitedNonzero) {
Reid Spencera229c5c2005-07-08 03:08:58 +0000356 Output.eraseFromDisk();
Misha Brukman3da94ae2005-04-22 00:00:37 +0000357 if (RemoveBytecode)
Reid Spencera229c5c2005-07-08 03:08:58 +0000358 sys::Path(BytecodeFile).eraseFromDisk();
Brian Gaekec5cad212004-02-11 18:37:32 +0000359 return true;
Chris Lattner58d84ce2004-04-02 05:33:06 +0000360 }
Chris Lattner4a106452002-12-23 23:50:16 +0000361
Chris Lattner65f62792003-08-01 20:29:45 +0000362 std::string Error;
Chris Lattner4a106452002-12-23 23:50:16 +0000363 bool FilesDifferent = false;
Chris Lattnera328c512005-01-23 03:45:26 +0000364 if (int Diff = DiffFilesWithTolerance(sys::Path(ReferenceOutputFile),
365 sys::Path(Output.toString()),
366 AbsTolerance, RelTolerance, &Error)) {
367 if (Diff == 2) {
Misha Brukmaneed80e22004-07-23 01:30:49 +0000368 std::cerr << "While diffing output: " << Error << '\n';
Chris Lattner65f62792003-08-01 20:29:45 +0000369 exit(1);
370 }
371 FilesDifferent = true;
372 }
Misha Brukman3da94ae2005-04-22 00:00:37 +0000373
Chris Lattner1a28a2b2003-10-18 21:02:51 +0000374 // Remove the generated output.
Reid Spencera229c5c2005-07-08 03:08:58 +0000375 Output.eraseFromDisk();
Chris Lattner4a106452002-12-23 23:50:16 +0000376
Chris Lattner1a28a2b2003-10-18 21:02:51 +0000377 // Remove the bytecode file if we are supposed to.
Jeff Cohen00b168892005-07-27 06:12:32 +0000378 if (RemoveBytecode)
Reid Spencera229c5c2005-07-08 03:08:58 +0000379 sys::Path(BytecodeFile).eraseFromDisk();
Chris Lattner4a106452002-12-23 23:50:16 +0000380 return FilesDifferent;
381}
Misha Brukman91eabc12003-07-28 19:16:14 +0000382
383bool BugDriver::isExecutingJIT() {
384 return InterpreterSel == RunJIT;
385}
Brian Gaeked0fde302003-11-11 22:41:34 +0000386