summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-12-20 00:28:36 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-12-20 00:28:36 (GMT)
commit56deaf395c65658102ef0111cfc072d65335331a (patch)
treeba6d6fd0dbc781e9ad3b3cf6b2eb529a7d7a6aa3 /ChangeLog
parentd9fdfcf887a7a596a68db2500bb5e4d0b692abb6 (diff)
Begun to clean the code by moving the disassembling process into disass/.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@202 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog70
1 files changed, 70 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 742948e..380ff87 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,73 @@
+10-12-20 Cyrille Bagard <nocbos@gmail.com>
+
+ * configure.ac:
+ Add the new Makefile 'src/analysis/disass' directoriy to AC_CONFIG_FILES.
+
+ * src/analysis/binary.c:
+ Begin to clean the code by moving the disassembling process into disass/.
+
+ * src/analysis/binary.h:
+ Add a function to provide the buffer of disassembled instructions.
+
+ * src/analysis/decomp/decompiler.c:
+ Make a better prologue.
+
+ * src/analysis/disass/disassembler.c:
+ * src/analysis/disass/disassembler.h:
+ * src/analysis/disass/fetch.c:
+ * src/analysis/disass/fetch.h:
+ * src/analysis/disass/links.c:
+ * src/analysis/disass/links.h:
+ * src/analysis/disass/Makefile.am:
+ * src/analysis/disass/output.c:
+ * src/analysis/disass/output.h:
+ New entries: move the disassembling process into several parts here.
+
+ * src/analysis/Makefile.am:
+ Add 'disass/libanalysisdisass.la' to libanalysis_la_LIBADD
+ and 'disass' to SUBDIRS.
+
+ * src/arch/archbase.h:
+ Define VMPA_MAX.
+
+ * src/arch/instruction.c:
+ * src/arch/instruction.h:
+ * src/arch/instruction-int.h:
+ Register links between instructions.
+
+ * src/decomp/lang/asm.c:
+ * src/decomp/lang/asm.h:
+ New entries: produce assembly output.
+
+ * src/decomp/lang/java.c:
+ Introduce long comments.
+
+ * src/decomp/lang/Makefile.am:
+ Add asm.[ch] to libdecomplang_la_SOURCES.
+
+ * src/decomp/output.c:
+ * src/decomp/output.h:
+ * src/decomp/output-int.h:
+ Introduce long comments.
+
+ * src/glibext/delayed.c:
+ * src/glibext/delayed.h:
+ * src/glibext/delayed-int.h:
+ Wait for the completion of a delayed work.
+
+ * src/gtkext/gtkblockview.c:
+ * src/gtkext/gtkblockview.h:
+ Make the block view inheriting of the buffered view.
+
+ * src/gtkext/gtkgraphview.c:
+ Disable the graphic view.
+
+ * src/gtkext/gtksourceview.c:
+ Typo.
+
+ * src/project.c:
+ Update call to gtk_block_view_new().
+
10-12-12 Cyrille Bagard <nocbos@gmail.com>
* configure.ac: