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

/dalvik/dx/src/com/android/dx/ssa/
H A DPhiTypeResolver.java47 private final BitSet worklist; field in class:PhiTypeResolver
59 worklist = new BitSet(ssaMeth.getRegCount());
74 worklist.set(reg);
79 while ( 0 <= (reg = worklist.nextSetBit(0))) {
80 worklist.clear(reg);
83 * definitions on the worklist have a type of BT_VOID, which
101 worklist.set(resultReg.getReg());
H A DDeadCodeRemover.java42 private final BitSet worklist; field in class:DeadCodeRemover
66 worklist = new BitSet(regCount);
78 ssaMeth.forEachInsn(new NoSideEffectVisitor(worklist));
82 while ( 0 <= (regV = worklist.nextSetBit(0)) ) {
83 worklist.clear(regV);
108 * should be added back to the worklist.
110 worklist.set(source.getReg());
218 * prevents us from adding this back to a worklist unnecessarally.
227 * A callback class used to build up the initial worklist of

Completed in 19 milliseconds