FileDocCategorySizeDatePackage
Form32x.javaAPI DocAndroid 5.1 API2598Thu Mar 12 22:18:30 GMT 2015com.android.dexgen.dex.code.form

Form32x

public final class Form32x extends com.android.dexgen.dex.code.InsnFormat
Instruction format {@code 32x}. 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 Form32x()
Constructs an instance. This class is not publicly instantiable. Use {@link #THE_ONE}.


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

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

        RegisterSpecList regs = insn.getRegisters();
        return regs.get(0).regString() + ", " + regs.get(1).regString();
    
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}

        RegisterSpecList regs = insn.getRegisters();
        return (insn instanceof SimpleInsn) &&
            (regs.size() == 2) &&
            unsignedFitsInShort(regs.get(0).getReg()) &&
            unsignedFitsInShort(regs.get(1).getReg());
    
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}

        RegisterSpecList regs = insn.getRegisters();

        write(out,
              opcodeUnit(insn, 0),
              (short) regs.get(0).getReg(),
              (short) regs.get(1).getReg());