diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-05-17 22:59:55 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-05-17 22:59:55 (GMT) |
commit | 4d0ff0c23862c242d533d9b2d34e8812ef99ad61 (patch) | |
tree | 3b8504b8d3946a8bc9a702b819138ab1e5501be6 /ChangeLog | |
parent | 96cb6971ee3ca529958b8cb1e8e55a6eb4e60eae (diff) |
Used only the new format of processor/instructions/operands for x86.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@64 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 108 |
1 files changed, 108 insertions, 0 deletions
@@ -1,3 +1,111 @@ +09-05-18 Cyrille Bagard <nocbos@gmail.com> + + * src/analysis/binary.c: + * src/analysis/binary.h: + Remove dead code (with the old asm_processor structure). + + * src/arch/archbase.h: + Define AsmSyntax here. + + * src/arch/immediate.c: + * src/arch/immediate.h: + Fix a bug with signed values (uint*_t -> int*_t). Load more values, + thanks to more ways. Create the g_imm_operand_is_negative() function. + + * src/arch/instruction.c: + * src/arch/instruction.h: + Remove the old code (asm_* structures). + + * src/arch/instruction-int.h: + * src/arch/jvm/instruction.c: + * src/arch/jvm/instruction.h: + * src/arch/jvm/operand.c: + * src/arch/jvm/processor.c: + Typo. + + * src/arch/Makefile.am: + Add x86/libarchx86.la to libarch_la_LIBADD and put x86 in SUBDIRS back. + + * src/arch/operand.c: + * src/arch/operand.h: + * src/arch/operand-int.h: + Clean the code. + + * src/arch/processor.c: + * src/arch/processor.h: + Clean the code ; load the X86 processor. + + * src/arch/processor-int.h: + Clean the code. + + * src/arch/x86/instruction.h: + Clean the code ; use only the new format of processor/instructions/operands + for x86. + + * src/arch/x86/Makefile.am: + Temporarily remove op_movsx.c and op_movzx.c from and add op_xchg.c + to libarchx86_la_SOURCES. + + * src/arch/x86/op_adc.c: + * src/arch/x86/op_add.c: + * src/arch/x86/op_and.c: + * src/arch/x86/op_call.c: + * src/arch/x86/op_cld.c: + * src/arch/x86/op_cmp.c: + * src/arch/x86/opcodes.h: + * src/arch/x86/op_dec.c: + * src/arch/x86/operand.c: + * src/arch/x86/operand.h: + * src/arch/x86/op_hlt.c: + * src/arch/x86/op_inc.c: + * src/arch/x86/op_int.c: + * src/arch/x86/op_jump.c: + * src/arch/x86/op_lea.c: + * src/arch/x86/op_leave.c: + * src/arch/x86/op_mov.c: + * src/arch/x86/op_movsx.c: + * src/arch/x86/op_movzx.c: + * src/arch/x86/op_nop.c: + * src/arch/x86/op_not.c: + * src/arch/x86/op_or.c: + * src/arch/x86/op_pop.c: + * src/arch/x86/op_push.c: + * src/arch/x86/op_rcl.c: + * src/arch/x86/op_rcr.c: + * src/arch/x86/op_ret.c: + * src/arch/x86/op_rol.c: + * src/arch/x86/op_ror.c: + * src/arch/x86/op_sar.c: + * src/arch/x86/op_sbb.c: + * src/arch/x86/op_shl.c: + * src/arch/x86/op_shr.c: + * src/arch/x86/op_sub.c: + * src/arch/x86/op_test.c: + * src/arch/x86/op_xchg.c: + * src/arch/x86/op_xor.c: + * src/arch/x86/processor.c: + * src/arch/x86/processor.h: + Use only the new format of processor/instructions/operands for x86. + + * src/common/endianness.c: + Load 32 bits values. + + * src/format/elf/e_elf.c: + Provide the target machine. + + * src/format/elf/symbol.c: + Disable some code because of the new intructions format. + + * src/format/exe_format.h: + Add a new format target machine: FTM_386. + + * src/gtkext/gtksnippet.c: + * src/gtkext/gtksnippet.h: + Remove dead code (with the old code_line_info/asm_processor structures). + + * src/plugins/overjump/overjump.c: + Disable some code because of the new intructions format. + 09-05-12 Cyrille Bagard <nocbos@gmail.com> * configure.ac: |