Home
last modified time | relevance | path

Searched refs:instructionToAnalyze (Results 1 – 1 of 1) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java192 AnalyzedInstruction instructionToAnalyze = analyzedInstructions.valueAt(i); in analyze() local
194 if (instructionToAnalyze.originalInstruction.getOpcode().odexOnly()) { in analyze()
198 instructionToAnalyze.restoreOdexedInstruction(); in analyze()
201 if (!analyzeInstruction(instructionToAnalyze)) { in analyze()
210 int codeAddress = getInstructionAddress(instructionToAnalyze); in analyze()
212 … ex.addContext(String.format("opcode: %s", instructionToAnalyze.instruction.getOpcode().name)); in analyze()
218 analyzedState.set(instructionToAnalyze.getInstructionIndex()); in analyze()
220 for (AnalyzedInstruction successor: instructionToAnalyze.successors) { in analyze()