summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/instruction-def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/dalvik/instruction-def.h')
-rw-r--r--src/arch/dalvik/instruction-def.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/dalvik/instruction-def.h b/src/arch/dalvik/instruction-def.h
index 48d7e96..f389600 100644
--- a/src/arch/dalvik/instruction-def.h
+++ b/src/arch/dalvik/instruction-def.h
@@ -160,6 +160,7 @@ typedef enum _DalvikOpcodes
DOP_AND_INT, /* and-int (0x95) */
DOP_OR_INT, /* or-int (0x96) */
DOP_XOR_INT, /* xor-int (0x97) */
+ DOP_SHL_INT, /* shl-int (0x98) */
DOP_ADD_INT_2ADDR, /* add-int/2addr (0xb0) */
@@ -169,6 +170,7 @@ typedef enum _DalvikOpcodes
DOP_AND_INT_2ADDR, /* and-int/2addr (0xb5) */
DOP_OR_INT_2ADDR, /* or-int/2addr (0xb6) */
DOP_XOR_INT_2ADDR, /* xor-int/2addr (0xb7) */
+ DOP_SHL_INT_2ADDR, /* shl-int/2addr (0xb8) */
DOP_MUL_DOUBLE_2ADDR, /* mul-double/2addr (0xcd) */
@@ -188,6 +190,7 @@ typedef enum _DalvikOpcodes
DOP_AND_INT_LIT8, /* and-int/lit8 (0xdd) */
DOP_OR_INT_LIT8, /* or-int/lit8 (0xde) */
DOP_XOR_INT_LIT8, /* xor-int/lit8 (0xdf) */
+ DOP_SHL_INT_LIT8, /* shl-int/lit8 (0xe0) */
DOP_COUNT