diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 70 |
1 files changed, 70 insertions, 0 deletions
@@ -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: |