Lines Matching defs:LineDelta
173 int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
180 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
355 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
360 MCDwarfLineAddr::Encode(Context, LineDelta, AddrDelta, OS);
364 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
365 void MCDwarfLineAddr::Encode(MCContext &Context, int64_t LineDelta,
373 // A LineDelta of INT64_MAX is a signal that this is actually a
376 if (LineDelta == INT64_MAX) {
390 Temp = LineDelta - DWARF2_LINE_BASE;
396 encodeSLEB128(LineDelta, OS);
398 LineDelta = 0;
404 if (LineDelta == 0 && AddrDelta == 0) {