reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
   43       return (StartAddress == 0) && (EndAddress == 0);
   55         return StartAddress == -1U;
   56       return StartAddress == -1ULL;
lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
   42     Entry.StartAddress = data.getRelocatedAddress(offset_ptr);
   65     OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress);
   80     E.LowPC = RLE.StartAddress;
tools/dsymutil/DwarfLinker.cpp
 1734           First.StartAddress + OrigLowPc < CurrRange.start() ||
 1735           First.StartAddress + OrigLowPc >= CurrRange.stop()) {
 1736         CurrRange = FunctionRanges.find(First.StartAddress + OrigLowPc);
 1738             CurrRange.start() > First.StartAddress + OrigLowPc) {
tools/dsymutil/DwarfStreamer.cpp
  288     if (Range.StartAddress == Range.EndAddress)
  292     if (!(Range.StartAddress + OrigLowPc >= FuncRange.start() &&
  295     MS->EmitIntValue(Range.StartAddress + PcOffset, AddressSize);