Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexDebugEventBuilder.java52 private Int2ReferenceMap<DebugLocalInfo> emittedLocals; field in DexDebugEventBuilder
135 if (emittedLocals == null) { in updateBlockEntry()
142 assert emittedLocals == null; in initialize()
146 emittedLocals = Int2ReferenceMaps.emptyMap(); in initialize()
151 emittedLocals = new Int2ReferenceOpenHashMap<>(); in initialize()
154 emittedLocals.put(entry.getIntKey(), entry.getValue()); in initialize()
157 lastKnownLocals = new Int2ReferenceOpenHashMap<>(emittedLocals); in initialize()
185 pendingLocalChanges = !localsEqual(emittedLocals, pendingLocals); in localsChanged()
209 emitLocalChangeEvents(emittedLocals, pendingLocals, lastKnownLocals, events, factory); in emitDebugPosition()
210 assert localsEqual(emittedLocals, pendingLocals); in emitDebugPosition()
[all …]