Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DExecutionDriver.cpp162 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
166 Interpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
172 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
181 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
186 Interpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
192 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
195 Interpreter = AbstractInterpreter::createCustomCompiler( in initializeExecutionEnvironment()
200 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand); in initializeExecutionEnvironment()
218 SafeInterpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
226 SafeInterpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
[all …]
DBugDriver.h35 class AbstractInterpreter; variable
55 AbstractInterpreter *Interpreter; // How to run the program
56 AbstractInterpreter *SafeInterpreter; // To generate reference output, etc.
136 AbstractInterpreter *switchToSafeInterpreter() { in switchToSafeInterpreter()
137 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter()
138 Interpreter = (AbstractInterpreter *)SafeInterpreter; in switchToSafeInterpreter()
142 void switchToInterpreter(AbstractInterpreter *AI) { Interpreter = AI; } in switchToInterpreter()
159 AbstractInterpreter *AI) const;
DToolRunner.h82 class AbstractInterpreter {
92 static AbstractInterpreter *
96 static AbstractInterpreter *
100 static AbstractInterpreter *
104 static AbstractInterpreter *
108 virtual ~AbstractInterpreter() {} in ~AbstractInterpreter()
146 class LLC : public AbstractInterpreter {
DToolRunner.cpp145 class LLI : public AbstractInterpreter {
203 void AbstractInterpreter::anchor() {} in anchor()
237 AbstractInterpreter *
238 AbstractInterpreter::createLLI(const char *Argv0, std::string &Message, in createLLI()
258 class CustomCompiler : public AbstractInterpreter {
310 class CustomExecutor : public AbstractInterpreter {
418 AbstractInterpreter *AbstractInterpreter::createCustomCompiler( in createCustomCompiler()
432 AbstractInterpreter *
433 AbstractInterpreter::createCustomExecutor(std::string &Message, in createCustomExecutor()
522 LLC *AbstractInterpreter::createLLC(const char *Argv0, std::string &Message, in createLLC()
[all …]
DMiscompilation.cpp334 AbstractInterpreter *AI = BD.switchToSafeInterpreter(); in ExtractLoops()
/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()