radare2/libr
pancake 08ffce4865 * Initial implementation of the r_bp_traptrace API
- Added endianness in r_bp
  - Add breakpoints for mips and ppc
  - Needs to be used from r_core (dbt?)
  - Added dummy bp_watch api (WIP: needs access to r_reg)
* Merge r_range inside r_util
* Added BIT_{SET|CHK} helpers in r_types_base
  - Define ST32_MAX

--HG--
rename : libr/range/range.c => libr/util/range.c
2010-03-03 02:41:41 +01:00
..
anal * r_core_anal 2010-03-01 16:50:37 +01:00
asm * Added DEFAULT_ARCH for mips and powerpc 2010-02-22 04:02:13 +01:00
bin * Fix return value of bin_meta_elf 2010-02-28 22:58:21 +01:00
bp * Initial implementation of the r_bp_traptrace API 2010-03-03 02:41:41 +01:00
cmd * Fix r2 build 2010-02-26 13:08:42 +01:00
config * Fix 'const char*' issue in valaswig bindings 2010-02-12 00:43:11 +01:00
cons * Initial quick-and-dirty implementation of backtrace 2010-03-01 10:49:04 +01:00
core * Integrate backtrace into the debugging backend 2010-03-02 11:18:49 +01:00
crypto * Fix build in OSX 2010-02-21 20:21:36 +01:00
db * Initial quick-and-dirty implementation of backtrace 2010-03-01 10:49:04 +01:00
debug * Added support for LUA bindings 2010-03-03 00:13:22 +01:00
diff * Added dummy flag -r in radiff 2010-02-10 00:09:48 +01:00
flags * r_bin 2010-02-21 11:35:49 +01:00
hash * Add --without-pic configure flag to build radare2 2010-01-21 21:22:30 +01:00
include * Initial implementation of the r_bp_traptrace API 2010-03-03 02:41:41 +01:00
io * Initial quick-and-dirty implementation of backtrace 2010-03-01 10:49:04 +01:00
lang * Fix build in OSX 2010-02-21 20:21:36 +01:00
lib * Fix build in OSX 2010-02-21 20:21:36 +01:00
line * Do not parse multibyte characters 2010-02-28 15:35:09 +01:00
macro * Build all pkgconfig files (fixes valaswig stuff) 2010-01-25 11:54:25 +01:00
meta * Add --without-pic configure flag to build radare2 2010-01-21 21:22:30 +01:00
parse * Fix build in OSX 2010-02-21 20:21:36 +01:00
pkgconfig * Build all pkgconfig files (fixes valaswig stuff) 2010-01-25 11:54:25 +01:00
print * Initial quick-and-dirty implementation of backtrace 2010-03-01 10:49:04 +01:00
range * Initial implementation of the r_bp_traptrace API 2010-03-03 02:41:41 +01:00
reg * Initial quick-and-dirty implementation of backtrace 2010-03-01 10:49:04 +01:00
search * Integrate backtrace into the debugging backend 2010-03-02 11:18:49 +01:00
sign * Fix build 2009-11-23 17:49:40 +01:00
socket * Fix build in OSX 2010-02-21 20:21:36 +01:00
syscall * Fix build in OSX 2010-02-21 20:21:36 +01:00
sysproxy
th * Add --without-pic configure flag to build radare2 2010-01-21 21:22:30 +01:00
trace * Some code cleanup and add some more checks on r_bin (-15LOC) 2009-07-16 14:17:32 +02:00
util * Initial implementation of the r_bp_traptrace API 2010-03-03 02:41:41 +01:00
vapi * Include r_bininfo features in r_bin 2010-02-22 04:30:34 +01:00
var * Added DEFAULT_ARCH for mips and powerpc 2010-02-22 04:02:13 +01:00
vm * Fix build in OSX 2010-02-21 20:21:36 +01:00
config.h.head * Add support to ARM for the debugger 2010-02-03 14:34:00 +01:00
config.h.tail * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.head * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.tail * Do not link libr2.dylib in OSX 2010-02-21 21:34:10 +01:00
depgraph.pl * Single valadoc by default 2009-09-21 15:39:10 +02:00
libr.pc.acr * Added r_reg pkgconfig file 2009-09-20 00:28:06 +02:00
Makefile * Do not link libr2.dylib in OSX 2010-02-21 21:34:10 +01:00
README * Initial working implementation of r_parse_assemble() 2009-08-14 02:19:54 +00:00
rules.mk * Do not link libr2.dylib in OSX 2010-02-21 21:34:10 +01:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
TODO * Properly manage Color_RESET from r_core 2010-02-28 23:57:55 +01: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