Lines Matching defs:LineDelta
209 int64_t LineDelta = static_cast<int64_t>(LineEntry.getLine()) - LastLine;
249 MCOS->emitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
702 int64_t LineDelta, uint64_t AddrDelta) {
705 MCDwarfLineAddr::encode(Context, Params, LineDelta, AddrDelta, Tmp);
715 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
717 int64_t LineDelta, uint64_t AddrDelta,
729 // A LineDelta of INT64_MAX is a signal that this is actually a
732 if (LineDelta == INT64_MAX) {
746 Temp = LineDelta - Params.DWARF2LineBase;
753 Out.append(Buf, Buf + encodeSLEB128(LineDelta, Buf));
755 LineDelta = 0;
761 if (LineDelta == 0 && AddrDelta == 0) {