Home
last modified time | relevance | path

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

/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliInstruction.java99 SmaliInstruction previousInstruction = findPrevSiblingByClass(SmaliInstruction.class); in getOffset() local
100 if (previousInstruction == null) { in getOffset()
103 offset = previousInstruction.getOffset() + previousInstruction.getInstructionSize(); in getOffset()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java452 Instruction previousInstruction = previousLocation.instruction;
453 assert previousInstruction != null;
454 if (previousInstruction.getOpcode() == Opcode.NOP) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java1097 AnalyzedInstruction previousInstruction = null;
1099previousInstruction = analyzedInstructions.valueAt(analyzedInstruction.instructionIndex-1);
1101 … if (previousInstruction == null || !previousInstruction.instruction.getOpcode().setsResult()) {
1107 … ReferenceInstruction invokeInstruction = (ReferenceInstruction)previousInstruction.instruction;