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

  /external/llvm/lib/MC/
MCAssembler.cpp     [all...]
MCDwarf.cpp 167 int64_t LineDelta = static_cast<int64_t>(it->getLine()) - LastLine;
174 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
417 void MCDwarfLineAddr::Emit(MCStreamer *MCOS, int64_t LineDelta,
422 MCDwarfLineAddr::Encode(Context, LineDelta, AddrDelta, OS);
426 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
427 void MCDwarfLineAddr::Encode(MCContext &Context, int64_t LineDelta,
435 // A LineDelta of INT64_MAX is a signal that this is actually a
438 if (LineDelta == INT64_MAX) {
452 Temp = LineDelta - DWARF2_LINE_BASE;
458 encodeSLEB128(LineDelta, OS)
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 492 /// LineDelta - the value of the difference between the two line numbers
494 int64_t LineDelta;
503 MCDwarfLineAddrFragment(int64_t LineDelta, const MCExpr &AddrDelta,
505 : MCFragment(FT_Dwarf, SD), LineDelta(LineDelta), AddrDelta(&AddrDelta) {
512 int64_t getLineDelta() const { return LineDelta; }
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 869 int64_t LineDelta = int64_t(Row.Line) - LastLine;
871 MCDwarfLineAddr::Encode(*MC, LineDelta, AddressDelta, EncodingOS)
    [all...]

Completed in 450 milliseconds