Home | History | Annotate | Download | only in MC

Lines Matching refs:LineDelta

113     int64_t LineDelta = static_cast<int64_t>(LineEntry.getLine()) - LastLine;
155 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
407 int64_t LineDelta, uint64_t AddrDelta) {
411 MCDwarfLineAddr::Encode(Context, Params, LineDelta, AddrDelta, OS);
421 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
423 int64_t LineDelta, uint64_t AddrDelta,
434 LineDelta of INT64_MAX is a signal that this is actually a
437 if (LineDelta == INT64_MAX) {
451 Temp = LineDelta - Params.DWARF2LineBase;
458 encodeSLEB128(LineDelta, OS);
460 LineDelta = 0;
466 if (LineDelta == 0 && AddrDelta == 0) {