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

/dalvik/dx/src/com/android/dx/ssa/
H A DDeadCodeRemover.java52 private final ArrayList<SsaInsn>[] useList; field in class:DeadCodeRemover
74 useList = ssaMeth.getUseListCopy();
92 if (useList[regV].size() == 0
108 useList[source.getReg()].remove(insnS);
154 useList[source.getReg()].remove(insn);
160 for (SsaInsn use : useList[result.getReg()]) {
187 for (SsaInsn use : useList[regV]) {
200 for (SsaInsn use : useList[regV]) {
H A DSsaMethod.java79 private ArrayList<SsaInsn>[] useList; field in class:SsaMethod
81 /** A version of useList with each List unmodifiable */
439 * Builds useList and unmodifiableUseList.
446 useList = new ArrayList[registerCount];
449 useList[i] = new ArrayList();
474 useList[rl.get(i).getReg()].add(insn);
482 unmodifiableUseList[i] = Collections.unmodifiableList(useList[i]);
496 if (useList == null) return;
500 useList[reg].remove(insn);
504 if (useList
[all...]

Completed in 42 milliseconds