RegisterRangeDecodedInstructionpublic final class RegisterRangeDecodedInstruction extends DecodedInstruction A decoded Dalvik instruction which has register range arguments (an
"A" start register and a register count). |
Fields Summary |
---|
private final int | aregister argument "A" | private final int | registerCountregister count |
Constructors Summary |
---|
public RegisterRangeDecodedInstruction(InstructionCodec format, int opcode, int index, com.android.dx.io.IndexType indexType, int target, long literal, int a, int registerCount)Constructs an instance.
super(format, opcode, index, indexType, target, literal);
this.a = a;
this.registerCount = registerCount;
|
Methods Summary |
---|
public int | getA()
return a;
| public int | getRegisterCount()
return registerCount;
| public DecodedInstruction | withIndex(int newIndex)
return new RegisterRangeDecodedInstruction(
getFormat(), getOpcode(), newIndex, getIndexType(),
getTarget(), getLiteral(), a, registerCount);
|
|