ghostscope-dwarf 0.1.4

DWARF parser and symbolizer used by GhostScope to resolve variables and types at runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) mod origins;
pub(crate) mod pc;
pub(crate) mod types;

pub(crate) use origins::{
    resolve_attr_with_unit_origins, resolve_name_with_origins, resolve_origin_entry,
};
pub(crate) use pc::{range_contains_pc, ranges_contain_pc};
pub(crate) use types::{
    resolve_type_ref_in_same_unit_with_origins, resolve_type_ref_with_origins,
    strip_typedef_qualified, TypeLoc,
};