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

  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 769 DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var);
770 if (AbsDbgVariable)
771 return AbsDbgVariable;
777 AbsDbgVariable = new DbgVariable(Var, NULL);
778 addScopeVariable(Scope, AbsDbgVariable);
779 AbstractVariables[Var] = AbsDbgVariable;
780 return AbsDbgVariable;
827 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second);
828 DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable);
832 if (AbsDbgVariable)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 692 auto AbsDbgVariable = make_unique<DbgVariable>(Var, /* IA */ nullptr);
693 InfoHolder.addScopeVariable(Scope, AbsDbgVariable.get());
694 AbstractVariables[Var] = std::move(AbsDbgVariable);
    [all...]

Completed in 134 milliseconds