summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog48
1 files changed, 48 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 733b96a..ab7c16f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,51 @@
+12-11-11 Cyrille Bagard <nocbos@gmail.com>
+
+ * src/arch/dalvik/instruction.c:
+ * src/arch/dalvik/instruction-def.h:
+ Register the remaining instructions for a full Dalvik opcodes support.
+
+ * src/arch/dalvik/opcodes/and.c:
+ * src/arch/dalvik/opcodes/array.c:
+ * src/arch/dalvik/opcodes/div.c:
+ Complete support for some kinds of instructions.
+
+ * src/arch/dalvik/opcodes/instanceof.c:
+ New entry: add support for the instance-of' opcode.
+
+ * src/arch/dalvik/opcodes/Makefile.am:
+ Add the instanceof.c, monitor.c, neg.c, not.c and throw.c files to
+ libarchdalvikopcodes_la_SOURCES.
+
+ * src/arch/dalvik/opcodes/monitor.c:
+ New entry: add support for the 'monitor' opcode.
+
+ * src/arch/dalvik/opcodes/move.c:
+ * src/arch/dalvik/opcodes/mul.c:
+ Complete support for some kinds of instructions.
+
+ * src/arch/dalvik/opcodes/neg.c:
+ * src/arch/dalvik/opcodes/not.c:
+ New entry: add support for the 'neg' and 'not' opcodes.
+
+ * src/arch/dalvik/opcodes/opcodes.h:
+ * src/arch/dalvik/opcodes/or.c:
+ * src/arch/dalvik/opcodes/rem.c:
+ * src/arch/dalvik/opcodes/sub.c:
+ Complete support for some kinds of instructions.
+
+ * src/arch/dalvik/opcodes/throw.c:
+ New entry: add support for the 'throw' opcode.
+
+ * src/arch/dalvik/opcodes/xor.c:
+ Complete support for some kinds of instructions.
+
+ * src/arch/dalvik/operand.c:
+ * src/arch/dalvik/operand.h:
+ Load operands of type '32x'.
+
+ * src/arch/dalvik/processor.c:
+ Update code with the new opcodes.
+
12-11-10 Cyrille Bagard <nocbos@gmail.com>
* src/gtkext/graph/node.c: