summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/instruction-def.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2011-12-25 23:50:05 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2011-12-25 23:50:05 (GMT)
commit4b2eec0832a6a9ed5b1d1344f7d32faa27069932 (patch)
tree27e3a658efc9cdd3b7c56d3cef2a68c43b666a67 /src/arch/dalvik/instruction-def.h
parentf3fbc63705650ede6b04ab217eacb5302e8c325e (diff)
Supported a few more shl-related opcodes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@218 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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