mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-12 23:31:38 -07:00
move raddbgi stringize into standalone layer
This commit is contained in:
@@ -31,6 +31,7 @@ format are:
|
||||
info.
|
||||
- `raddbgi_convert`: Our implementation of PDB-to-RADDBGI (and an in-progress
|
||||
implementation of a DWARF-to-RADDBGI) conversion.
|
||||
- `raddbgi_stringize`: Code for converting binary RADDBGI info into text.
|
||||
- `raddbgi_dump`: Code for textually dumping information from RADDBGI files.
|
||||
|
||||
## Development Setup Instructions
|
||||
@@ -298,6 +299,9 @@ A list of the layers in the codebase and their associated namespaces is below:
|
||||
textualizations of RADDBGI debug info files.
|
||||
- `raddbgi_format` (`RADDBGI_`): Standalone types and helper functions for the
|
||||
RADDBGI debug info file format. Does not depend on `base`.
|
||||
- `raddbgi_stringize` (`RADDBGI_`): Code to stringify binary RADDBGI info, for
|
||||
visualizing textualizations of RADDBGI debug info. Used in `raddbgi_dump`,
|
||||
and depends on `base`.
|
||||
- `regs` (`REGS_`): Types, helper functions, and metadata for registers on
|
||||
supported architectures. Used in reading/writing registers in `demon`, or in
|
||||
looking up register metadata.
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#include "os/os_inc.h"
|
||||
#include "raddbgi_format/raddbgi_format.h"
|
||||
#include "raddbgi_format/raddbgi_format_parse.h"
|
||||
#include "raddbgi_stringize.h"
|
||||
#include "raddbgi_stringize/raddbgi_stringize.h"
|
||||
|
||||
#include "raddbgi_dump.h"
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "os/os_inc.c"
|
||||
#include "raddbgi_format/raddbgi_format.c"
|
||||
#include "raddbgi_format/raddbgi_format_parse.c"
|
||||
#include "raddbgi_stringize.c"
|
||||
#include "raddbgi_stringize/raddbgi_stringize.c"
|
||||
|
||||
////////////////////////////////
|
||||
//~ Program Parameters Parser
|
||||
|
||||
Reference in New Issue
Block a user