radare2/libr
pancake 65da25d4c0 * Implement STATIC PLUGIN support for r_parse
- Use the new 'asm-like' build system for r_parse plugins
  - Added new callback to 'assemble' parseable expressions
    into compilable asm code
  - Refactorize and remove warnings in parse_mreplace
* Added r_str_char_count() in r_util
* Some fixups in the fastcall code in r_asm

--HG--
rename : libr/parse/p/mreplace/mmemory.c => libr/parse/p/parse_mreplace/mmemory.c
rename : libr/parse/p/mreplace/mmemory.h => libr/parse/p/parse_mreplace/mmemory.h
rename : libr/parse/p/mreplace/mreplace.c => libr/parse/p/parse_mreplace/mreplace.c
rename : libr/parse/p/mreplace/mreplace.h => libr/parse/p/parse_mreplace/mreplace.h
2009-08-14 01:44:12 +00:00
..
anal * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
asm * Implement STATIC PLUGIN support for r_parse 2009-08-14 01:44:12 +00:00
bin * Some code cleanup and add some more checks on r_bin (-15LOC) 2009-07-16 14:17:32 +02:00
bininfo * Change the name of some types 2009-07-08 13:49:55 +02:00
bp * Change the name of some types 2009-07-08 13:49:55 +02:00
cmd * Change the name of some types 2009-07-08 13:49:55 +02:00
config * Change the name of some types 2009-07-08 13:49:55 +02:00
cons * Fix warnings in cons/input 2009-07-16 09:44:56 +00:00
core * Some code cleanup and add some more checks on r_bin (-15LOC) 2009-07-16 14:17:32 +02:00
crypto * Fix 'install' target (missing double '$') 2009-03-31 00:50:02 +00:00
db * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
debug * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
diff * Change the name of some types 2009-07-08 13:49:55 +02:00
flags * Change the name of some types 2009-07-08 13:49:55 +02:00
hash * Added 'pkgcfg' directory with autogenerated .pc files 2009-07-16 00:30:20 +00:00
include * Implement STATIC PLUGIN support for r_parse 2009-08-14 01:44:12 +00:00
io * Change the name of some types 2009-07-08 13:49:55 +02:00
lang * R_APIize r_asm and r_var 2009-04-07 00:26:41 +00:00
lib * Implement r_core_visual_trackflags 2009-04-02 00:44:24 +00:00
line * Change the name of some types 2009-07-08 13:49:55 +02:00
macro * Change the name of some types 2009-07-08 13:49:55 +02:00
meta * Change the name of some types 2009-07-08 13:49:55 +02:00
parse * Implement STATIC PLUGIN support for r_parse 2009-08-14 01:44:12 +00:00
pkgconfig * Initial vapi for r_db 2009-07-21 22:59:34 +00:00
print * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
range * Change the name of some types 2009-07-08 13:49:55 +02:00
reg * Sync x86 code analysis fixups from r1 2009-04-16 20:49:18 +00:00
search * Change the name of some types 2009-07-08 13:49:55 +02:00
sign * Fix doc installation path 2009-03-27 11:28:25 +00:00
socket * Add r_socket_to_string() function in r_socket API 2009-07-24 13:38:53 +00:00
syscall * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Initial import of r_th. The simplified and portable threading library 2009-07-21 11:13:24 +00:00
trace * Some code cleanup and add some more checks on r_bin (-15LOC) 2009-07-16 14:17:32 +02:00
util * Implement STATIC PLUGIN support for r_parse 2009-08-14 01:44:12 +00:00
vapi * Initial implementation of r_asm_fastcall() 2009-08-14 00:37:18 +00:00
var * Change the name of some types 2009-07-08 13:49:55 +02:00
vm * Fix build and linkage of r_vm 2009-07-16 12:38:49 +02:00
config.h * Implement STATIC PLUGIN support for r_parse 2009-08-14 01:44:12 +00:00
config.mk * Implement STATIC PLUGIN support for r_parse 2009-08-14 01:44:12 +00:00
depgraph.pl * fix r_asm and r_anal deps 2009-03-04 12:39:51 +00:00
libr.pc.acr * Add random documentation for dynamic language plugins 2009-03-10 01:49:24 +00:00
Makefile * Initial vapi for r_db 2009-07-21 22:59:34 +00:00
README * Add random documentation for dynamic language plugins 2009-03-10 01:49:24 +00:00
rules.mk * Initial import of r_th. The simplified and portable threading library 2009-07-21 11:13:24 +00:00
stripsyms.sh * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
TODO * Minor syntax changes 2009-05-28 10:57:30 +00:00

  =========================
  libr - codename 'radare2'
  =========================

LibR is the refactoring of the old radare1 core in a set of libraries
defining the APIs of radare2.

The library 'libr' is composed by different modules, each one implementing
working modules of radare, so then, we get a complete set of libraries for
analyzing code, disassembling bytes, dumping bytes, plugin handling, etc..

The 'R' is for refactoring, reversing, radare, ...

Each module has its own test directory (t/) which contains simple applications
using the upper directory code and linking against the direct dependencies.

Each mode can own a plugin directory (p/) that contains extensions for the
parent library module (libr/asm/p/asm_x86).

There's also the possibility to define a list of static plugins to be built
inside the parent module. This way you can avoid some flexibility to ease
portability and build single binaries with some embedded features.

The library can be used from 'pkg-config', this way you can easy build an
application or plugin that links against libr or just few elements of it.

This enables a fine-grained test level for checking all functionalities in
one shot and give us the opportunity to write radare2 as test programs.

  --pancake