Lines Matching defs:LineTable
29 Error emit(const DWARFDebugLine::LineTable &LineTable) {
45 emitLineTablePrologue(LineTable.Prologue, OutSection);
48 emitLineTableRows(LineTable, OutSection);
295 void emitLineTableRows(const DWARFDebugLine::LineTable &LineTable,
299 Params.DWARF2LineOpcodeBase = LineTable.Prologue.OpcodeBase;
300 Params.DWARF2LineBase = LineTable.Prologue.LineBase;
301 Params.DWARF2LineRange = LineTable.Prologue.LineRange;
305 if (LineTable.Rows.empty()) {
325 for (const DWARFDebugLine::Row &Row : LineTable.Rows) {
336 (Row.Address.Address - Address) / LineTable.Prologue.MinInstLength;