]> git.proxmox.com Git - rustc.git/blame - src/librustc_incremental/persist/mod.rs
New upstream version 1.22.1+dfsg1
[rustc.git] / src / librustc_incremental / persist / mod.rs
CommitLineData
54a0048b 1// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
54a0048b
SL
11//! When in incremental mode, this pass dumps out the dependency graph
12//! into the given directory. At the same time, it also hashes the
13//! various HIR nodes.
223e47cc 14
54a0048b 15mod data;
54a0048b 16mod dirty_clean;
9e0c209e 17mod fs;
54a0048b
SL
18mod load;
19mod save;
5bcae85e 20mod work_product;
9e0c209e 21mod file_format;
c34b1796 22
ea8adc8c 23pub use self::fs::prepare_session_directory;
9e0c209e
SL
24pub use self::fs::finalize_session_directory;
25pub use self::fs::in_incr_comp_dir;
54a0048b 26pub use self::load::load_dep_graph;
ea8adc8c 27pub use self::load::dep_graph_tcx_init;
54a0048b 28pub use self::save::save_dep_graph;
5bcae85e
SL
29pub use self::save::save_work_products;
30pub use self::work_product::save_trans_partition;
ea8adc8c 31pub use self::work_product::delete_workproduct_files;