• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright © 2023 Collabora, Ltd.
2 // SPDX-License-Identifier: MIT
3 
4 mod api;
5 mod assign_regs;
6 mod builder;
7 mod calc_instr_deps;
8 mod from_nir;
9 mod ir;
10 mod legalize;
11 mod liveness;
12 mod lower_copy_swap;
13 mod lower_par_copies;
14 mod opt_bar_prop;
15 mod opt_copy_prop;
16 mod opt_crs;
17 mod opt_dce;
18 mod opt_jump_thread;
19 mod opt_lop;
20 mod opt_out;
21 mod opt_prmt;
22 mod opt_uniform_instrs;
23 mod qmd;
24 mod repair_ssa;
25 mod sm50;
26 mod sm70;
27 mod sph;
28 mod spill_values;
29 mod to_cssa;
30 mod union_find;
31 
32 #[cfg(test)]
33 mod hw_tests;
34 
35 #[cfg(test)]
36 mod hw_runner;
37