Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/formats/
DInstruction3rc.java35 import org.jf.dexlib2.iface.instruction.RegisterRangeInstruction;
37 public interface Instruction3rc extends RegisterRangeInstruction, ReferenceInstruction {
DInstruction3rmi.java35 import org.jf.dexlib2.iface.instruction.RegisterRangeInstruction;
37 public interface Instruction3rmi extends RegisterRangeInstruction, InlineIndexInstruction {
DInstruction3rms.java34 import org.jf.dexlib2.iface.instruction.RegisterRangeInstruction;
37 public interface Instruction3rms extends RegisterRangeInstruction, VtableIndexInstruction {
DInstruction4rcc.java35 import org.jf.dexlib2.iface.instruction.RegisterRangeInstruction;
37 public interface Instruction4rcc extends RegisterRangeInstruction, DualReferenceInstruction {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DAnalyzedInstruction.java354 assert instruction instanceof RegisterRangeInstruction;
355 RegisterRangeInstruction rangeInstruction = (RegisterRangeInstruction)instruction;
496 assert instruction instanceof RegisterRangeInstruction;
497 RegisterRangeInstruction rangeInstruction = (RegisterRangeInstruction)instruction;
DMethodAnalyzer.java274 … objectRegisterNumber = ((RegisterRangeInstruction)instruction).getStartRegister(); in analyze()
1410RegisterRangeInstruction instruction = (RegisterRangeInstruction)analyzedInstruction.instruction;
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DPreInstructionRegisterInfoMethodItem.java108 if (analyzedInstruction.getInstruction() instanceof RegisterRangeInstruction) { in addArgsRegs()
109RegisterRangeInstruction instruction = (RegisterRangeInstruction)analyzedInstruction.getInstructio… in addArgsRegs()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
DRegisterRangeInstruction.java34 public interface RegisterRangeInstruction extends VariableRegisterInstruction { interface
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItem.java477 RegisterRangeInstruction instruction = (RegisterRangeInstruction)this.instruction; in writeInvokeRangeRegisters()