Lines Matching refs:LineTable
20 typedef DWARFDebugLine::LineTable DWARFLineTable;
295 const DWARFLineTable *LineTable, in getFileNameForCompileUnit() argument
300 LineTable == 0 || in getFileNameForCompileUnit()
301 !LineTable->getFileNameByIndex(FileIndex, NeedsAbsoluteFilePath, in getFileNameForCompileUnit()
317 const DWARFLineTable *LineTable, in getFileLineInfoForCompileUnit() argument
322 if (CU == 0 || LineTable == 0) in getFileLineInfoForCompileUnit()
325 uint32_t RowIndex = LineTable->lookupAddress(Address); in getFileLineInfoForCompileUnit()
329 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getFileLineInfoForCompileUnit()
330 if (!getFileNameForCompileUnit(CU, LineTable, Row.File, in getFileLineInfoForCompileUnit()
360 const DWARFLineTable *LineTable = getLineTableForCompileUnit(CU); in getLineInfoForAddress() local
363 getFileLineInfoForCompileUnit(CU, LineTable, Address, in getLineInfoForAddress()
404 const DWARFLineTable *LineTable = getLineTableForCompileUnit(CU); in getLineInfoForAddressRange() local
410 if (!LineTable->lookupAddressRange(Address, Size, RowVector)) in getLineInfoForAddressRange()
417 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
419 getFileNameForCompileUnit(CU, LineTable, Row.File, in getLineInfoForAddressRange()
442 const DWARFLineTable *LineTable = 0; in getInliningInfoForAddress() local
460 LineTable = getLineTableForCompileUnit(CU); in getInliningInfoForAddress()
462 getFileLineInfoForCompileUnit(CU, LineTable, Address, in getInliningInfoForAddress()
468 getFileNameForCompileUnit(CU, LineTable, CallFile, in getInliningInfoForAddress()