Home | History | Annotate | Download | only in code

Lines Matching defs:rop

19 import com.android.dexgen.rop.code.Insn;
20 import com.android.dexgen.rop.code.RegOps;
21 import com.android.dexgen.rop.code.RegisterSpec;
22 import com.android.dexgen.rop.code.Rop;
23 import com.android.dexgen.rop.code.Rops;
24 import com.android.dexgen.rop.code.ThrowingCstInsn;
25 import com.android.dexgen.rop.cst.Constant;
26 import com.android.dexgen.rop.cst.CstFieldRef;
27 import com.android.dexgen.rop.cst.CstString;
28 import com.android.dexgen.rop.cst.CstType;
29 import com.android.dexgen.rop.type.Type;
34 * Translator from rop-level {@link Insn} instances to corresponding
39 private static final HashMap<Rop, Dop> MAP;
54 MAP = new HashMap<Rop, Dop>(400);
286 Rop rop = insn.getOpcode();
289 * First, just try looking up the rop in the MAP of easy
292 Dop result = MAP.get(rop);
298 * There was no easy case for the rop, so look up the opcode, and
314 switch (rop.getOpcode()) {
413 throw new RuntimeException("unknown rop: " + rop);