Searched refs:GOTO (Results 1 - 25 of 26) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRegOps.java53 public static final int GOTO = 6; field in class:RegOps
319 case GOTO: return "goto";
H A DRops.java119 public static final Rop GOTO = field in class:Rops
120 new Rop(RegOps.GOTO, Type.VOID, StdTypeList.EMPTY, Rop.BRANCH_GOTO,
1130 case RegOps.GOTO: return GOTO;
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegOps.java53 public static final int GOTO = 6; field in class:RegOps
319 case GOTO: return "goto";
H A DRops.java119 public static final Rop GOTO = field in class:Rops
120 new Rop(RegOps.GOTO, Type.VOID, StdTypeList.EMPTY, Rop.BRANCH_GOTO,
1130 case RegOps.GOTO: return GOTO;
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopperMachine.java567 insn = new PlainInsn(Rops.GOTO, pos, null,
590 insn = new PlainInsn(Rops.GOTO, pos, null, RegisterSpecList.EMPTY);
887 case ByteOps.GOTO: {
888 return RegOps.GOTO;
H A DValueAwareMachine.java61 case ByteOps.GOTO:
H A DRopper.java909 il.set(1, new PlainInsn(Rops.GOTO,
946 insns.add(new PlainInsn(Rops.GOTO, pos, null,
1044 insns.set(sz, new PlainInsn(Rops.GOTO, pos, null,
1071 insns.set(1, new PlainInsn(Rops.GOTO, pos, null,
1222 insn = new PlainInsn(Rops.GOTO, pos, null,
H A DBasicBlocker.java218 case ByteOps.GOTO: {
H A DByteOps.java194 public static final int GOTO = 0xa7; field in class:ByteOps
H A DSimulator.java726 case ByteOps.GOTO:
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDops.java223 public static final Dop GOTO = field in class:Dops
224 new Dop(DalvOps.GOTO, DalvOps.GOTO,
228 new Dop(DalvOps.GOTO_16, DalvOps.GOTO,
232 new Dop(DalvOps.GOTO_32, DalvOps.GOTO,
984 set(GOTO);
H A DOutputFinisher.java680 if (dop.getFamily() == DalvOps.GOTO) {
724 new TargetInsn(Dops.GOTO, target.getPosition(),
H A DRopToDop.java89 MAP.put(Rops.GOTO, Dops.GOTO);
H A DDalvOps.java74 public static final int GOTO = 0x28; field in class:DalvOps
H A DRopTranslator.java293 new TargetInsn(Dops.GOTO, lastInsn.getPosition(),
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputFinisher.java723 if (opcode.getFamily() == Opcodes.GOTO) {
765 new TargetInsn(Dops.GOTO, target.getPosition(),
H A DDops.java226 public static final Dop GOTO = field in class:Dops
227 new Dop(Opcodes.GOTO, Opcodes.GOTO,
231 new Dop(Opcodes.GOTO_16, Opcodes.GOTO,
235 new Dop(Opcodes.GOTO_32, Opcodes.GOTO,
987 set(GOTO);
H A DRopToDop.java85 // Opcodes.GOTO
260 MAP.put(Rops.GOTO, Dops.GOTO);
H A DRopTranslator.java299 new TargetInsn(Dops.GOTO, lastInsn.getPosition(),
/dalvik/dx/src/com/android/dx/io/
H A DOpcodes.java84 public static final int GOTO = 0x28; field in class:Opcodes
H A DOpcodeInfo.java222 public static final Info GOTO = field in class:OpcodeInfo
223 new Info(Opcodes.GOTO, "goto",
989 set(GOTO);
/dalvik/dx/src/com/android/dx/ssa/
H A DLiteralOpUpgrader.java166 RegOps.GOTO, null);
H A DSsaMethod.java218 * Gets a new {@code GOTO} insn.
220 * @param block block to which this GOTO will be added
226 new PlainInsn(Rops.GOTO, SourcePosition.NO_INFO,
232 * a single {@code GOTO}. Successors and predecessors are not yet
835 // Check to see if we need to add a GOTO
846 Insn gotoInsn = new PlainInsn(Rops.GOTO,
H A DSCCP.java675 block.replaceLastInsn(new PlainInsn(Rops.GOTO,
/dalvik/dx/src/com/android/dx/ssa/back/
H A DSsaToRop.java146 && (insns.get(0).getOpcode() == Rops.GOTO)) {

Completed in 1193 milliseconds

12