Search in sources :

Example 31 with CstInsn

use of com.android.dx.dex.code.CstInsn in project J2ME-Loader by nikita36078.

the class Form35c method isCompatible.

/**
 * {@inheritDoc}
 */
@Override
public boolean isCompatible(DalvInsn insn) {
    if (!(insn instanceof CstInsn)) {
        return false;
    }
    CstInsn ci = (CstInsn) insn;
    int cpi = ci.getIndex();
    if (!unsignedFitsInShort(cpi)) {
        return false;
    }
    Constant cst = ci.getConstant();
    if (!((cst instanceof CstMethodRef) || (cst instanceof CstType))) {
        return false;
    }
    RegisterSpecList regs = ci.getRegisters();
    return (wordCount(regs) >= 0);
}
Also used : CstInsn(com.android.dx.dex.code.CstInsn) Constant(com.android.dx.rop.cst.Constant) CstType(com.android.dx.rop.cst.CstType) CstMethodRef(com.android.dx.rop.cst.CstMethodRef) RegisterSpecList(com.android.dx.rop.code.RegisterSpecList)

Example 32 with CstInsn

use of com.android.dx.dex.code.CstInsn in project J2ME-Loader by nikita36078.

the class Form35c method writeTo.

/**
 * {@inheritDoc}
 */
@Override
public void writeTo(AnnotatedOutput out, DalvInsn insn) {
    int cpi = ((CstInsn) insn).getIndex();
    RegisterSpecList regs = explicitize(insn.getRegisters());
    int sz = regs.size();
    int r0 = (sz > 0) ? regs.get(0).getReg() : 0;
    int r1 = (sz > 1) ? regs.get(1).getReg() : 0;
    int r2 = (sz > 2) ? regs.get(2).getReg() : 0;
    int r3 = (sz > 3) ? regs.get(3).getReg() : 0;
    int r4 = (sz > 4) ? regs.get(4).getReg() : 0;
    write(out, opcodeUnit(insn, // encode the fifth operand here
    makeByte(r4, sz)), (short) cpi, codeUnit(r0, r1, r2, r3));
}
Also used : CstInsn(com.android.dx.dex.code.CstInsn) RegisterSpecList(com.android.dx.rop.code.RegisterSpecList)

Example 33 with CstInsn

use of com.android.dx.dex.code.CstInsn in project J2ME-Loader by nikita36078.

the class Form3rc method isCompatible.

/**
 * {@inheritDoc}
 */
@Override
public boolean isCompatible(DalvInsn insn) {
    if (!(insn instanceof CstInsn)) {
        return false;
    }
    CstInsn ci = (CstInsn) insn;
    int cpi = ci.getIndex();
    Constant cst = ci.getConstant();
    if (!unsignedFitsInShort(cpi)) {
        return false;
    }
    if (!((cst instanceof CstMethodRef) || (cst instanceof CstType))) {
        return false;
    }
    RegisterSpecList regs = ci.getRegisters();
    int sz = regs.size();
    return (regs.size() == 0) || (isRegListSequential(regs) && unsignedFitsInShort(regs.get(0).getReg()) && unsignedFitsInByte(regs.getWordCount()));
}
Also used : CstInsn(com.android.dx.dex.code.CstInsn) Constant(com.android.dx.rop.cst.Constant) CstType(com.android.dx.rop.cst.CstType) CstMethodRef(com.android.dx.rop.cst.CstMethodRef) RegisterSpecList(com.android.dx.rop.code.RegisterSpecList)

Example 34 with CstInsn

use of com.android.dx.dex.code.CstInsn in project J2ME-Loader by nikita36078.

the class Form51l method isCompatible.

/**
 * {@inheritDoc}
 */
@Override
public boolean isCompatible(DalvInsn insn) {
    RegisterSpecList regs = insn.getRegisters();
    if (!((insn instanceof CstInsn) && (regs.size() == 1) && unsignedFitsInByte(regs.get(0).getReg()))) {
        return false;
    }
    CstInsn ci = (CstInsn) insn;
    Constant cst = ci.getConstant();
    return (cst instanceof CstLiteral64);
}
Also used : CstInsn(com.android.dx.dex.code.CstInsn) Constant(com.android.dx.rop.cst.Constant) CstLiteral64(com.android.dx.rop.cst.CstLiteral64) RegisterSpecList(com.android.dx.rop.code.RegisterSpecList)

Aggregations

CstInsn (com.android.dx.dex.code.CstInsn)34 RegisterSpecList (com.android.dx.rop.code.RegisterSpecList)34 Constant (com.android.dx.rop.cst.Constant)24 CstLiteralBits (com.android.dx.rop.cst.CstLiteralBits)12 CstType (com.android.dx.rop.cst.CstType)10 CstFieldRef (com.android.dx.rop.cst.CstFieldRef)6 RegisterSpec (com.android.dx.rop.code.RegisterSpec)4 CstMethodRef (com.android.dx.rop.cst.CstMethodRef)4 CstString (com.android.dx.rop.cst.CstString)4 CstLiteral64 (com.android.dx.rop.cst.CstLiteral64)2