Searched refs:FirstRow (Results 1 – 3 of 3) sorted by relevance
/llvm-project/bolt/lib/Core/ |
H A D | BinaryEmitter.cpp | 1135 uint64_t FirstRow = Results.front(); in emitDebugLineInfoForUnprocessedCUs() 1136 while (FirstRow > 0) { in emitDebugLineInfoForUnprocessedCUs() 1137 const DWARFDebugLine::Row &PrevRow = LineTable->Rows[FirstRow - 1]; in emitDebugLineInfoForUnprocessedCUs() 1140 --FirstRow; in emitDebugLineInfoForUnprocessedCUs() 1146 .addLineTableSequence(LineTable, FirstRow, Results.back(), in emitDebugLineInfoForUnprocessedCUs() 1098 uint64_t FirstRow = Results.front(); emitDebugLineInfoForOriginalFunctions() local
|
/llvm-project/clang/lib/Tooling/ASTDiff/ |
H A D | ASTDiff.cpp | 589 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; in getMatchingNodes() local 599 FirstRow = S1.getLeftMostDescendant(LastRow); in getMatchingNodes() 605 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes() 606 if (Row > FirstRow && in getMatchingNodes()
|
/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.cpp | 1304 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex; in findRowInSeq() local 1306 assert(FirstRow->Address.Address <= Row.Address.Address && in findRowInSeq() 1308 RowIter RowPos = std::upper_bound(FirstRow + 1, LastRow - 1, Row, in findRowInSeq()
|