summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-10-07 00:22:10 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-10-07 00:22:10 (GMT)
commitdaa0084325d4e748f334a223e1cd3800120e6055 (patch)
tree9f8bfe9296e1a4f6aa945418293f895303b771e2 /ChangeLog
parentd9be16271ab3fbb95d6c95baa92242358f0e7dfd (diff)
Created a function to load n x86 operands and supported extra x86 opcodes.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@128 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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: