weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Borrowed-buffer IFDS solve orchestration.

mod direct;
mod prepared;
mod solve_core;

pub use direct::{
    solve_borrowed_many_via, solve_borrowed_many_with_scratch_via, solve_borrowed_via,
    solve_borrowed_with_scratch_via, solve_via,
};
pub use prepared::{
    solve_prepared_borrowed_into_via, solve_prepared_borrowed_many_with_scratch_into_via,
    solve_prepared_borrowed_many_with_scratch_via, solve_prepared_borrowed_via,
    solve_prepared_borrowed_with_adapter_scratch_via,
    solve_prepared_borrowed_with_scratch_into_via, solve_prepared_borrowed_with_scratch_via,
};