Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DDexBuilder.java197 List<Instruction> dexInstructions = new ArrayList<>(numberOfInstructions); in build() local
203 int previousInstructionCount = dexInstructions.size(); in build()
204 info.addInstructions(this, dexInstructions); in build()
206 if (previousInstructionCount < dexInstructions.size()) { in build()
207 while (previousInstructionCount < dexInstructions.size()) { in build()
208 Instruction instruction = dexInstructions.get(previousInstructionCount++); in build()
221 dexInstructions.add(nop); in build()
227 dexInstructions.add(payload); in build()
236 dexInstructions.add(nop); in build()
243 dexInstructions.add(payload); in build()
[all …]