mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 17:23:06 +00:00
75c3679147
The current mixed Python/C implementation works well, but it has a couple of important limitations: - It's too slow for some common use cases, like iterating over large data structures. - It can't be reused in utilities written in other languages. This replaces the internals with a new library written in C, libdrgn. It includes Python bindings with mostly the same public interface as before, with some important improvements: - Types are now represented by a single Type class rather than the messy polymorphism in the Python implementation. - Qualifiers are a bitmask instead of a set of strings. - Bit fields are not considered a separate type. - The lvalue/rvalue terminology is replaced with reference/value. - Structure, union, and array values are better supported. - Function objects are supported. - Program distinguishes between lookups of variables, constants, and functions. The C rewrite is about 6x as fast as the original Python when using the Python bindings, and about 8x when using the C API directly. Currently, the exposed API in C is fairly conservative. In the future, the memory reader, type index, and object index APIs will probably be exposed for more flexibility. |
||
---|---|---|
.. | ||
build-aux | ||
.gitignore | ||
cityhash.h | ||
configure.ac | ||
Doxyfile | ||
drgn.h | ||
dwarf_index.c | ||
dwarf_index.h | ||
dwarf_object_index.c | ||
dwarf_type_index.c | ||
error.c | ||
error.h | ||
hash_table.c | ||
hash_table.h | ||
internal.c | ||
internal.h | ||
language_c.c | ||
language.h | ||
lexer.c | ||
lexer.h | ||
Makefile.am | ||
memory_file_reader.c | ||
memory_reader.h | ||
mock.c | ||
object_index.c | ||
object_index.h | ||
object.c | ||
object.h | ||
path.c | ||
program.c | ||
program.h | ||
read.h | ||
serialize.c | ||
serialize.h | ||
siphash.h | ||
string_builder.c | ||
string_builder.h | ||
type_index.c | ||
type_index.h | ||
type.c | ||
type.h |