Home
last modified time | relevance | path

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

/external/llvm/tools/bugpoint/
DExecutionDriver.cpp155 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 …]
DBugDriver.h32 class AbstractInterpreter; variable
52 AbstractInterpreter *Interpreter; // How to run the program
53 AbstractInterpreter *SafeInterpreter; // To generate reference output, etc.
148 AbstractInterpreter *switchToSafeInterpreter() { in switchToSafeInterpreter()
149 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter()
150 Interpreter = (AbstractInterpreter*)SafeInterpreter; in switchToSafeInterpreter()
154 void switchToInterpreter(AbstractInterpreter *AI) { in switchToInterpreter()
176 AbstractInterpreter *AI,
DToolRunner.h87 class AbstractInterpreter {
96 static AbstractInterpreter* createLLI(const char *Argv0, std::string &Message,
99 static AbstractInterpreter* createJIT(const char *Argv0, std::string &Message,
102 static AbstractInterpreter*
106 static AbstractInterpreter*
111 virtual ~AbstractInterpreter() {} in ~AbstractInterpreter()
152 class LLC : public AbstractInterpreter {
DToolRunner.cpp171 class LLI : public AbstractInterpreter {
234 void AbstractInterpreter::anchor() { } in anchor()
268 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0, in createLLI()
289 class CustomCompiler : public AbstractInterpreter {
350 class CustomExecutor : public AbstractInterpreter {
442 AbstractInterpreter *AbstractInterpreter::createCustomCompiler( in createCustomCompiler()
457 AbstractInterpreter *AbstractInterpreter::createCustomExecutor( in createCustomExecutor()
551 LLC *AbstractInterpreter::createLLC(const char *Argv0, in createLLC()
577 class JIT : public AbstractInterpreter {
643 AbstractInterpreter *AbstractInterpreter::createJIT(const char *Argv0, in createJIT()
DMiscompilation.cpp334 AbstractInterpreter *AI = BD.switchToSafeInterpreter(); in ExtractLoops()