winliner 1.0.1

The WebAssembly Indirect Call Inliner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]

mod convert;
mod counters;
mod cow_section;
mod instrument;
mod optimize;
mod profile;

pub use anyhow::Result;
pub use counters::{FeedbackCounter, FeedbackCounters};
pub use instrument::{InstrumentationStrategy, Instrumenter};
pub use optimize::Optimizer;
pub use profile::{Profile, ProfileBuilder};