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

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java430 BitSet changedInstructions = new BitSet(instructions.size());
436 propagateRegisterToSuccessors(analyzedInstruction, registerNumber, changedInstructions);
444 while (!changedInstructions.isEmpty()) {
445 for (int instructionIndex=changedInstructions.nextSetBit(0);
447 instructionIndex=changedInstructions.nextSetBit(instructionIndex+1)) {
449 changedInstructions.clear(instructionIndex);
452 changedInstructions);
468 BitSet changedInstructions) {
472 changedInstructions.set(successor.instructionIndex);
467 propagateRegisterToSuccessors(AnalyzedInstruction instruction, int registerNumber, BitSet changedInstructions) argument

Completed in 5874 milliseconds