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
13
14
//! Shared DWARF expression parsing, scanning, and lowering utilities.

pub(crate) mod call_site;
pub(crate) mod cfa;
pub(crate) mod const_eval;
pub(crate) mod entry_value;
pub(crate) mod errors;
pub(crate) mod lower;
pub(crate) mod modes;
pub(crate) mod ops;
pub(crate) mod scan;
pub(crate) mod storage;

pub(crate) use lower::ExpressionEvaluator;