diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1,3 +1,39 @@ +09-10-07 Cyrille Bagard <nocbos@gmail.com> + + * src/arch/artificial.c: + Replace a call to g_arch_instruction_attach_one_operand() by a call + to g_arch_instruction_attach_extra_operand(). + + * src/arch/instruction.c: + * src/arch/instruction.h: + Remove the g_arch_instruction_attach_(one|two)_operand[s]() functions. + One can use g_arch_instruction_attach_extra_operand() instead. + + * src/arch/jvm/operand.c: + Replace a call to g_arch_instruction_attach_one_operand() by a call + to g_arch_instruction_attach_extra_operand(). + + * src/arch/x86/instruction.c: + * src/arch/x86/instruction.h: + * src/arch/x86/op_and.c: + * src/arch/x86/op_cmp.c: + * src/arch/x86/opcodes.h: + Support extra x86 opcodes. + + * src/arch/x86/operand.c: + * src/arch/x86/operand.h: + Create a function to load n operands. Remove the older ones allowing to + load one or two operands. Add comments to fix later endianness. + + * src/arch/x86/op_int.c: + Replace a call to g_arch_instruction_attach_one_operand() by a call + to g_arch_instruction_attach_extra_operand(). + + * src/arch/x86/op_jump.c: + * src/arch/x86/op_mul.c: + * src/arch/x86/processor.c: + Support extra x86 opcodes. + 09-10-06 Cyrille Bagard <nocbos@gmail.com> * src/arch/immediate.c: |