twiggy-analyze 0.7.0

Analyses for the Twiggy code size profiler.
1
2
3
4
5
6
7
8
9
10
11
//! Implementations of the analyses that `twiggy` runs on its IR.

#![deny(missing_docs)]
#![deny(missing_debug_implementations)]

mod analyses;
mod formats;

pub use analyses::{
    diff::diff, dominators::dominators, garbage::garbage, monos::monos, paths::paths, top::top,
};