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

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java514 BitSet instructionsToProcess = new BitSet(insns.length);
516 addPredecessorSuccessor(startOfMethod, instructions.valueAt(0), exceptionHandlers, instructionsToProcess);
517 while (!instructionsToProcess.isEmpty()) {
518 int currentInstructionIndex = instructionsToProcess.nextSetBit(0);
519 instructionsToProcess.clear(currentInstructionIndex);
534 addPredecessorSuccessor(instruction, nextInstruction, exceptionHandlers, instructionsToProcess);
550 instructionsToProcess);
556 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers, instructionsToProcess);
564 BitSet instructionsToProcess) {
565 addPredecessorSuccessor(predecessor, successor, exceptionHandlers, instructionsToProcess, fals
562 addPredecessorSuccessor(AnalyzedInstruction predecessor, AnalyzedInstruction successor, AnalyzedInstruction[][] exceptionHandlers, BitSet instructionsToProcess) argument
568 addPredecessorSuccessor(AnalyzedInstruction predecessor, AnalyzedInstruction successor, AnalyzedInstruction[][] exceptionHandlers, BitSet instructionsToProcess, boolean allowMoveException) argument
[all...]

Completed in 47 milliseconds