Lines Matching defs:row
1203 UnwindPlan::RowSP row(new UnwindPlan::Row);
1206 row->GetCFAValue().SetIsRegisterPlusOffset(LLDB_REGNUM_GENERIC_SP, 4);
1207 row->SetOffset(0);
1210 row->SetRegisterLocationToRegister(LLDB_REGNUM_GENERIC_PC,
1212 unwind_plan.AppendRow(row);
1227 UnwindPlan::RowSP row(new UnwindPlan::Row);
1229 row->SetUnspecifiedRegistersAreUndefined(true);
1230 row->GetCFAValue().SetIsRegisterPlusOffset(LLDB_REGNUM_GENERIC_FP, 8);
1232 row->SetRegisterLocationToAtCFAPlusOffset(fp_reg_num, -8, true);
1233 row->SetRegisterLocationToAtCFAPlusOffset(pc_reg_num, -4, true);
1234 row->SetRegisterLocationToIsCFAPlusOffset(sp_reg_num, 0, true);
1236 unwind_plan.AppendRow(row);