FileDocCategorySizeDatePackage
Form10x.javaAPI DocAndroid 5.1 API2171Thu Mar 12 22:18:28 GMT 2015com.android.dexgen.dex.code.form

Form10x

public final class Form10x extends com.android.dexgen.dex.code.InsnFormat
Instruction format {@code 10x}. See the instruction format spec for details.

Fields Summary
public static final com.android.dexgen.dex.code.InsnFormat
THE_ONE
{@code non-null;} unique instance of this class
Constructors Summary
private Form10x()
Constructs an instance. This class is not publicly instantiable. Use {@link #THE_ONE}.


                     
      
        // This space intentionally left blank.
    
Methods Summary
public intcodeSize()
{@inheritDoc}

        return 1;
    
public java.lang.StringinsnArgString(com.android.dexgen.dex.code.DalvInsn insn)
{@inheritDoc}

        // This format has no arguments.
        return "";
    
public java.lang.StringinsnCommentString(com.android.dexgen.dex.code.DalvInsn insn, boolean noteIndices)
{@inheritDoc}

        // This format has no comment.
        return "";
    
public booleanisCompatible(com.android.dexgen.dex.code.DalvInsn insn)
{@inheritDoc}

        return (insn instanceof SimpleInsn) &&
            (insn.getRegisters().size() == 0);
    
public com.android.dexgen.dex.code.InsnFormatnextUp()
{@inheritDoc}

        return null;
    
public voidwriteTo(com.android.dexgen.util.AnnotatedOutput out, com.android.dexgen.dex.code.DalvInsn insn)
{@inheritDoc}

        write(out, opcodeUnit(insn, 0));