ZeroRegisterDecodedInstructionpublic final class ZeroRegisterDecodedInstruction extends DecodedInstruction A decoded Dalvik instruction which has no register arguments. |
Constructors Summary |
---|
public ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, com.android.dx.io.IndexType indexType, int target, long literal)Constructs an instance.
super(format, opcode, index, indexType, target, literal);
|
Methods Summary |
---|
public int | getRegisterCount()
return 0;
| public DecodedInstruction | withIndex(int newIndex)
return new ZeroRegisterDecodedInstruction(
getFormat(), getOpcode(), newIndex, getIndexType(),
getTarget(), getLiteral());
|
|