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