Home
last modified time | relevance | path

Searched refs:op (Results 1 – 13 of 13) sorted by relevance

/dalvik/opcode-gen/
Dbytecode.txt86 op 00 nop 10x n none continue
87 op 01 move 12x y none continue
88 op 02 move/from16 22x y none continue
89 op 03 move/16 32x y none continue
90 op 04 move-wide 12x y none continue
91 op 05 move-wide/from16 22x y none continue
92 op 06 move-wide/16 32x y none continue
93 op 07 move-object 12x y none continue
94 op 08 move-object/from16 22x y none continue
95 op 09 move-object/16 32x y none continue
[all …]
Dopcode-gen.awk357 function deriveOpcodeChains(i, op) {
367 op = findNextOpcode(i);
368 nextOpcode[i] = op;
369 if (op != -1) {
370 isFirst[op] = "false";
401 function createPackedTables(i, op) {
404 op = unpackOpcode(i);
405 if (isUnused(op)) {
406 packedName[i] = unusedName(op);
407 packedConstName[i] = unusedConstName(op);
[all …]
/dalvik/libdex/
DDexOpcodes.cpp295 const char* dexGetOpcodeName(Opcode op) in dexGetOpcodeName() argument
297 assert(op >= 0 && op < kNumPackedOpcodes); in dexGetOpcodeName()
298 return gOpNames[op]; in dexGetOpcodeName()
DDexOpcodes.h622 const char* dexGetOpcodeName(Opcode op);
/dalvik/dx/tests/001-nop/
Dinfo.txt1 This is a sample no-op test, which does at least serve to verify that the
/dalvik/dx/tests/072-dex-switch-edge-cases/
Dinfo.txt2 a bunch of switch op edge cases get converted reasonably.
/dalvik/dx/tests/045-dex-switch-ops/
Dinfo.txt2 both kinds of switch op get converted reasonably.
/dalvik/dx/tests/071-dex-java-stack-ops/
Dinfo.txt3 manipulation op translate reasonably.
/dalvik/dx/src/com/android/dx/cf/code/
DRopperMachine.java737 private void updateReturnOp(Rop op, SourcePosition pos) { in updateReturnOp() argument
738 if (op == null) { in updateReturnOp()
747 returnOp = op; in updateReturnOp()
750 if (returnOp != op) { in updateReturnOp()
751 throw new SimException("return op mismatch: " + op + ", " + in updateReturnOp()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DInsnFormat.java46 String op = insn.getOpcode().getName(); in listingString() local
51 sb.append(op); in listingString()
/dalvik/dx/src/com/android/dx/dex/code/
DInsnFormat.java56 String op = insn.getOpcode().getName(); in listingString() local
61 sb.append(op); in listingString()
/dalvik/dx/src/com/android/dx/ssa/
DEscapeAnalysis.java218 int op = insn.getOpcode().getOpcode(); in processInsn() local
223 if (op == RegOps.MOVE_RESULT_PSEUDO && in processInsn()
228 } else if (op == RegOps.MOVE_PARAM && in processInsn()
234 } else if (op == RegOps.MOVE_RESULT && in processInsn()
/dalvik/dx/tests/032-bb-live-code/
Dblort.j158 ; Test every non-branching op.