Home
last modified time | relevance | path

Searched refs:nextStartingRange (Results 1 – 1 of 1) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/regalloc/
DLinearScanRegisterAllocator.java282 LocalRange nextStartingRange = rangeIterator.next(); in computeDebugInfo() local
285 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 …]