Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/ir/code/
DBasicBlock.java860 LinkedList<Instruction> newInstructions = new LinkedList<>(); in removeInstructions() local
864 newInstructions.addAll(instructions.subList(nextIndex, index)); in removeInstructions()
869 newInstructions.addAll(instructions.subList(nextIndex, instructions.size())); in removeInstructions()
871 assert instructions.size() == newInstructions.size() + toRemove.size(); in removeInstructions()
872 setInstructions(newInstructions); in removeInstructions()
/external/proguard/src/proguard/optimize/evaluation/
DEvaluationShrinker.java1021 Instruction[] newInstructions = new Instruction[count]; in visitSimpleInstruction() local
1022 System.arraycopy(replacementInstructions, 0, newInstructions, 0, count); in visitSimpleInstruction()
1023 replacementInstructions = newInstructions; in visitSimpleInstruction()