Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp71 UnwindPlan::RowSP first_row = unwind_plan.GetRowForFunctionOffset(0); in AugmentUnwindPlanFromCallSite() local
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()
124 first_row->GetCFAValue().GetOffset() == in AugmentUnwindPlanFromCallSite()
H A Dx86AssemblyInspectionEngine.cpp1344 UnwindPlan::RowSP first_row = unwind_plan.GetRowAtIndex(0); in AugmentUnwindPlanFromCallSite() local
1345 if (first_row->GetOffset() != 0) in AugmentUnwindPlanFromCallSite()
1347 uint32_t cfa_reg = first_row->GetCFAValue().GetRegisterNumber(); in AugmentUnwindPlanFromCallSite()
1351 first_row->GetCFAValue().GetRegisterNumber()); in AugmentUnwindPlanFromCallSite()
1354 first_row->GetCFAValue().GetOffset() != m_wordsize) in AugmentUnwindPlanFromCallSite()
1362 UnwindPlan::RowSP row(new UnwindPlan::Row(*first_row)); in AugmentUnwindPlanFromCallSite()
1540 first_row->GetCFAValue().GetRegisterNumber(), m_wordsize); in AugmentUnwindPlanFromCallSite()
/src/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()