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

FiveRegisterDecodedInstruction

public final class FiveRegisterDecodedInstruction extends DecodedInstruction
A decoded Dalvik instruction which has five register arguments.

Fields Summary
private final int
a
register argument "A"
private final int
b
register argument "B"
private final int
c
register argument "C"
private final int
d
register argument "D"
private final int
e
register argument "E"
Constructors Summary
public FiveRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, com.android.dx.io.IndexType indexType, int target, long literal, int a, int b, int c, int d, int e)
Constructs an instance.

        super(format, opcode, index, indexType, target, literal);

        this.a = a;
        this.b = b;
        this.c = c;
        this.d = d;
        this.e = e;
    
Methods Summary
public intgetA()

inheritDoc

        return a;
    
public intgetB()

inheritDoc

        return b;
    
public intgetC()

inheritDoc

        return c;
    
public intgetD()

inheritDoc

        return d;
    
public intgetE()

inheritDoc

        return e;
    
public intgetRegisterCount()

inheritDoc

        return 5;
    
public DecodedInstructionwithIndex(int newIndex)

inheritDoc

        return new FiveRegisterDecodedInstruction(
                getFormat(), getOpcode(), newIndex, getIndexType(),
                getTarget(), getLiteral(), a, b, c, d, e);