mesa/src/compiler/rust/lib.rs
Faith Ekstrand 993f5c9e30 compiler/rust: Add a DepthFirstSearch trait
There are four depth first searches in cfg.rs.  This adds a DFS
abstraction which we can later optimize.

Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
Reviewed-by: Lorenzo Rossi <git@rossilorenzo.dev>
Reviewed-by: Mary Guillemard <mary@mary.zone>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37536>
2025-10-14 22:47:38 +00:00

13 lines
254 B
Rust

// Copyright © 2024 Igalia S.L.
// SPDX-License-Identifier: MIT
pub mod as_slice;
pub mod bindings;
pub mod bitset;
pub mod cfg;
pub mod dataflow;
pub mod depth_first_search;
pub mod memstream;
pub mod nir;
pub mod nir_instr_printer;
pub mod smallvec;