Lines Matching refs:CurrRange
2203 auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange; in patchRangesForUnit() local
2221 if (CurrRange == InvalidRange || First.StartAddress < CurrRange.start() || in patchRangesForUnit()
2222 First.StartAddress >= CurrRange.stop()) { in patchRangesForUnit()
2223 CurrRange = FunctionRanges.find(First.StartAddress + OrigLowPc); in patchRangesForUnit()
2224 if (CurrRange == InvalidRange || in patchRangesForUnit()
2225 CurrRange.start() > First.StartAddress + OrigLowPc) { in patchRangesForUnit()
2231 Streamer->emitRangesEntries(UnitPcOffset, OrigLowPc, CurrRange, Entries, in patchRangesForUnit()
2325 auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange; in patchLineTableForUnit() local
2344 if (CurrRange == InvalidRange || Row.Address < CurrRange.start() || in patchLineTableForUnit()
2345 Row.Address > CurrRange.stop() || in patchLineTableForUnit()
2346 (Row.Address == CurrRange.stop() && !Row.EndSequence)) { in patchLineTableForUnit()
2349 uint64_t StopAddress = CurrRange != InvalidRange in patchLineTableForUnit()
2350 ? CurrRange.stop() + CurrRange.value() in patchLineTableForUnit()
2352 CurrRange = FunctionRanges.find(Row.Address); in patchLineTableForUnit()
2354 CurrRange != InvalidRange && CurrRange.start() <= Row.Address; in patchLineTableForUnit()
2356 CurrRange = InvalidRange; in patchLineTableForUnit()
2395 Row.Address += CurrRange.value(); in patchLineTableForUnit()