Lines Matching refs:LineTable
64 using DWARFLineTable = DWARFDebugLine::LineTable;
439 DWARFDebugLine::LineTable LineTable = in dump() local
441 LineTable.dump(OS, DumpOpts); in dump()
836 const DWARFDebugLine::LineTable *
838 Expected<const DWARFDebugLine::LineTable *> ExpectedLineTable = in getLineTableForUnit()
847 Expected<const DWARFDebugLine::LineTable *> DWARFContext::getLineTableForUnit( in getLineTableForUnit()
981 if (const DWARFLineTable *LineTable = getLineTableForUnit(CU)) in getLineInfoForAddress() local
982 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getLineInfoForAddress()
1011 const DWARFLineTable *LineTable = getLineTableForUnit(CU); in getLineInfoForAddressRange() local
1015 if (!LineTable->lookupAddressRange(Address, Size, RowVector)) in getLineInfoForAddressRange()
1020 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
1022 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(), in getLineInfoForAddressRange()
1043 const DWARFLineTable *LineTable = nullptr; in getInliningInfoForAddress() local
1051 LineTable = getLineTableForUnit(CU); in getInliningInfoForAddress()
1052 if (LineTable && in getInliningInfoForAddress()
1053 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getInliningInfoForAddress()
1073 LineTable = getLineTableForUnit(CU); in getInliningInfoForAddress()
1075 if (LineTable) in getInliningInfoForAddress()
1076 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getInliningInfoForAddress()
1081 if (LineTable) in getInliningInfoForAddress()
1082 LineTable->getFileNameByIndex(CallFile, CU->getCompilationDir(), in getInliningInfoForAddress()