Searched defs:toSchedule (Results 1 - 1 of 1) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java663 * @param toSchedule List of instructions. Must consist only of moves.
665 private void scheduleUseBeforeAssigned(List<SsaInsn> toSchedule) { argument
671 int sz = toSchedule.size();
681 toSchedule.get(i).getSources().get(0));
684 toSchedule.get(i).getResult());
692 SsaInsn insn = toSchedule.get(i);
699 Collections.swap(toSchedule, i, insertPlace++);
713 SsaInsn insn = toSchedule.get(i);
723 Collections.swap(toSchedule, insertPlace, i);
740 toSchedule
[all...]

Completed in 43 milliseconds