1 //===- ExecutionDriver.cpp - Allow execution of LLVM program --------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains code used to execute the program utilizing one of the
11 // various ways of running LLVM bitcode.
13 //===----------------------------------------------------------------------===//
15 #include "BugDriver.h"
16 #include "ToolRunner.h"
17 #include "llvm/Support/CommandLine.h"
18 #include "llvm/Support/Debug.h"
19 #include "llvm/Support/FileUtilities.h"
20 #include "llvm/Support/Program.h"
21 #include "llvm/Support/SystemUtils.h"
22 #include "llvm/Support/raw_ostream.h"
28 // OutputType - Allow the user to specify the way code should be run, to test
29 // for miscompilation.
42 cl::opt
<double> AbsTolerance("abs-tolerance",
43 cl::desc("Absolute error tolerated"),
45 cl::opt
<double> RelTolerance("rel-tolerance",
46 cl::desc("Relative error tolerated"),
49 cl::opt
<OutputType
> InterpreterSel(
50 cl::desc("Specify the \"test\" i.e. suspect back-end:"),
51 cl::values(clEnumValN(AutoPick
, "auto", "Use best guess"),
52 clEnumValN(RunLLI
, "run-int", "Execute with the interpreter"),
53 clEnumValN(RunJIT
, "run-jit", "Execute with JIT"),
54 clEnumValN(RunLLC
, "run-llc", "Compile with LLC"),
55 clEnumValN(RunLLCIA
, "run-llc-ia",
56 "Compile with LLC with integrated assembler"),
57 clEnumValN(LLC_Safe
, "llc-safe", "Use LLC for all"),
58 clEnumValN(CompileCustom
, "compile-custom",
59 "Use -compile-command to define a command to "
60 "compile the bitcode. Useful to avoid linking."),
61 clEnumValN(Custom
, "run-custom",
62 "Use -exec-command to define a command to execute "
63 "the bitcode. Useful for cross-compilation.")),
66 cl::opt
<OutputType
> SafeInterpreterSel(
67 cl::desc("Specify \"safe\" i.e. known-good backend:"),
68 cl::values(clEnumValN(AutoPick
, "safe-auto", "Use best guess"),
69 clEnumValN(RunLLC
, "safe-run-llc", "Compile with LLC"),
70 clEnumValN(Custom
, "safe-run-custom",
71 "Use -exec-command to define a command to execute "
72 "the bitcode. Useful for cross-compilation.")),
75 cl::opt
<std::string
> SafeInterpreterPath(
76 "safe-path", cl::desc("Specify the path to the \"safe\" backend program"),
79 cl::opt
<bool> AppendProgramExitCode(
81 cl::desc("Append the exit code to the output so it gets diff'd too"),
85 InputFile("input", cl::init("/dev/null"),
86 cl::desc("Filename to pipe in as stdin (default: /dev/null)"));
89 AdditionalSOs("additional-so", cl::desc("Additional shared objects to load "
90 "into executing programs"));
92 cl::list
<std::string
> AdditionalLinkerArgs(
93 "Xlinker", cl::desc("Additional arguments to pass to the linker"));
95 cl::opt
<std::string
> CustomCompileCommand(
96 "compile-command", cl::init("llc"),
97 cl::desc("Command to compile the bitcode (use with -compile-custom) "
100 cl::opt
<std::string
> CustomExecCommand(
101 "exec-command", cl::init("simulate"),
102 cl::desc("Command to execute the bitcode (use with -run-custom) "
103 "(default: simulate)"));
107 // Anything specified after the --args option are taken as arguments to the
108 // program being debugged.
109 cl::list
<std::string
> InputArgv("args", cl::Positional
,
110 cl::desc("<program arguments>..."),
111 cl::ZeroOrMore
, cl::PositionalEatsArgs
);
114 OutputPrefix("output-prefix", cl::init("bugpoint"),
115 cl::desc("Prefix to use for outputs (default: 'bugpoint')"));
119 cl::list
<std::string
> ToolArgv("tool-args", cl::Positional
,
120 cl::desc("<tool arguments>..."), cl::ZeroOrMore
,
121 cl::PositionalEatsArgs
);
123 cl::list
<std::string
> SafeToolArgv("safe-tool-args", cl::Positional
,
124 cl::desc("<safe-tool arguments>..."),
125 cl::ZeroOrMore
, cl::PositionalEatsArgs
);
127 cl::opt
<std::string
> CCBinary("gcc", cl::init(""),
128 cl::desc("The gcc binary to use."));
130 cl::list
<std::string
> CCToolArgv("gcc-tool-args", cl::Positional
,
131 cl::desc("<gcc-tool arguments>..."),
132 cl::ZeroOrMore
, cl::PositionalEatsArgs
);
135 //===----------------------------------------------------------------------===//
136 // BugDriver method implementation
139 /// initializeExecutionEnvironment - This method is used to set up the
140 /// environment for executing LLVM programs.
142 Error
BugDriver::initializeExecutionEnvironment() {
143 outs() << "Initializing execution environment: ";
145 // Create an instance of the AbstractInterpreter interface as specified on
147 SafeInterpreter
= nullptr;
150 if (CCBinary
.empty()) {
151 if (sys::findProgramByName("clang"))
157 switch (InterpreterSel
) {
160 InterpreterSel
= RunJIT
;
162 AbstractInterpreter::createJIT(getToolName(), Message
, &ToolArgv
);
165 InterpreterSel
= RunLLC
;
166 Interpreter
= AbstractInterpreter::createLLC(
167 getToolName(), Message
, CCBinary
, &ToolArgv
, &CCToolArgv
);
170 InterpreterSel
= RunLLI
;
172 AbstractInterpreter::createLLI(getToolName(), Message
, &ToolArgv
);
175 InterpreterSel
= AutoPick
;
176 Message
= "Sorry, I can't automatically select an interpreter!\n";
181 AbstractInterpreter::createLLI(getToolName(), Message
, &ToolArgv
);
186 Interpreter
= AbstractInterpreter::createLLC(
187 getToolName(), Message
, CCBinary
, &ToolArgv
, &CCToolArgv
,
188 InterpreterSel
== RunLLCIA
);
192 AbstractInterpreter::createJIT(getToolName(), Message
, &ToolArgv
);
195 Interpreter
= AbstractInterpreter::createCustomCompiler(
196 Message
, CustomCompileCommand
);
200 AbstractInterpreter::createCustomExecutor(Message
, CustomExecCommand
);
205 else // Display informational messages on stdout instead of stderr
208 std::string Path
= SafeInterpreterPath
;
210 Path
= getToolName();
211 std::vector
<std::string
> SafeToolArgs
= SafeToolArgv
;
212 switch (SafeInterpreterSel
) {
214 // In "llc-safe" mode, default to using LLC as the "safe" backend.
215 if (!SafeInterpreter
&& InterpreterSel
== LLC_Safe
) {
216 SafeInterpreterSel
= RunLLC
;
217 SafeToolArgs
.push_back("--relocation-model=pic");
218 SafeInterpreter
= AbstractInterpreter::createLLC(
219 Path
.c_str(), Message
, CCBinary
, &SafeToolArgs
, &CCToolArgv
);
222 if (!SafeInterpreter
&& InterpreterSel
!= RunLLC
&&
223 InterpreterSel
!= RunJIT
) {
224 SafeInterpreterSel
= RunLLC
;
225 SafeToolArgs
.push_back("--relocation-model=pic");
226 SafeInterpreter
= AbstractInterpreter::createLLC(
227 Path
.c_str(), Message
, CCBinary
, &SafeToolArgs
, &CCToolArgv
);
229 if (!SafeInterpreter
) {
230 SafeInterpreterSel
= AutoPick
;
231 Message
= "Sorry, I can't automatically select a safe interpreter!\n";
236 SafeToolArgs
.push_back("--relocation-model=pic");
237 SafeInterpreter
= AbstractInterpreter::createLLC(
238 Path
.c_str(), Message
, CCBinary
, &SafeToolArgs
, &CCToolArgv
,
239 SafeInterpreterSel
== RunLLCIA
);
243 AbstractInterpreter::createCustomExecutor(Message
, CustomExecCommand
);
246 Message
= "Sorry, this back-end is not supported by bugpoint as the "
247 "\"safe\" backend right now!\n";
250 if (!SafeInterpreter
) {
251 outs() << Message
<< "\nExiting.\n";
255 cc
= CC::create(Message
, CCBinary
, &CCToolArgv
);
257 outs() << Message
<< "\nExiting.\n";
261 // If there was an error creating the selected interpreter, quit with error.
262 if (Interpreter
== nullptr)
263 return make_error
<StringError
>("Failed to init execution environment",
264 inconvertibleErrorCode());
265 return Error::success();
268 /// Try to compile the specified module, returning false and setting Error if an
269 /// error occurs. This is used for code generation crash testing.
270 Error
BugDriver::compileProgram(Module
&M
) const {
271 // Emit the program to a bitcode file...
273 sys::fs::TempFile::create(OutputPrefix
+ "-test-program-%%%%%%%.bc");
276 << ": Error making unique filename: " << toString(Temp
.takeError())
280 DiscardTemp Discard
{*Temp
};
281 if (writeProgramToFile(Temp
->FD
, M
)) {
282 errs() << ToolName
<< ": Error emitting bitcode to file '" << Temp
->TmpName
287 // Actually compile the program!
288 return Interpreter
->compileProgram(Temp
->TmpName
, Timeout
, MemoryLimit
);
291 /// This method runs "Program", capturing the output of the program to a file,
292 /// returning the filename of the file. A recommended filename may be
293 /// optionally specified.
294 Expected
<std::string
> BugDriver::executeProgram(const Module
&Program
,
295 std::string OutputFile
,
296 std::string BitcodeFile
,
297 const std::string
&SharedObj
,
298 AbstractInterpreter
*AI
) const {
301 assert(AI
&& "Interpreter should have been created already!");
302 bool CreatedBitcode
= false;
303 if (BitcodeFile
.empty()) {
304 // Emit the program to a bitcode file...
305 SmallString
<128> UniqueFilename
;
307 std::error_code EC
= sys::fs::createUniqueFile(
308 OutputPrefix
+ "-test-program-%%%%%%%.bc", UniqueFD
, UniqueFilename
);
310 errs() << ToolName
<< ": Error making unique filename: " << EC
.message()
314 BitcodeFile
= UniqueFilename
.str();
316 if (writeProgramToFile(BitcodeFile
, UniqueFD
, Program
)) {
317 errs() << ToolName
<< ": Error emitting bitcode to file '" << BitcodeFile
321 CreatedBitcode
= true;
324 // Remove the temporary bitcode file when we are done.
325 std::string
BitcodePath(BitcodeFile
);
326 FileRemover
BitcodeFileRemover(BitcodePath
, CreatedBitcode
&& !SaveTemps
);
328 if (OutputFile
.empty())
329 OutputFile
= OutputPrefix
+ "-execution-output-%%%%%%%";
331 // Check to see if this is a valid output filename...
332 SmallString
<128> UniqueFile
;
333 std::error_code EC
= sys::fs::createUniqueFile(OutputFile
, UniqueFile
);
335 errs() << ToolName
<< ": Error making unique filename: " << EC
.message()
339 OutputFile
= UniqueFile
.str();
341 // Figure out which shared objects to run, if any.
342 std::vector
<std::string
> SharedObjs(AdditionalSOs
);
343 if (!SharedObj
.empty())
344 SharedObjs
.push_back(SharedObj
);
346 Expected
<int> RetVal
= AI
->ExecuteProgram(BitcodeFile
, InputArgv
, InputFile
,
347 OutputFile
, AdditionalLinkerArgs
,
348 SharedObjs
, Timeout
, MemoryLimit
);
349 if (Error E
= RetVal
.takeError())
353 errs() << "<timeout>";
354 static bool FirstTimeout
= true;
358 "*** Program execution timed out! This mechanism is designed to "
360 " programs stuck in infinite loops gracefully. The -timeout "
362 " can be used to change the timeout threshold or disable it "
364 " (with -timeout=0). This message is only displayed once.\n";
365 FirstTimeout
= false;
369 if (AppendProgramExitCode
) {
370 std::ofstream
outFile(OutputFile
.c_str(), std::ios_base::app
);
371 outFile
<< "exit " << *RetVal
<< '\n';
375 // Return the filename we captured the output to.
379 /// Used to create reference output with the "safe" backend, if reference output
381 Expected
<std::string
>
382 BugDriver::executeProgramSafely(const Module
&Program
,
383 const std::string
&OutputFile
) const {
384 return executeProgram(Program
, OutputFile
, "", "", SafeInterpreter
);
387 Expected
<std::string
>
388 BugDriver::compileSharedObject(const std::string
&BitcodeFile
) {
389 assert(Interpreter
&& "Interpreter should have been created already!");
390 std::string OutputFile
;
392 // Using the known-good backend.
393 Expected
<CC::FileType
> FT
=
394 SafeInterpreter
->OutputCode(BitcodeFile
, OutputFile
);
395 if (Error E
= FT
.takeError())
398 std::string SharedObjectFile
;
399 if (Error E
= cc
->MakeSharedObject(OutputFile
, *FT
, SharedObjectFile
,
400 AdditionalLinkerArgs
))
403 // Remove the intermediate C file
404 sys::fs::remove(OutputFile
);
406 return SharedObjectFile
;
409 /// Calls compileProgram and then records the output into ReferenceOutputFile.
410 /// Returns true if reference file created, false otherwise. Note:
411 /// initializeExecutionEnvironment should be called BEFORE this function.
412 Error
BugDriver::createReferenceFile(Module
&M
, const std::string
&Filename
) {
413 if (Error E
= compileProgram(*Program
))
416 Expected
<std::string
> Result
= executeProgramSafely(*Program
, Filename
);
417 if (Error E
= Result
.takeError()) {
418 if (Interpreter
!= SafeInterpreter
) {
421 make_error
<StringError
>(
422 "*** There is a bug running the \"safe\" backend. Either"
423 " debug it (for example with the -run-jit bugpoint option,"
424 " if JIT is being used as the \"safe\" backend), or fix the"
425 " error some other way.\n",
426 inconvertibleErrorCode()));
430 ReferenceOutputFile
= *Result
;
431 outs() << "\nReference output is: " << ReferenceOutputFile
<< "\n\n";
432 return Error::success();
435 /// This method executes the specified module and diffs the output against the
436 /// file specified by ReferenceOutputFile. If the output is different, 1 is
437 /// returned. If there is a problem with the code generator (e.g., llc
438 /// crashes), this will set ErrMsg.
439 Expected
<bool> BugDriver::diffProgram(const Module
&Program
,
440 const std::string
&BitcodeFile
,
441 const std::string
&SharedObject
,
442 bool RemoveBitcode
) const {
443 // Execute the program, generating an output file...
444 Expected
<std::string
> Output
=
445 executeProgram(Program
, "", BitcodeFile
, SharedObject
, nullptr);
446 if (Error E
= Output
.takeError())
450 bool FilesDifferent
= false;
451 if (int Diff
= DiffFilesWithTolerance(ReferenceOutputFile
, *Output
,
452 AbsTolerance
, RelTolerance
, &Error
)) {
454 errs() << "While diffing output: " << Error
<< '\n';
457 FilesDifferent
= true;
459 // Remove the generated output if there are no differences.
460 sys::fs::remove(*Output
);
463 // Remove the bitcode file if we are supposed to.
465 sys::fs::remove(BitcodeFile
);
466 return FilesDifferent
;
469 bool BugDriver::isExecutingJIT() { return InterpreterSel
== RunJIT
; }