Home
last modified time | relevance | path

Searched refs:RowIndex (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp279 for (uint32_t RowIndex : RowVector) { in convertFunctionLineTable() local
281 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable()
293 "line table Row[" << RowIndex << "] with address " in convertFunctionLineTable()
303 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) { in convertFunctionLineTable()
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp908 uint32_t RowIndex = 0; in verifyDebugLineRows() local
916 << "] row[" << RowIndex in verifyDebugLineRows()
920 if (RowIndex > 0) in verifyDebugLineRows()
921 LineTable->Rows[RowIndex - 1].dump(OS); in verifyDebugLineRows()
933 << "][" << RowIndex << "] has invalid file index " << Row.File in verifyDebugLineRows()
945 ++RowIndex; in verifyDebugLineRows()
H A DDWARFDebugLine.cpp1408 uint32_t RowIndex = lookupAddress(Address); in getFileLineInfoForAddress() local
1409 if (RowIndex == -1U) in getFileLineInfoForAddress()
1412 const auto &Row = Rows[RowIndex]; in getFileLineInfoForAddress()
H A DDWARFContext.cpp1314 for (uint32_t RowIndex : RowVector) { in getLineInfoForAddressRange() local
1316 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]; in getLineInfoForAddressRange()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DDebugData.h114 uint32_t RowIndex; member
120 RowIndex == Rhs.RowIndex;
/llvm-project-15.0.7/bolt/lib/Core/
H A DDebugData.cpp1369 for (uint32_t RowIndex = Sequence.FirstIndex; in emitBinaryDwarfLineTable() local
1370 RowIndex <= Sequence.LastIndex; ++RowIndex) { in emitBinaryDwarfLineTable()
1371 const DWARFDebugLine::Row &Row = Table->Rows[RowIndex]; in emitBinaryDwarfLineTable()
H A DBinaryEmitter.cpp661 CurrentLineTable->Rows[RowReference.RowIndex - 1].File); in emitLineInfo()
665 CurrentLineTable->Rows[RowReference.RowIndex - 1]; in emitLineInfo()
H A DBinaryFunction.cpp190 uint32_t RowIndex = LineTable->lookupAddress( in findDebugLineInformationForInstructionAt() local
192 if (RowIndex == LineTable->UnknownRowIndex) in findDebugLineInformationForInstructionAt()
195 assert(RowIndex < LineTable->Rows.size() && in findDebugLineInformationForInstructionAt()
203 InstructionLocation->RowIndex = RowIndex + 1; in findDebugLineInformationForInstructionAt()
H A DBinaryContext.cpp1818 const DWARFDebugLine::Row &Row = LineTable->Rows[RowRef.RowIndex - 1]; in printDebugInfo()