HomeSort by relevance Sort by last modified time
    Searched refs:AbstractInterpreter (Results 1 - 5 of 5) sorted by null

  /external/llvm/tools/bugpoint/
BugDriver.h 32 class AbstractInterpreter;
52 AbstractInterpreter *Interpreter; // How to run the program
53 AbstractInterpreter *SafeInterpreter; // To generate reference output, etc.
148 AbstractInterpreter *switchToSafeInterpreter() {
149 AbstractInterpreter *Old = Interpreter;
150 Interpreter = (AbstractInterpreter*)SafeInterpreter;
154 void switchToInterpreter(AbstractInterpreter *AI) {
176 AbstractInterpreter *AI,
ExecutionDriver.cpp 146 // Create an instance of the AbstractInterpreter interface as specified on
155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
181 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
187 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
192 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand);
196 AbstractInterpreter::createCustomExecutor(Message, CustomExecCommand);
215 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message
    [all...]
ToolRunner.h 83 /// AbstractInterpreter Class - Subclasses of this class are used to execute
87 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() {}
127 Error = "OutputCode not supported by this AbstractInterpreter!";
152 class LLC : public AbstractInterpreter {
ToolRunner.cpp 171 class LLI : public AbstractInterpreter {
234 void AbstractInterpreter::anchor() { }
268 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0,
289 class CustomCompiler : public AbstractInterpreter {
350 class CustomExecutor : public AbstractInterpreter {
442 AbstractInterpreter *AbstractInterpreter::createCustomCompiler(
457 AbstractInterpreter *AbstractInterpreter::createCustomExecutor
    [all...]
Miscompilation.cpp 334 AbstractInterpreter *AI = BD.switchToSafeInterpreter();
    [all...]

Completed in 368 milliseconds