summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-03-31 23:20:33 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-03-31 23:20:33 (GMT)
commit5cc7bd39ae41af40a0c939acf98f90bf1375effd (patch)
tree4f7140e2c5a8d939c672fb941e66903300229e82 /ChangeLog
parent52e036040b5e0ad8acde3d467ac8d9ca43ed414c (diff)
Saved some progress in the definition of basic blocks.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@497 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog63
1 files changed, 63 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ffec386..0d4288c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,66 @@
+15-04-01 Cyrille Bagard <nocbos@gmail.com>
+
+ * src/analysis/disass/area.c:
+ Update code by changing IPH_LINK to IPH_FETCH.
+
+ * src/analysis/disass/disassembler.c:
+ Register all disassembled instructions and run the new IPH_LINK methods.
+
+ * src/analysis/disass/links.c:
+ Establish natural links in the execution flow.
+
+ * src/analysis/disass/macro.c:
+ Save some progress in the definition of basic blocks.
+
+ * src/arch/arm/v7/fetch.c:
+ * src/arch/arm/v7/fetch.h:
+ New entries: redefine the old IPH_LINK methods into IPH_FETCH new ones.
+
+ * src/arch/arm/v7/link.c:
+ * src/arch/arm/v7/link.h:
+ Moved entries: see the 'fetch.[ch]' files.
+
+ * src/arch/arm/v7/Makefile.am:
+ Replace the 'link.[ch]' files by the 'fetch.[ch]' ones
+ in libarcharmv7_la_SOURCES.
+
+ * src/arch/arm/v7/opdefs/b_A8818.d:
+ * src/arch/arm/v7/opdefs/bl_A8825.d:
+ * src/arch/arm/v7/opdefs/bx_A8827.d:
+ * src/arch/arm/v7/opdefs/cbnz_A8829.d:
+ * src/arch/arm/v7/opdefs/ldr_A8864.d:
+ Update definitions.
+
+ * src/arch/arm/v7/opdefs/Makefile.am:
+ Update included headers list.
+
+ * src/arch/arm/v7/opdefs/pop_A88131.d:
+ * src/arch/arm/v7/opdefs/pop_A88132.d:
+ Update definitions.
+
+ * src/arch/arm/v7/post.c:
+ * src/arch/arm/v7/post.h:
+ Update prototypes.
+
+ * src/arch/instruction.c:
+ Update code.
+
+ * src/arch/instruction.h:
+ Update code. Redefine prototypes for hooks. Register a link type dedicated
+ to cross refrences.
+
+ * src/arch/link.c:
+ * src/arch/link.h:
+ New entries: provide generic methods for some kinks of links.
+
+ * src/arch/Makefile.am:
+ Add the 'link.[ch]' files to libarch_la_SOURCES.
+
+ * src/arch/processor.c:
+ * src/arch/processor.h:
+ * src/arch/processor-int.h:
+ Begin to store all disassembled instructions in the processor structure.
+
15-03-29 Cyrille Bagard <nocbos@gmail.com>
* plugins/readelf/header.c: