Lines Matching refs:LineTable
1656 DWARFDebugLine::LineTable LineTable; in patchLineTableForUnit() local
1665 LineTable.parse(LineExtractor, &StmtOffset, OrigDwarf, in patchLineTableForUnit()
1671 NewRows.reserve(LineTable.Rows.size()); in patchLineTableForUnit()
1690 for (auto &Row : LineTable.Rows) { in patchLineTableForUnit()
1760 if (LineTable.Prologue.getVersion() < 2 || in patchLineTableForUnit()
1761 LineTable.Prologue.getVersion() > 5 || in patchLineTableForUnit()
1762 LineTable.Prologue.DefaultIsStmt != DWARF2_LINE_DEFAULT_IS_STMT || in patchLineTableForUnit()
1763 LineTable.Prologue.OpcodeBase > 13) in patchLineTableForUnit()
1766 uint32_t PrologueEnd = *StmtList + 10 + LineTable.Prologue.PrologueLength; in patchLineTableForUnit()
1769 if (LineTable.Prologue.getVersion() == 5) in patchLineTableForUnit()
1773 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase; in patchLineTableForUnit()
1774 Params.DWARF2LineBase = LineTable.Prologue.LineBase; in patchLineTableForUnit()
1775 Params.DWARF2LineRange = LineTable.Prologue.LineRange; in patchLineTableForUnit()
1778 LineTable.Prologue.MinInstLength, NewRows, in patchLineTableForUnit()