HomeSort by relevance Sort by last modified time
    Searched refs:AbstractInterpreter (Results 1 - 5 of 5) sorted by null

  /external/llvm/tools/bugpoint/
BugDriver.h 33 class AbstractInterpreter;
53 AbstractInterpreter *Interpreter; // How to run the program
54 AbstractInterpreter *SafeInterpreter; // To generate reference output, etc.
149 AbstractInterpreter *switchToSafeInterpreter() {
150 AbstractInterpreter *Old = Interpreter;
151 Interpreter = (AbstractInterpreter*)SafeInterpreter;
155 void switchToInterpreter(AbstractInterpreter *AI) {
177 AbstractInterpreter *AI,
ExecutionDriver.cpp 146 // Create an instance of the AbstractInterpreter interface as specified on
162 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
167 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
173 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
182 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
188 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
194 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
199 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand);
203 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand);
222 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message
    [all...]
ToolRunner.h 83 /// AbstractInterpreter Class - Subclasses of this class are used to execute
87 class AbstractInterpreter {
96 static AbstractInterpreter*
100 static AbstractInterpreter*
104 static AbstractInterpreter*
108 static AbstractInterpreter*
113 virtual ~AbstractInterpreter() {}
129 Error = "OutputCode not supported by this AbstractInterpreter!";
154 class LLC : public AbstractInterpreter {
ToolRunner.cpp 153 class LLI : public AbstractInterpreter {
216 void AbstractInterpreter::anchor() { }
250 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0,
271 class CustomCompiler : public AbstractInterpreter {
332 class CustomExecutor : public AbstractInterpreter {
425 AbstractInterpreter *AbstractInterpreter::createCustomCompiler(
440 AbstractInterpreter *AbstractInterpreter::createCustomExecutor
    [all...]
Miscompilation.cpp 326 AbstractInterpreter *AI = BD.switchToSafeInterpreter();
    [all...]

Completed in 168 milliseconds