HomeSort by relevance Sort by last modified time
    Searched defs:LineDelta (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/MC/
MCAssembler.cpp 736 int64_t LineDelta;
737 LineDelta = DF.getLineDelta();
741 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OSE);
907 << " LineDelta:" << OF->getLineDelta();
MCDwarf.cpp 172 int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
179 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
330 void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
334 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
339 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
343 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
347 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
348 void MCDwarfLineAddr::Encode(int64_t LineDelta, uint64_t AddrDelta,
356 // A LineDelta of INT64_MAX is a signal that this is actually a
359 if (LineDelta == INT64_MAX)
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 381 /// LineDelta - the value of the difference between the two line numbers
383 int64_t LineDelta;
395 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); }
400 int64_t getLineDelta() const { return LineDelta; }

Completed in 37 milliseconds