HomeSort by relevance Sort by last modified time
    Searched refs:APUT (Results 1 - 25 of 37) sorted by null

1 2

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 190 public static final int APUT = 39;
352 case APUT: return "aput";
Rops.java 702 new Rop(RegOps.APUT, Type.VOID, StdTypeList.INT_INTARR_INT,
703 Exceptions.LIST_Error_Null_ArrayIndexOutOfBounds, "aput-int");
707 new Rop(RegOps.APUT, Type.VOID, StdTypeList.LONG_LONGARR_INT,
708 Exceptions.LIST_Error_Null_ArrayIndexOutOfBounds, "aput-long");
712 new Rop(RegOps.APUT, Type.VOID, StdTypeList.FLOAT_FLOATARR_INT,
714 "aput-float");
718 new Rop(RegOps.APUT, Type.VOID, StdTypeList.DOUBLE_DOUBLEARR_INT,
720 "aput-double");
724 new Rop(RegOps.APUT, Type.VOID, StdTypeList.OBJECT_OBJECTARR_INT,
726 "aput-object")
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 190 public static final int APUT = 39;
352 case APUT: return "aput";
Rops.java 702 new Rop(RegOps.APUT, Type.VOID, StdTypeList.INT_INTARR_INT,
703 Exceptions.LIST_Error_Null_ArrayIndexOutOfBounds, "aput-int");
707 new Rop(RegOps.APUT, Type.VOID, StdTypeList.LONG_LONGARR_INT,
708 Exceptions.LIST_Error_Null_ArrayIndexOutOfBounds, "aput-long");
712 new Rop(RegOps.APUT, Type.VOID, StdTypeList.FLOAT_FLOATARR_INT,
714 "aput-float");
718 new Rop(RegOps.APUT, Type.VOID, StdTypeList.DOUBLE_DOUBLEARR_INT,
720 "aput-double");
724 new Rop(RegOps.APUT, Type.VOID, StdTypeList.OBJECT_OBJECTARR_INT,
726 "aput-object")
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegOps.java 190 public static final int APUT = 39;
352 case APUT: return "aput";
Rops.java 702 new Rop(RegOps.APUT, Type.VOID, StdTypeList.INT_INTARR_INT,
703 Exceptions.LIST_Error_Null_ArrayIndexOutOfBounds, "aput-int");
707 new Rop(RegOps.APUT, Type.VOID, StdTypeList.LONG_LONGARR_INT,
708 Exceptions.LIST_Error_Null_ArrayIndexOutOfBounds, "aput-long");
712 new Rop(RegOps.APUT, Type.VOID, StdTypeList.FLOAT_FLOATARR_INT,
714 "aput-float");
718 new Rop(RegOps.APUT, Type.VOID, StdTypeList.DOUBLE_DOUBLEARR_INT,
720 "aput-double");
724 new Rop(RegOps.APUT, Type.VOID, StdTypeList.OBJECT_OBJECTARR_INT,
726 "aput-object")
    [all...]
  /art/compiler/dex/
global_value_numbering_test.cc     [all...]
local_value_numbering_test.cc 495 DEF_APUT(Instruction::APUT, 0u, 200u, 300u),
496 DEF_APUT(Instruction::APUT, 0u, 200u, 301u),
497 DEF_APUT(Instruction::APUT, 0u, 201u, 300u),
498 DEF_APUT(Instruction::APUT, 0u, 201u, 301u),
530 DEF_APUT(Instruction::APUT, 2u, 20u, 41u), // May alias with index for sreg 40u.
607 DEF_APUT(Instruction::APUT, 9u, 32u, 40u), // May alias with all elements.
644 DEF_APUT(Instruction::APUT, 5u, 33u, 40u), // Store the same value.
658 DEF_APUT(Instruction::APUT, 19u, 51u, 41u), // Store the same value.
local_value_numbering.cc 46 static constexpr uint16_t kMergeBlockNonAliasingArrayVersionBumpOp = Instruction::APUT;
    [all...]
frontend.cc 233 Instruction::APUT,
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 113 public static final int APUT = 0x4b;
OpcodeInfo.java 338 public static final Info APUT =
339 new Info(Opcodes.APUT, "aput",
343 new Info(Opcodes.APUT_WIDE, "aput-wide",
347 new Info(Opcodes.APUT_OBJECT, "aput-object",
351 new Info(Opcodes.APUT_BOOLEAN, "aput-boolean",
355 new Info(Opcodes.APUT_BYTE, "aput-byte",
359 new Info(Opcodes.APUT_CHAR, "aput-char",
363 new Info(Opcodes.APUT_SHORT, "aput-short",
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 221 MAP.put(Rops.APUT_INT, Dops.APUT);
223 MAP.put(Rops.APUT_FLOAT, Dops.APUT);
DalvOps.java 109 public static final int APUT = 0x4b;
Dops.java 339 public static final Dop APUT =
340 new Dop(DalvOps.APUT, DalvOps.APUT,
341 Form23x.THE_ONE, false, "aput");
345 Form23x.THE_ONE, false, "aput-wide");
349 Form23x.THE_ONE, false, "aput-object");
353 Form23x.THE_ONE, false, "aput-boolean");
357 Form23x.THE_ONE, false, "aput-byte");
361 Form23x.THE_ONE, false, "aput-char");
365 Form23x.THE_ONE, false, "aput-short")
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 112 // Opcodes.APUT
392 MAP.put(Rops.APUT_INT, Dops.APUT);
394 MAP.put(Rops.APUT_FLOAT, Dops.APUT);
Dops.java 342 public static final Dop APUT =
343 new Dop(Opcodes.APUT, Opcodes.APUT,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopToDop.java 113 // Opcodes.APUT
393 MAP.put(Rops.APUT_INT, Dops.APUT);
395 MAP.put(Rops.APUT_FLOAT, Dops.APUT);
Dops.java 345 public static final Dop APUT =
346 new Dop(Opcodes.APUT, Opcodes.APUT,
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/
Opcodes.java 113 public static final int APUT = 0x4b;
OpcodeInfo.java 338 public static final Info APUT =
339 new Info(Opcodes.APUT, "aput",
343 new Info(Opcodes.APUT_WIDE, "aput-wide",
347 new Info(Opcodes.APUT_OBJECT, "aput-object",
351 new Info(Opcodes.APUT_BOOLEAN, "aput-boolean",
355 new Info(Opcodes.APUT_BYTE, "aput-byte",
359 new Info(Opcodes.APUT_CHAR, "aput-char",
363 new Info(Opcodes.APUT_SHORT, "aput-short",
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 408 case RegOps.APUT:
591 case RegOps.APUT:
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 409 case RegOps.APUT:
592 case RegOps.APUT:
    [all...]
  /art/runtime/
common_throws.cc 479 case Instruction::APUT:
  /art/compiler/optimizing/
builder.cc 740 case Instruction::APUT##kind: { \

Completed in 198 milliseconds

1 2