Home
last modified time | relevance | path

Searched refs:first_row (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp71 const UnwindPlan::Row *first_row = unwind_plan.GetRowForFunctionOffset(0); in AugmentUnwindPlanFromCallSite() local
76 if (!process_sp || !first_row || !last_row) in AugmentUnwindPlanFromCallSite()
92 if (first_row->GetCFAValue().GetValueType() != in AugmentUnwindPlanFromCallSite()
95 first_row->GetCFAValue().GetRegisterNumber()) != in AugmentUnwindPlanFromCallSite()
97 first_row->GetCFAValue().GetOffset() != wordsize) { in AugmentUnwindPlanFromCallSite()
101 if (!first_row->GetRegisterInfo( in AugmentUnwindPlanFromCallSite()
112 if (first_row != last_row && in AugmentUnwindPlanFromCallSite()
113 first_row->GetOffset() != last_row->GetOffset()) { in AugmentUnwindPlanFromCallSite()
120 if (first_row->GetCFAValue().GetValueType() == in AugmentUnwindPlanFromCallSite()
122 first_row->GetCFAValue().GetRegisterNumber() == in AugmentUnwindPlanFromCallSite()
[all …]
H A Dx86AssemblyInspectionEngine.cpp1341 UnwindPlan::Row first_row = *unwind_plan.GetRowAtIndex(0); in AugmentUnwindPlanFromCallSite() local
1342 if (first_row.GetOffset() != 0) in AugmentUnwindPlanFromCallSite()
1344 uint32_t cfa_reg = first_row.GetCFAValue().GetRegisterNumber(); in AugmentUnwindPlanFromCallSite()
1348 first_row.GetCFAValue().GetRegisterNumber()); in AugmentUnwindPlanFromCallSite()
1351 first_row.GetCFAValue().GetOffset() != m_wordsize) in AugmentUnwindPlanFromCallSite()
1359 UnwindPlan::Row row = first_row; in AugmentUnwindPlanFromCallSite()
1525 first_row.GetCFAValue().GetRegisterNumber(), m_wordsize); in AugmentUnwindPlanFromCallSite()
/freebsd/contrib/mandoc/
H A Dtbl_layout.c261 } else if (c == TBL_CELL_DOWN && rp == tbl->first_row) in cell()
299 if (tbl->first_row == NULL) { in tbl_layout()
300 tbl->first_row = tbl->last_row = in tbl_layout()
303 if (tbl->first_row->first == NULL) { in tbl_layout()
306 cell_alloc(tbl, tbl->first_row, in tbl_layout()
308 if (tbl->opts.lvert < tbl->first_row->vert) in tbl_layout()
309 tbl->opts.lvert = tbl->first_row->vert; in tbl_layout()
318 for (rp = tbl->first_row; rp; rp = rp->next) { in tbl_layout()
352 tbl->first_row = rp; in tbl_layout()
H A Dtbl.c116 while ((rp = tbl->first_row) != NULL) { in tbl_free()
117 tbl->first_row = rp->next; in tbl_free()
H A Dtbl_int.h32 struct tbl_row *first_row; /* First layout row. */ member
H A Dtbl_data.c270 rp = sp == NULL ? tbl->first_row : in tbl_data()