#[path = "dominator_tree/program.rs"]
mod program;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/alloc_helpers.rs"]
mod alloc_helpers;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/lengauer_tarjan.rs"]
mod lengauer_tarjan;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/cooper_harvey_kennedy.rs"]
mod cooper_harvey_kennedy;
#[cfg(any(test, feature = "cpu-parity"))]
#[path = "dominator_tree/cpu_ref.rs"]
mod cpu_ref;
#[cfg(feature = "inventory-registry")]
#[path = "dominator_tree/registry.rs"]
mod registry;
#[cfg(test)]
#[path = "dominator_tree/tests/mod.rs"]
mod tests;
pub use program::{
dominator_tree_program, try_dominator_tree_program, validate_dominator_tree_inputs,
DominatorTreeError, DominatorTreeLayout, IDOM_NONE, OP_ID,
};
#[cfg(any(test, feature = "cpu-parity"))]
pub use cooper_harvey_kennedy::cooper_harvey_kennedy_idoms;
#[cfg(any(test, feature = "cpu-parity"))]
pub use cpu_ref::{
cpu_ref, idoms_to_dominator_sets, try_cpu_ref, try_cpu_ref_into, try_idoms_to_dominator_sets,
};
#[cfg(any(test, feature = "cpu-parity"))]
pub use lengauer_tarjan::{
lengauer_tarjan_idoms, try_lengauer_tarjan_idoms, try_lengauer_tarjan_idoms_into,
DominatorTreeCpuScratch,
};