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

RegisterRangeDecodedInstruction

public 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
a
register argument "A"
private final int
registerCount
register 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 intgetA()

inheritDoc

        return a;
    
public intgetRegisterCount()

inheritDoc

        return registerCount;
    
public DecodedInstructionwithIndex(int newIndex)

inheritDoc

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