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

References

tools/dsymutil/DwarfLinker.cpp
 1861     if (CurrRange == InvalidRange || Row.Address.Address < CurrRange.start() ||
 1862         Row.Address.Address > CurrRange.stop() ||
 1863         (Row.Address.Address == CurrRange.stop() && !Row.EndSequence)) {
 1863         (Row.Address.Address == CurrRange.stop() && !Row.EndSequence)) {
 1869       CurrRange = FunctionRanges.find(Row.Address.Address);
 1871           CurrRange != InvalidRange && CurrRange.start() <= Row.Address.Address;
 1881           auto Range = Ranges.lower_bound(Row.Address.Address);
 1885           if (Range != Ranges.end() && Range->first <= Row.Address.Address &&
 1886               Range->second.HighPC >= Row.Address.Address) {
 1887             StopAddress = Row.Address.Address + Range->second.Offset;
 1909     if (Row.EndSequence && Seq.empty())
 1913     Row.Address.Address += CurrRange.value();
 1914     Seq.emplace_back(Row);
 1916     if (Row.EndSequence)