Searched refs:nextStartingRange (Results 1 – 1 of 1) sorted by relevance
282 LocalRange nextStartingRange = rangeIterator.next(); in computeDebugInfo() local285 while (nextStartingRange != null && nextStartingRange.start == 0) { in computeDebugInfo()286 currentLocals.put(nextStartingRange.register, nextStartingRange.local); in computeDebugInfo()287 openRanges.add(nextStartingRange); in computeDebugInfo()288 nextStartingRange = rangeIterator.hasNext() ? rangeIterator.next() : null; in computeDebugInfo()310 while (nextStartingRange != null && nextStartingRange.start <= index) { in computeDebugInfo()312 if (nextStartingRange.end > index) { in computeDebugInfo()313 openRanges.add(nextStartingRange); in computeDebugInfo()314 assert !currentLocals.containsKey(nextStartingRange.register); in computeDebugInfo()315 currentLocals.put(nextStartingRange.register, nextStartingRange.local); in computeDebugInfo()[all …]