• 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 bitset;
7 mod builder;
8 mod calc_instr_deps;
9 mod cfg;
10 mod encode_sm50;
11 mod encode_sm70;
12 mod from_nir;
13 mod ir;
14 mod legalize;
15 mod liveness;
16 mod lower_copy_swap;
17 mod lower_par_copies;
18 mod nir;
19 mod nir_instr_printer;
20 mod opt_bar_prop;
21 mod opt_copy_prop;
22 mod opt_dce;
23 mod opt_jump_thread;
24 mod opt_lop;
25 mod opt_out;
26 mod repair_ssa;
27 mod sph;
28 mod spill_values;
29 mod to_cssa;
30