reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/bugpoint/BugDriver.cpp
   86   if (Interpreter != SafeInterpreter)
   87     delete Interpreter;
tools/bugpoint/BugDriver.h
  136     AbstractInterpreter *Old = Interpreter;
  137     Interpreter = (AbstractInterpreter *)SafeInterpreter;
  141   void switchToInterpreter(AbstractInterpreter *AI) { Interpreter = AI; }
tools/bugpoint/ExecutionDriver.cpp
  159     if (!Interpreter) {
  161       Interpreter =
  164     if (!Interpreter) {
  166       Interpreter = AbstractInterpreter::createLLC(
  169     if (!Interpreter) {
  171       Interpreter =
  174     if (!Interpreter) {
  180     Interpreter =
  186     Interpreter = AbstractInterpreter::createLLC(
  191     Interpreter =
  195     Interpreter = AbstractInterpreter::createCustomCompiler(
  199     Interpreter = AbstractInterpreter::createCustomExecutor(
  203   if (!Interpreter)
  262   if (Interpreter == nullptr)
  288   return Interpreter->compileProgram(Temp->TmpName, Timeout, MemoryLimit);
  300     AI = Interpreter;
  389   assert(Interpreter && "Interpreter should have been created already!");
  418     if (Interpreter != SafeInterpreter) {
tools/bugpoint/Miscompilation.cpp
 1007   if ((void *)SafeInterpreter == (void *)Interpreter) {