Lines Matching refs:DebugVar
292 printStackObjectDbgInfo(const MachineFunction::VariableDbgInfo &DebugVar, in printStackObjectDbgInfo() argument
294 std::array<std::string *, 3> Outputs{{&Object.DebugVar.Value, in printStackObjectDbgInfo()
297 std::array<const Metadata *, 3> Metas{{DebugVar.Var, in printStackObjectDbgInfo()
298 DebugVar.Expr, in printStackObjectDbgInfo()
299 DebugVar.Loc}}; in printStackObjectDbgInfo()
489 for (const MachineFunction::VariableDbgInfo &DebugVar : in convertStackObjects() local
491 assert(DebugVar.Slot >= MFI.getObjectIndexBegin() && in convertStackObjects()
492 DebugVar.Slot < MFI.getObjectIndexEnd() && in convertStackObjects()
494 if (DebugVar.Slot < 0) { // Negative index means fixed objects. in convertStackObjects()
496 YMF.FixedStackObjects[FixedStackObjectsIdx[DebugVar.Slot + in convertStackObjects()
498 printStackObjectDbgInfo(DebugVar, Object, MST); in convertStackObjects()
500 auto &Object = YMF.StackObjects[StackObjectsIdx[DebugVar.Slot]]; in convertStackObjects()
501 printStackObjectDbgInfo(DebugVar, Object, MST); in convertStackObjects()