HomeSort by relevance Sort by last modified time
    Searched full:rops (Results 1 - 18 of 18) sorted by null

  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 22 import com.android.dx.rop.code.Rops;
38 /** {@code non-null;} map from all the common rops to dalvik opcodes */
55 MAP.put(Rops.NOP, Dops.NOP);
56 MAP.put(Rops.MOVE_INT, Dops.MOVE);
57 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE);
58 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
59 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE);
60 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT);
61 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE);
62 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 27 import com.android.dx.rop.code.Rops;
338 insns.add(new PlainInsn(Rops.opMove(type), pos, scratch, src));
347 insns.add(new PlainInsn(Rops.opMove(type), pos,
374 rop = Rops.opFilledNewArray(Type.INT_ARRAY, sourceCount);
380 rop = Rops.opMoveResult(Type.INT_ARRAY);
411 insn = new ThrowingCstInsn(Rops.GET_STATIC_OBJECT, pos,
419 insn = new ThrowingCstInsn(Rops.CONST_OBJECT, pos,
427 rop = Rops.opMoveResultPseudo(classReg.getType());
443 Rops.opInvokeStatic(MULTIANEWARRAY_METHOD.getPrototype()),
449 rop = Rops.opMoveResult(MULTIANEWARRAY_METHOD.getPrototype(
    [all...]
Ropper.java 895 il.set(1, new PlainInsn(Rops.GOTO,
932 insns.add(new PlainInsn(Rops.GOTO, pos, null,
    [all...]
  /dalvik/dx/src/com/android/dx/rop/
package-info.java 44 * {@link Rops}. The rest are constructed dynamically using static methods
45 * in {@code Rops}
81 * no other terminating opcode is appropriate, use a {@link Rops#GOTO GOTO}.<p>
85 * For {Rops#isCallLike}call or call-like} opcodes, this is the path taken
88 * {@link Rops#IF_EQZ_INT}, the primary successor represents the path taken
104 * example of this is a block that terminates in a {@link Rops#THROW throw}
123 * Rops#MOVE_RESULT move-result} or {@link Rops#MOVE_RESULT_PSEUDO
  /dalvik/dx/src/com/android/dx/ssa/
ConstCollector.java 103 Rop constRop = Rops.opConst(cst);
107 new PlainCstInsn(Rops.opConst(cst),
131 Rops.opMoveResultPseudo(result.getTypeBearer()),
289 new PlainInsn(Rops.opMarkLocal(newReg),
LiteralOpUpgrader.java 25 import com.android.dx.rop.code.Rops;
146 Rop newRop = Rops.ropFor(newOpcode,
SsaBasicBlock.java 28 import com.android.dx.rop.code.Rops;
617 new PlainInsn(Rops.opMove(result.getType()),
640 new PlainInsn(Rops.opMove(result.getType()),
759 new PlainInsn(Rops.opMove(result.getType()),
769 new PlainInsn(Rops.opMove(result.getType()),
952 Rops.opMove(tempSpec.getType()),
    [all...]
DeadCodeRemover.java 24 import com.android.dx.rop.code.Rops;
EscapeAnalysis.java 28 import com.android.dx.rop.code.Rops;
    [all...]
SsaMethod.java 27 import com.android.dx.rop.code.Rops;
227 new PlainInsn(Rops.GOTO, SourcePosition.NO_INFO,
847 Insn gotoInsn = new PlainInsn(Rops.GOTO,
SsaRenamer.java 23 import com.android.dx.rop.code.Rops;
562 new PlainInsn(Rops.opMarkLocal(ssaReg),
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 22 import com.android.dx.rop.code.Rops;
165 new PlainInsn(Rops.opMove(newRegSpec.getType()),
SsaToRop.java 27 import com.android.dx.rop.code.Rops;
153 && (insns.get(0).getOpcode() == Rops.GOTO)) {
292 && opcode != Rops.THROW) {
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 118 newRop = Rops.ropFor(getOpcode().getOpcode(),
Rop.java 365 * unimportant) or not. All commutative Rops have exactly two sources and
Rops.java 32 public final class Rops {
    [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
ddraw.h 216 DWORD dwRops[DD_ROP_SPACE]; // ROPS supported
230 DWORD dwSVBRops[DD_ROP_SPACE];// ROPS supported for System->Vmem blts
234 DWORD dwVSBRops[DD_ROP_SPACE];// ROPS supported for Vmem->System blts
238 DWORD dwSSBRops[DD_ROP_SPACE];// ROPS supported for System->System blts
    [all...]
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DDRAW.H 216 DWORD dwRops[DD_ROP_SPACE]; // ROPS supported
230 DWORD dwSVBRops[DD_ROP_SPACE];// ROPS supported for System->Vmem blts
234 DWORD dwVSBRops[DD_ROP_SPACE];// ROPS supported for Vmem->System blts
238 DWORD dwSSBRops[DD_ROP_SPACE];// ROPS supported for System->System blts
    [all...]

Completed in 223 milliseconds