Lines Matching refs:row
44 static std::ostream &operator<<(std::ostream &OS, const UnwindPlan::Row &row) { in operator <<() argument
46 row.Dump(SS, nullptr, nullptr, 0); in operator <<()
52 UnwindPlan::Row row; in GetExpectedRow0() local
53 row.SetOffset(0); in GetExpectedRow0()
54 row.GetCFAValue().SetIsRegisterPlusOffset(dwarf_rsp_x86_64, 8); in GetExpectedRow0()
55 row.SetRegisterLocationToAtCFAPlusOffset(dwarf_rip_x86_64, -8, false); in GetExpectedRow0()
56 return row; in GetExpectedRow0()
60 UnwindPlan::Row row; in GetExpectedRow1() local
61 row.SetOffset(1); in GetExpectedRow1()
62 row.GetCFAValue().SetIsRegisterPlusOffset(dwarf_rsp_x86_64, 16); in GetExpectedRow1()
63 row.SetRegisterLocationToAtCFAPlusOffset(dwarf_rip_x86_64, -8, false); in GetExpectedRow1()
64 row.SetRegisterLocationToAtCFAPlusOffset(dwarf_rbp_x86_64, -16, false); in GetExpectedRow1()
65 return row; in GetExpectedRow1()
69 UnwindPlan::Row row; in GetExpectedRow2() local
70 row.SetOffset(4); in GetExpectedRow2()
71 row.GetCFAValue().SetIsRegisterPlusOffset(dwarf_rbp_x86_64, 16); in GetExpectedRow2()
72 row.SetRegisterLocationToAtCFAPlusOffset(dwarf_rip_x86_64, -8, false); in GetExpectedRow2()
73 row.SetRegisterLocationToAtCFAPlusOffset(dwarf_rbp_x86_64, -16, false); in GetExpectedRow2()
74 return row; in GetExpectedRow2()