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

  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 150 // Create an instance of the AbstractInterpreter interface as specified on
159 AbstractInterpreter::createCBE(getToolName(), Message, GCCBinary,
163 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
168 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
174 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
183 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
189 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
195 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
200 Interpreter = AbstractInterpreter::createCBE(getToolName(), Message,
206 AbstractInterpreter::createCustomCompiler(Message, CustomCompileCommand)
    [all...]
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,
ToolRunner.h 84 /// AbstractInterpreter Class - Subclasses of this class are used to execute
88 class AbstractInterpreter {
100 static AbstractInterpreter* createLLI(const char *Argv0, std::string &Message,
103 static AbstractInterpreter* createJIT(const char *Argv0, std::string &Message,
106 static AbstractInterpreter*
110 static AbstractInterpreter*
115 virtual ~AbstractInterpreter() {}
131 Error = "OutputCode not supported by this AbstractInterpreter!";
156 class CBE : public AbstractInterpreter {
201 class LLC : public AbstractInterpreter {
    [all...]
ToolRunner.cpp 174 class LLI : public AbstractInterpreter {
238 AbstractInterpreter *AbstractInterpreter::createLLI(const char *Argv0,
259 class CustomCompiler : public AbstractInterpreter {
320 class CustomExecutor : public AbstractInterpreter {
412 AbstractInterpreter *AbstractInterpreter::createCustomCompiler(
427 AbstractInterpreter *AbstractInterpreter::createCustomExecutor(
519 LLC *AbstractInterpreter::createLLC(const char *Argv0
    [all...]
Miscompilation.cpp 334 AbstractInterpreter *AI = BD.switchToSafeInterpreter();
    [all...]

Completed in 160 milliseconds