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

OneRegisterDecodedInstruction

public final class OneRegisterDecodedInstruction extends DecodedInstruction
A decoded Dalvik instruction which has one register argument.

Fields Summary
private final int
a
register 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 intgetA()

inheritDoc

        return a;
    
public intgetRegisterCount()

inheritDoc

        return 1;
    
public DecodedInstructionwithIndex(int newIndex)

inheritDoc

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