Home
last modified time | relevance | path

Searched refs:AbstractInterpreter (Results 1 – 5 of 5) sorted by relevance

/external/llvm/tools/bugpoint/
DExecutionDriver.cpp162 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
167 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
173 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
182 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
188 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
194 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
199 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand); in initializeExecutionEnvironment()
203 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand); in initializeExecutionEnvironment()
222 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, in initializeExecutionEnvironment()
233 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, in initializeExecutionEnvironment()
[all …]
DBugDriver.h33 class AbstractInterpreter; variable
53 AbstractInterpreter *Interpreter; // How to run the program
54 AbstractInterpreter *SafeInterpreter; // To generate reference output, etc.
143 AbstractInterpreter *switchToSafeInterpreter() { in switchToSafeInterpreter()
144 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter()
145 Interpreter = (AbstractInterpreter*)SafeInterpreter; in switchToSafeInterpreter()
149 void switchToInterpreter(AbstractInterpreter *AI) { in switchToInterpreter()
171 AbstractInterpreter *AI,
DToolRunner.h87 class AbstractInterpreter {
96 static AbstractInterpreter*
100 static AbstractInterpreter*
104 static AbstractInterpreter*
108 static AbstractInterpreter*
113 virtual ~AbstractInterpreter() {} in ~AbstractInterpreter()
154 class LLC : public AbstractInterpreter {
DToolRunner.cpp154 class LLI : public AbstractInterpreter {
217 void AbstractInterpreter::anchor() { } in anchor()
251 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0, in createLLI()
272 class CustomCompiler : public AbstractInterpreter {
333 class CustomExecutor : public AbstractInterpreter {
426 AbstractInterpreter *AbstractInterpreter::createCustomCompiler( in createCustomCompiler()
441 AbstractInterpreter *AbstractInterpreter::createCustomExecutor( in createCustomExecutor()
535 LLC *AbstractInterpreter::createLLC(const char *Argv0, in createLLC()
561 class JIT : public AbstractInterpreter {
627 AbstractInterpreter *AbstractInterpreter::createJIT(const char *Argv0, in createJIT()
DMiscompilation.cpp327 AbstractInterpreter *AI = BD.switchToSafeInterpreter(); in ExtractLoops()