Home | History | Annotate | Download | only in MC

Lines Matching refs:LineDelta

163     int64_t LineDelta = static_cast<int64_t>(LineEntry.getLine()) - LastLine;
206 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
637 int64_t LineDelta, uint64_t AddrDelta) {
641 MCDwarfLineAddr::Encode(Context, Params, LineDelta, AddrDelta, OS);
651 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
653 int64_t LineDelta, uint64_t AddrDelta,
664 // A LineDelta of INT64_MAX is a signal that this is actually a
667 if (LineDelta == INT64_MAX) {
681 Temp = LineDelta - Params.DWARF2LineBase;
688 encodeSLEB128(LineDelta, OS);
690 LineDelta = 0;
696 if (LineDelta == 0 && AddrDelta == 0) {
736 int64_t LineDelta, uint64_t AddrDelta,
739 if (LineDelta != INT64_MAX) {
741 encodeSLEB128(LineDelta, OS);
774 if (LineDelta == INT64_MAX) {