diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -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: |