summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-12-18 15:32:27 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-12-18 15:32:27 (GMT)
commitb0bcf250999b2242019f137e38f52390a86e71cd (patch)
treef3436a3ddbbd4773005ecb891630a815ed001341 /ChangeLog
parent6bde4016160057a22234d4ed698903dca52ce162 (diff)
Shared all Dalvik operands between all their users.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog50
1 files changed, 50 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 94980aa..eb93ae5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,53 @@
+16-12-18 Cyrille Bagard <nocbos@gmail.com>
+
+ * configure.ac:
+ Add an option to dump share statistics to the compilation configuration.
+
+ * src/analysis/binary.c:
+ * src/arch/dalvik/context.c:
+ * src/arch/dalvik/core.c:
+ * src/arch/dalvik/core.h:
+ * src/arch/dalvik/instruction.c:
+ * src/arch/dalvik/operand.c:
+ Update code.
+
+ * src/arch/dalvik/operands/args.c:
+ * src/arch/dalvik/operands/args.h:
+ * src/arch/dalvik/operands/pool.c:
+ * src/arch/dalvik/operands/pool.h:
+ * src/arch/dalvik/operands/register.c:
+ * src/arch/dalvik/operands/register.h:
+ * src/arch/dalvik/register.c:
+ * src/arch/dalvik/register.h:
+ Share all Dalvik operands between all their users.
+
+ * src/arch/operand-int.h:
+ * src/arch/operand.c:
+ Update code.
+
+ * src/arch/sharing/Makefile.am:
+ Add the 'container*[ch]' files to libarchsharing_la_SOURCES.
+
+ * src/arch/sharing/container-int.h:
+ * src/arch/sharing/container.c:
+ * src/arch/sharing/container.h:
+ New entries: define an interface to replace updated operands.
+
+ * src/arch/sharing/instance.c:
+ * src/arch/sharing/instance.h:
+ Typo.
+
+ * src/arch/sharing/manager.c:
+ * src/arch/sharing/manager.h:
+ Extend the manager features. Protect concurrent access to the share table.
+
+ * src/common/extstr.c:
+ Fix another bug in strrpl().
+
+ * src/core/processors.c:
+ * src/core/processors.h:
+ Update code.
+
16-12-17 Cyrille Bagard <nocbos@gmail.com>
* src/arch/arm/v7/fetch.c: