]> git.lizzy.rs Git - rust.git/blob - src/librustc_incremental/persist/mod.rs
Rollup merge of #68705 - BijanT:ll_remove, r=Mark-Simulacrum
[rust.git] / src / librustc_incremental / persist / mod.rs
1 //! When in incremental mode, this pass dumps out the dependency graph
2 //! into the given directory. At the same time, it also hashes the
3 //! various HIR nodes.
4
5 mod data;
6 mod dirty_clean;
7 mod file_format;
8 mod fs;
9 mod load;
10 mod save;
11 mod work_product;
12
13 pub use fs::finalize_session_directory;
14 pub use fs::garbage_collect_session_directories;
15 pub use fs::in_incr_comp_dir;
16 pub use fs::in_incr_comp_dir_sess;
17 pub use fs::prepare_session_directory;
18 pub use load::dep_graph_tcx_init;
19 pub use load::load_query_result_cache;
20 pub use load::LoadResult;
21 pub use load::{load_dep_graph, DepGraphFuture};
22 pub use save::save_dep_graph;
23 pub use save::save_work_product_index;
24 pub use work_product::copy_cgu_workproducts_to_incr_comp_cache_dir;
25 pub use work_product::delete_workproduct_files;