Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/bugpoint/
H A DExecutionDriver.cpp163 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
167 Interpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
182 AbstractInterpreter::createLLI(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
187 Interpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
193 AbstractInterpreter::createJIT(getToolName(), Message, &ToolArgv); in initializeExecutionEnvironment()
196 Interpreter = AbstractInterpreter::createCustomCompiler( in initializeExecutionEnvironment()
200 Interpreter = AbstractInterpreter::createCustomExecutor( in initializeExecutionEnvironment()
219 SafeInterpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
227 SafeInterpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
238 SafeInterpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment()
[all …]
H A 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;
H A DToolRunner.h83 class AbstractInterpreter {
93 static AbstractInterpreter *
97 static AbstractInterpreter *
101 static AbstractInterpreter *
105 static AbstractInterpreter *
109 virtual ~AbstractInterpreter() {} in ~AbstractInterpreter()
147 class LLC : public AbstractInterpreter {
H A DToolRunner.cpp145 class LLI : public AbstractInterpreter {
203 void AbstractInterpreter::anchor() {} in anchor()
221 AbstractInterpreter *
222 AbstractInterpreter::createLLI(const char *Argv0, std::string &Message, in createLLI()
241 class CustomCompiler : public AbstractInterpreter {
293 class CustomExecutor : public AbstractInterpreter {
402 AbstractInterpreter *AbstractInterpreter::createCustomCompiler( in createCustomCompiler()
417 AbstractInterpreter *
418 AbstractInterpreter::createCustomExecutor(const char *Argv0, in createCustomExecutor()
533 class JIT : public AbstractInterpreter {
[all …]
H A DMiscompilation.cpp334 AbstractInterpreter *AI = BD.switchToSafeInterpreter(); in ExtractLoops()