summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/instruction.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/dalvik/instruction.c')
-rw-r--r--src/arch/dalvik/instruction.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/dalvik/instruction.c b/src/arch/dalvik/instruction.c
index 051bbe2..4595193 100644
--- a/src/arch/dalvik/instruction.c
+++ b/src/arch/dalvik/instruction.c
@@ -73,6 +73,7 @@ static dalvik_instruction _instructions[DOP_COUNT] = {
[DOP_NOP] = { 0x00, "nop" },
[DOP_MOVE] = { 0x01, "move" },
+ [DOP_MOVE_FROM_16] = { 0x02, "move/from16" },
[DOP_MOVE_OBJECT] = { 0x07, "move-object" },
@@ -101,6 +102,9 @@ static dalvik_instruction _instructions[DOP_COUNT] = {
[DOP_NEW_INSTANCE] = { 0x22, "new-instance" },
[DOP_NEW_ARRAY] = { 0x23, "new-array" },
+
+ [DOP_FILL_ARRAY_DATA] = { 0x26, "fill-array-data" },
+
[DOP_GOTO] = { 0x28, "goto" },
[DOP_GOTO_16] = { 0x29, "goto/16" },
[DOP_GOTO_32] = { 0x2a, "goto/32" },