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.
149 AbstractInterpreter *switchToSafeInterpreter() { in switchToSafeInterpreter()
150 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter()
151 Interpreter = (AbstractInterpreter*)SafeInterpreter; in switchToSafeInterpreter()
155 void switchToInterpreter(AbstractInterpreter *AI) { in switchToInterpreter()
177 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.cpp153 class LLI : public AbstractInterpreter {
216 void AbstractInterpreter::anchor() { } in anchor()
250 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0, in createLLI()
271 class CustomCompiler : public AbstractInterpreter {
332 class CustomExecutor : public AbstractInterpreter {
425 AbstractInterpreter *AbstractInterpreter::createCustomCompiler( in createCustomCompiler()
440 AbstractInterpreter *AbstractInterpreter::createCustomExecutor( in createCustomExecutor()
534 LLC *AbstractInterpreter::createLLC(const char *Argv0, in createLLC()
560 class JIT : public AbstractInterpreter {
626 AbstractInterpreter *AbstractInterpreter::createJIT(const char *Argv0, in createJIT()
DMiscompilation.cpp326 AbstractInterpreter *AI = BD.switchToSafeInterpreter(); in ExtractLoops()