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