summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog36
1 files changed, 36 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d4ecd5..a22419d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: