diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2014-10-06 20:52:21 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2014-10-06 20:52:21 (GMT) |
commit | 1d5f7f28f92251dc4d3bff8d87b3e3052ab9cab2 (patch) | |
tree | 1ad4346a8cbcd8379850f68d04cb8757371c05e1 /ChangeLog | |
parent | ada6b756efd6ca109f6c46aa4d3eb11c17ad6b84 (diff) |
Got prepared to disassemble some ARMv7 instructions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@409 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 53 |
1 files changed, 53 insertions, 0 deletions
@@ -1,3 +1,56 @@ +14-10-06 Cyrille Bagard <nocbos@gmail.com> + + * src/analysis/disass/fetch.c: + Disassemble executable code like raw code. + + * src/analysis/disass/fetch.h: + Clean the code. + + * src/arch/arm/context.c: + * src/arch/arm/context.h: + New entries: define a context for disassembling ARM code. + + * src/arch/arm/instruction.c: + * src/arch/arm/instruction.h: + Typo (armv7 -> arm). + + * src/arch/arm/instruction-int.h: + Store the name of an ARM instruction. + + * src/arch/arm/Makefile.am: + Add the 'context.[ch]' files to libarcharm_la_SOURCES. + + * src/arch/arm/v7/arm.c: + * src/arch/arm/v7/arm.h: + New entries: get prepared to disassemble some ARMv7 instructions. + + * src/arch/arm/v7/instruction.c: + * src/arch/arm/v7/instruction.h: + Build an ARM instruction with a name. + + * src/arch/arm/v7/Makefile.am: + Add the 'arm.[ch]' files to libarcharmv7_la_SOURCES. + + * src/arch/arm/v7/processor.c: + Update code. + + * src/arch/dalvik/context.c: + Typo. + + * src/arch/processor.c: + * src/arch/processor.h: + * src/arch/processor-int.h: + Provide a new way to disassemble code. + + * src/common/bconst.h: + New entry: create some macros for binary constants. + + * src/common/Makefile.am: + Add the 'bconst.h' file to libcommon_la_SOURCES. + + * src/format/elf/symbols.c: + Define a small size for symbols and debugging. + 14-10-01 Cyrille Bagard <nocbos@gmail.com> * configure.ac: |