mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 22:18:18 +02:00
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>
13 lines
254 B
Rust
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;
|