diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2008-07-31 21:46:47 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2008-07-31 21:46:47 (GMT) |
commit | 3786e818fdf8731dd6f310f0aaac75d431646160 (patch) | |
tree | a1dc1d1ed27c56d7ae2e361102fef7310a9b1a21 /ChangeLog | |
parent | 57758c2cd11938e3e4c6e45b983cee4c2269ff44 (diff) |
Handled the virtual offset and fixed the operand-size overriding.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@11 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -1,3 +1,51 @@ +2008-07-31 Cyrille Bagard <nocbos@gmail.com> + + * src/arch/operand.c: + * src/arch/operand.h: + Read relative immediate operands. + + * src/arch/operand-int.h: + Typo. + + * src/arch/processor.c: + * src/arch/processor.h: + Update the code: use the virtual offset. + + * src/arch/processor-int.h: + * src/arch/x86/instruction.h: + Support new instructions: X86_OP_PUSH_IMM(32|16) and X86_OP_CALL. + + * src/arch/x86/Makefile.am: + Add op_call.c to libarchx86_a_SOURCES. + + * src/arch/x86/op_call.c: + New entry: Handle the virtual offset ; fix the operand-size overriding. + + * src/arch/x86/opcodes.h: + * src/arch/x86/op_dec.c: + * src/arch/x86/op_hlt.c: + * src/arch/x86/op_inc.c: + * src/arch/x86/op_int.c: + * src/arch/x86/op_mov.c: + * src/arch/x86/op_nop.c: + Handle the virtual offset ; fix the operand-size overriding. + + * src/arch/x86/op_pop.c: + * src/arch/x86/op_push.c: + Handle the virtual offset ; fix the operand-size overriding. + Handle immediate values. + + * src/arch/x86/processor.c: + * src/arch/x86/processor.h: + Handle the virtual offset ; fix the operand-size overriding. + + * src/binary.c: + Provide the virtual offset when decoding. + + * src/format/elf/format_elf.c: + * src/format/elf/format_elf.h: + Provide the virtual offset when reading ELF. + 2008-07-30 Cyrille Bagard <nocbos@gmail.com> * src/arch/x86/instruction.h: |