OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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,
ToolRunner.h
84
///
AbstractInterpreter
Class - Subclasses of this class are used to execute
88
class
AbstractInterpreter
{
101
static
AbstractInterpreter
* createLLI(const char *Argv0, std::string &Message,
104
static
AbstractInterpreter
* createJIT(const char *Argv0, std::string &Message,
107
static
AbstractInterpreter
*
111
static
AbstractInterpreter
*
116
virtual ~
AbstractInterpreter
() {}
132
Error = "OutputCode not supported by this
AbstractInterpreter
!";
157
class CBE : public
AbstractInterpreter
{
202
class LLC : public
AbstractInterpreter
{
[
all
...]
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.cpp
174
class LLI : public
AbstractInterpreter
{
237
void
AbstractInterpreter
::anchor() { }
240
AbstractInterpreter
*
AbstractInterpreter
::createLLI(const char *Argv0,
261
class CustomCompiler : public
AbstractInterpreter
{
322
class CustomExecutor : public
AbstractInterpreter
{
414
AbstractInterpreter
*
AbstractInterpreter
::createCustomCompiler(
429
AbstractInterpreter
*
AbstractInterpreter
::createCustomExecutor
[
all
...]
Miscompilation.cpp
334
AbstractInterpreter
*AI = BD.switchToSafeInterpreter();
[
all
...]
Completed in 507 milliseconds