mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-07 13:51:16 +00:00
68cb13b0a6
* Clean and refactor of the TODO
53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
|| config ||
|
|
------------
|
|
- find more common cases for char* or &int maps
|
|
- automatic callbacks for most common usecases
|
|
|
|
|| asm ||
|
|
---------
|
|
- Add CIC, lua, dalvik, xtensa (mm cpu) disassemblers
|
|
- http://git.linux-xtensa.org/cgi-bin/git.cgi?p=buildroot/buildroot-xtensa;a=blob;f=toolchain/binutils/binutils-xtensa_dc232b.tgz;h=214164399158c540a3033e52b3bb9f65c55289af;hb=HEAD
|
|
- Check if there are endianess issues
|
|
|
|
|| anal || **MISSING**
|
|
----------
|
|
- define api, write vapi, integrate in core, etc..
|
|
- integrate with r_var to make variable access analysis
|
|
|
|
|| bin ||
|
|
---------
|
|
- Add dex format support (android)
|
|
|
|
|| cons ||
|
|
----------
|
|
- add pipe_to_buffer..not only file descriptors
|
|
- major cleanup
|
|
- split in multiple files
|
|
- get_real_columns() should be renamed to get_columns()
|
|
|
|
|| flags ||
|
|
-----------
|
|
- We probably need more methods
|
|
- support to define relations between flags
|
|
(flag hirearchies)
|
|
r_flagtree
|
|
- r_flags should have a tree construction to access to them faster
|
|
- btree? following pointers like bigger,smaller
|
|
{ struct r_flag_t *bigger, *smaller; }
|
|
- hooks r_flag_add to recalculate in r_flag_optimize(), bigger/smaller pointers
|
|
- hooks r_flag_del to recalculate too.
|
|
- the r_flag_get by string should have another construction with btree
|
|
for the string of the name
|
|
|
|
|| diff ||
|
|
----------
|
|
- Reimplement or fix the delta diffing in C
|
|
- first we need to do it for ired..
|
|
|
|
|| lib ||
|
|
---------
|
|
- Cleanup and test w32/osx support
|
|
- Added lib_handle stub in r_lib, so we can add plugin support to
|
|
any library by using just a macro
|
|
|