mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-12 15:38:09 +00:00
675b04e7cd
- Analyze code in order to do syscall analysis - Some fixes in r_vm to make it work - Add 'av' command to interact with the virtual machine - added r_str_subchr helper func in r_util
28 lines
1015 B
Plaintext
28 lines
1015 B
Plaintext
|| config ||
|
|
------------
|
|
- find/use 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
|
|
|
|
|| cons ||
|
|
----------
|
|
- add pipe_to_buffer..not only file descriptors
|
|
|
|
|| flags ||
|
|
-----------
|
|
- We probably need more methods..or less ? :)
|
|
- 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
|