Lines Matching refs:CurrRange
2883 auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange; in patchRangesForUnit() local
2902 if (CurrRange == InvalidRange || in patchRangesForUnit()
2903 First.StartAddress + OrigLowPc < CurrRange.start() || in patchRangesForUnit()
2904 First.StartAddress + OrigLowPc >= CurrRange.stop()) { in patchRangesForUnit()
2905 CurrRange = FunctionRanges.find(First.StartAddress + OrigLowPc); in patchRangesForUnit()
2906 if (CurrRange == InvalidRange || in patchRangesForUnit()
2907 CurrRange.start() > First.StartAddress + OrigLowPc) { in patchRangesForUnit()
2914 Streamer->emitRangesEntries(UnitPcOffset, OrigLowPc, CurrRange, Entries, in patchRangesForUnit()
3008 auto InvalidRange = FunctionRanges.end(), CurrRange = InvalidRange; in patchLineTableForUnit() local
3027 if (CurrRange == InvalidRange || Row.Address < CurrRange.start() || in patchLineTableForUnit()
3028 Row.Address > CurrRange.stop() || in patchLineTableForUnit()
3029 (Row.Address == CurrRange.stop() && !Row.EndSequence)) { in patchLineTableForUnit()
3032 uint64_t StopAddress = CurrRange != InvalidRange in patchLineTableForUnit()
3033 ? CurrRange.stop() + CurrRange.value() in patchLineTableForUnit()
3035 CurrRange = FunctionRanges.find(Row.Address); in patchLineTableForUnit()
3037 CurrRange != InvalidRange && CurrRange.start() <= Row.Address; in patchLineTableForUnit()
3039 CurrRange = InvalidRange; in patchLineTableForUnit()
3079 Row.Address += CurrRange.value(); in patchLineTableForUnit()