Searched refs:AbstractInterpreter (Results 1 – 5 of 5) sorted by relevance
/external/llvm/tools/bugpoint/ |
D | ExecutionDriver.cpp | 155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment() 160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment() 166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment() 175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment() 181 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment() 187 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment() 192 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand); in initializeExecutionEnvironment() 196 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand); in initializeExecutionEnvironment() 215 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, in initializeExecutionEnvironment() 226 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message, in initializeExecutionEnvironment() [all …]
|
D | BugDriver.h | 33 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,
|
D | ToolRunner.h | 87 class AbstractInterpreter { 96 static AbstractInterpreter* 100 static AbstractInterpreter* 104 static AbstractInterpreter* 108 static AbstractInterpreter* 113 virtual ~AbstractInterpreter() {} in ~AbstractInterpreter() 154 class LLC : public AbstractInterpreter {
|
D | ToolRunner.cpp | 172 class LLI : public AbstractInterpreter { 235 void AbstractInterpreter::anchor() { } in anchor() 269 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0, in createLLI() 290 class CustomCompiler : public AbstractInterpreter { 351 class CustomExecutor : public AbstractInterpreter { 444 AbstractInterpreter *AbstractInterpreter::createCustomCompiler( in createCustomCompiler() 459 AbstractInterpreter *AbstractInterpreter::createCustomExecutor( in createCustomExecutor() 553 LLC *AbstractInterpreter::createLLC(const char *Argv0, in createLLC() 579 class JIT : public AbstractInterpreter { 645 AbstractInterpreter *AbstractInterpreter::createJIT(const char *Argv0, in createJIT()
|
D | Miscompilation.cpp | 331 AbstractInterpreter *AI = BD.switchToSafeInterpreter(); in ExtractLoops()
|