FileDocCategorySizeDatePackage
ZeroRegisterDecodedInstruction.javaAPI DocAndroid 5.1 API1456Thu Mar 12 22:18:30 GMT 2015com.android.dx.io.instructions

ZeroRegisterDecodedInstruction

public final class ZeroRegisterDecodedInstruction extends DecodedInstruction
A decoded Dalvik instruction which has no register arguments.

Fields Summary
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 intgetRegisterCount()

inheritDoc

        return 0;
    
public DecodedInstructionwithIndex(int newIndex)

inheritDoc

        return new ZeroRegisterDecodedInstruction(
                getFormat(), getOpcode(), newIndex, getIndexType(),
                getTarget(), getLiteral());