miden-debug-engine 0.15.0

Core debugger engine for miden-debug
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod config;
pub(crate) mod helpers;
pub mod instrument;
mod profiler;

#[cfg(feature = "std")]
pub use self::{config::ProfilerCliArgs, instrument::instrument_from_name};
pub use self::{
    config::ProfilerConfig,
    instrument::{
        Instrument, InstrumentRegistration, OpHistogramGlobal, OpHistogramProc, OutputResult,
        OutputWriter,
    },
    profiler::Profiler,
};