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 920 int64_t LineDelta;
921 LineDelta = DF.getLineDelta();
925 MCDwarfLineAddr::Encode(Context, LineDelta, AddrDelta, OSE);
    [all...]
MCDwarf.cpp 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)
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 486 /// LineDelta - the value of the difference between the two line numbers
488 int64_t LineDelta;
500 LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); }
505 int64_t getLineDelta() const { return LineDelta; }
    [all...]

Completed in 57 milliseconds