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 742 int64_t LineDelta;
743 LineDelta = DF.getLineDelta();
747 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OSE);
913 << " LineDelta:" << OF->getLineDelta();
MCDwarf.cpp 170 int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
177 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
326 void MCDwarfLineAddr::Write(MCObjectWriter *OW, int64_t LineDelta,
330 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
335 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
339 MCDwarfLineAddr::Encode(LineDelta, AddrDelta, OS);
343 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
344 void MCDwarfLineAddr::Encode(int64_t LineDelta, uint64_t AddrDelta,
352 // A LineDelta of INT64_MAX is a signal that this is actually a
355 if (LineDelta == INT64_MAX)
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 361 /// LineDelta - the value of the difference between the two line numbers
363 int64_t LineDelta;
375 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); }
380 int64_t getLineDelta() const { return LineDelta; }

Completed in 183 milliseconds