diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-02-16 07:07:15 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-02-16 07:07:15 (GMT) |
commit | 635640a32fecbb9b8a5ddf239b819c022c4b9977 (patch) | |
tree | f8fc69a2c2db411000996146536ca5cc4f54d417 /ChangeLog | |
parent | bf879f2562545ab7de23f9d38364b7bd4b43fb2c (diff) |
Added a basic support for Mobicore truslets.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@472 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 80 |
1 files changed, 80 insertions, 0 deletions
@@ -1,3 +1,83 @@ +15-02-16 Cyrille Bagard <nocbos@gmail.com> + + * configure.ac: + Add the new Makefile from the 'plugins/mobicore' directory. + + * plugins/devdbg/speed.c: + * plugins/devdbg/speed.h: + Fix included headers. Clean the code. + + * plugins/Makefile.am: + Add mobicore to SUBDIRS. + + * plugins/mobicore/annotations.c: + * plugins/mobicore/annotations.h: + * plugins/mobicore/Makefile.am: + * plugins/mobicore/mclf.c: + * plugins/mobicore/mclf-def.h: + * plugins/mobicore/mclf.h: + * plugins/mobicore/mclf-int.c: + * plugins/mobicore/mclf-int.h: + * plugins/mobicore/mobicore.c: + * plugins/mobicore/mobicore.h: + * plugins/mobicore/symbols.c: + * plugins/mobicore/symbols.h: + New entries: add a basic support for Mobicore truslets. + + * plugins/pychrysa/plugin.c: + * plugins/pychrysa/pychrysa.c: + Update code due to PGA_NONE removing. + + * src/analysis/binary.c: + Do not free bin_data anymore, as it not owned by the binary. + + * src/analysis/disass/area.c: + Disable some checks ; update code with calls to g_raw_instruction_new_array_old(). + + * src/arch/arm/v7/processor.c: + * src/arch/artificial.c: + * src/arch/dalvik/operand.c: + Update code with calls to g_raw_instruction_new_array_old(). + + * src/arch/immediate.c: + * src/arch/immediate.h: + Load immediate values using the new GBinContent manager. + + * src/arch/instruction.h: + Update included headers. + + * src/arch/raw.c: + * src/arch/raw.h: + Load raw instructions using the new GBinContent manager. + + * src/arch/x86/operand.c: + * src/arch/x86/operands/modrm.c: + * src/arch/x86/operands/moffs.c: + Update code with calls to g_raw_instruction_new_array_old(). + + * src/core/formats.c: + * src/core/processors.c: + Avoid to crash when a key is set to NULL. + + * src/format/elf/elf-int.c: + Typo. + + * src/format/elf/symbols.c: + Update code with calls to g_raw_instruction_new_array_old(). + + * src/format/format.c: + * src/format/format-int.h: + Store a GBinContent manager instead of a reference to a loaded binary array. + + * src/glibext/gbincontent.c: + * src/glibext/gbincontent.h: + Read all basic values with respect to endianness. + + * src/plugins/plugin.c: + * src/plugins/plugin-def.h: + * src/plugins/plugin-int.h: + Define init and exit functions for plugins. + 15-02-11 Cyrille Bagard <nocbos@gmail.com> * plugins/pychrysa/format/elf/elf.c: |