FileDocCategorySizeDatePackage
SimpleInsn.javaAPI DocAndroid 5.1 API1946Thu Mar 12 22:18:28 GMT 2015com.android.dexgen.dex.code

SimpleInsn

public final class SimpleInsn extends FixedSizeInsn
Instruction which has no extra info beyond the basics provided for in the base class.

Fields Summary
Constructors Summary
public SimpleInsn(Dop opcode, com.android.dexgen.rop.code.SourcePosition position, com.android.dexgen.rop.code.RegisterSpecList registers)
Constructs an instance. The output address of this instance is initially unknown ({@code -1}).

param
opcode the opcode; one of the constants from {@link Dops}
param
position {@code non-null;} source position
param
registers {@code non-null;} register list, including a result register if appropriate (that is, registers may be either ins or outs)

        super(opcode, position, registers);
    
Methods Summary
protected java.lang.StringargString()
{@inheritDoc}

        return null;
    
public DalvInsnwithOpcode(Dop opcode)
{@inheritDoc}

        return new SimpleInsn(opcode, getPosition(), getRegisters());
    
public DalvInsnwithRegisters(com.android.dexgen.rop.code.RegisterSpecList registers)
{@inheritDoc}

        return new SimpleInsn(getOpcode(), getPosition(), registers);