HomeSort by relevance Sort by last modified time
    Searched defs:useList (Results 1 - 6 of 6) sorted by null

  /dalvik/dx/src/com/android/dx/ssa/
DeadCodeRemover.java 52 private final ArrayList<SsaInsn>[] useList;
74 useList = ssaMeth.getUseListCopy();
90 if (useList[regV].size() == 0
106 useList[source.getReg()].remove(insnS);
142 for (SsaInsn use : useList[regV]) {
155 for (SsaInsn use : useList[regV]) {
PhiTypeResolver.java 95 List<SsaInsn> useList = ssaMeth.getUseListForRegister(reg);
97 int sz = useList.size();
99 SsaInsn useInsn = useList.get(i);
ConstCollector.java 318 final ArrayList<SsaInsn>[] useList = ssaMeth.getUseListCopy();
375 for (SsaInsn use : useList[origReg.getReg()]) {
SsaMethod.java 79 private ArrayList<SsaInsn>[] useList;
81 /** A version of useList with each List unmodifiable */
413 * Builds useList and unmodifiableUseList.
420 useList = new ArrayList[registerCount];
423 useList[i] = new ArrayList();
448 useList[rl.get(i).getReg()].add(insn);
456 unmodifiableUseList[i] = Collections.unmodifiableList(useList[i]);
470 if (useList == null) return;
474 useList[reg].remove(insn);
478 if (useList.length <= reg)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 154 List<SsaInsn> useList = ssaMeth.getUseListForRegister(regV);
156 for (SsaInsn insn : useList) {
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 275 milliseconds