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

  /external/llvm/lib/DebugInfo/CodeView/
Line.cpp 17 uint32_t LineDelta = EndLine - StartLine;
18 LineData |= (LineDelta << EndLineDeltaShift) & EndLineDeltaMask;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
Line.cpp 17 uint32_t LineDelta = EndLine - StartLine;
18 LineData |= (LineDelta << EndLineDeltaShift) & EndLineDeltaMask;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/MC/
DwarfLineTables.cpp 55 void verifyEncoding(MCDwarfLineTableParams Params, int LineDelta, int AddrDelta,
59 MCDwarfLineAddr::Encode(getContext(), Params, LineDelta, AddrDelta,
  /external/llvm/lib/MC/
MCCodeView.cpp 332 int LineDelta = Loc.getLine() - LastLoc->getLine();
333 if (LineDelta == 0)
336 unsigned EncodedLineDelta = encodeSignedNumber(LineDelta);
MCAssembler.cpp 811 int64_t LineDelta;
812 LineDelta = DF.getLineDelta();
816 MCDwarfLineAddr::Encode(Context, getDWARFLinetableParams(), LineDelta,
MCDwarf.cpp 113 int64_t LineDelta = static_cast<int64_t>(LineEntry.getLine()) - LastLine;
155 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
407 int64_t LineDelta, uint64_t AddrDelta) {
411 MCDwarfLineAddr::Encode(Context, Params, LineDelta, AddrDelta, OS);
421 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
423 int64_t LineDelta, uint64_t AddrDelta,
434 // A LineDelta of INT64_MAX is a signal that this is actually a
437 if (LineDelta == INT64_MAX) {
451 Temp = LineDelta - Params.DWARF2LineBase;
458 encodeSLEB128(LineDelta, OS)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DwarfStreamer.cpp 540 int64_t LineDelta = int64_t(Row.Line) - LastLine;
542 MCDwarfLineAddr::Encode(*MC, Params, LineDelta, AddressDelta, EncodingOS);
550 if (LineDelta) {
552 MS->EmitSLEB128IntValue(LineDelta);
553 LineSectionSize += 1 + getSLEB128Size(LineDelta);
  /external/llvm/include/llvm/MC/
MCFragment.h 406 /// LineDelta - the value of the difference between the two line numbers
408 int64_t LineDelta;
417 MCDwarfLineAddrFragment(int64_t LineDelta, const MCExpr &AddrDelta,
419 : MCFragment(FT_Dwarf, false, 0, Sec), LineDelta(LineDelta),
427 int64_t getLineDelta() const { return LineDelta; }
  /external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCFragment.h 519 /// LineDelta - the value of the difference between the two line numbers
521 int64_t LineDelta;
528 MCDwarfLineAddrFragment(int64_t LineDelta, const MCExpr &AddrDelta,
531 LineDelta(LineDelta), AddrDelta(&AddrDelta) {}
536 int64_t getLineDelta() const { return LineDelta; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCCodeView.cpp 555 int LineDelta = CurSourceLoc.Line - LastSourceLoc.Line;
556 unsigned EncodedLineDelta = encodeSignedNumber(LineDelta);
558 if (CodeDelta == 0 && LineDelta != 0) {
571 if (LineDelta != 0) {
MCAssembler.cpp     [all...]
MCDwarf.cpp 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)
    [all...]
  /external/swiftshader/third_party/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; }
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]

Completed in 225 milliseconds