Skip to content

Commit a1763b3

Browse files
authored
Unrolled build for rust-lang#117194
Rollup merge of rust-lang#117194 - nnethercote:rustc_incremental, r=cjgillot Minor improvements to `rustc_incremental` Just some things I spotted while looking at this code. r? `@cjgillot`
2 parents 698db85 + e0c990e commit a1763b3

File tree

6 files changed

+17
-20
lines changed

6 files changed

+17
-20
lines changed

compiler/rustc_incremental/src/lib.rs

-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![cfg_attr(not(bootstrap), doc(rust_logo))]
66
#![cfg_attr(not(bootstrap), feature(rustdoc_internals))]
77
#![cfg_attr(not(bootstrap), allow(internal_features))]
8-
#![feature(never_type)]
98
#![recursion_limit = "256"]
109
#![deny(rustc::untranslatable_diagnostic)]
1110
#![deny(rustc::diagnostic_outside_of_impl)]
@@ -19,15 +18,11 @@ mod assert_dep_graph;
1918
mod errors;
2019
mod persist;
2120

22-
use assert_dep_graph::assert_dep_graph;
2321
pub use persist::copy_cgu_workproduct_to_incr_comp_cache_dir;
24-
pub use persist::delete_workproduct_files;
2522
pub use persist::finalize_session_directory;
26-
pub use persist::garbage_collect_session_directories;
2723
pub use persist::in_incr_comp_dir;
2824
pub use persist::in_incr_comp_dir_sess;
2925
pub use persist::load_query_result_cache;
30-
pub use persist::prepare_session_directory;
3126
pub use persist::save_dep_graph;
3227
pub use persist::save_work_product_index;
3328
pub use persist::setup_dep_graph;

compiler/rustc_incremental/src/persist/fs.rs

+11-8
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//! ## Synchronization
5454
//!
5555
//! There is some synchronization needed in order for the compiler to be able to
56-
//! determine whether a given private session directory is not in used any more.
56+
//! determine whether a given private session directory is not in use any more.
5757
//! This is done by creating a lock file for each session directory and
5858
//! locking it while the directory is still being used. Since file locks have
5959
//! operating system support, we can rely on the lock being released if the
@@ -136,26 +136,29 @@ const QUERY_CACHE_FILENAME: &str = "query-cache.bin";
136136
const INT_ENCODE_BASE: usize = base_n::CASE_INSENSITIVE;
137137

138138
/// Returns the path to a session's dependency graph.
139-
pub fn dep_graph_path(sess: &Session) -> PathBuf {
139+
pub(crate) fn dep_graph_path(sess: &Session) -> PathBuf {
140140
in_incr_comp_dir_sess(sess, DEP_GRAPH_FILENAME)
141141
}
142+
142143
/// Returns the path to a session's staging dependency graph.
143144
///
144145
/// On the difference between dep-graph and staging dep-graph,
145146
/// see `build_dep_graph`.
146-
pub fn staging_dep_graph_path(sess: &Session) -> PathBuf {
147+
pub(crate) fn staging_dep_graph_path(sess: &Session) -> PathBuf {
147148
in_incr_comp_dir_sess(sess, STAGING_DEP_GRAPH_FILENAME)
148149
}
149-
pub fn work_products_path(sess: &Session) -> PathBuf {
150+
151+
pub(crate) fn work_products_path(sess: &Session) -> PathBuf {
150152
in_incr_comp_dir_sess(sess, WORK_PRODUCTS_FILENAME)
151153
}
154+
152155
/// Returns the path to a session's query cache.
153156
pub fn query_cache_path(sess: &Session) -> PathBuf {
154157
in_incr_comp_dir_sess(sess, QUERY_CACHE_FILENAME)
155158
}
156159

157160
/// Locks a given session directory.
158-
pub fn lock_file_path(session_dir: &Path) -> PathBuf {
161+
fn lock_file_path(session_dir: &Path) -> PathBuf {
159162
let crate_dir = session_dir.parent().unwrap();
160163

161164
let directory_name = session_dir.file_name().unwrap().to_string_lossy();
@@ -202,7 +205,7 @@ pub fn in_incr_comp_dir(incr_comp_session_dir: &Path, file_name: &str) -> PathBu
202205
/// The garbage collection will take care of it.
203206
///
204207
/// [`rustc_interface::queries::dep_graph`]: ../../rustc_interface/struct.Queries.html#structfield.dep_graph
205-
pub fn prepare_session_directory(
208+
pub(crate) fn prepare_session_directory(
206209
sess: &Session,
207210
crate_name: Symbol,
208211
stable_crate_id: StableCrateId,
@@ -373,7 +376,7 @@ pub fn finalize_session_directory(sess: &Session, svh: Option<Svh>) {
373376
let _ = garbage_collect_session_directories(sess);
374377
}
375378

376-
pub fn delete_all_session_dir_contents(sess: &Session) -> io::Result<()> {
379+
pub(crate) fn delete_all_session_dir_contents(sess: &Session) -> io::Result<()> {
377380
let sess_dir_iterator = sess.incr_comp_session_dir().read_dir()?;
378381
for entry in sess_dir_iterator {
379382
let entry = entry?;
@@ -621,7 +624,7 @@ fn is_old_enough_to_be_collected(timestamp: SystemTime) -> bool {
621624
}
622625

623626
/// Runs garbage collection for the current session.
624-
pub fn garbage_collect_session_directories(sess: &Session) -> io::Result<()> {
627+
pub(crate) fn garbage_collect_session_directories(sess: &Session) -> io::Result<()> {
625628
debug!("garbage_collect_session_directories() - begin");
626629

627630
let session_directory = sess.incr_comp_session_dir();

compiler/rustc_incremental/src/persist/load.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Code to save/load the dep-graph from files.
1+
//! Code to load the dep-graph from files.
22
33
use crate::errors;
44
use rustc_data_structures::memmap::Mmap;

compiler/rustc_incremental/src/persist/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@ mod save;
1111
mod work_product;
1212

1313
pub use fs::finalize_session_directory;
14-
pub use fs::garbage_collect_session_directories;
1514
pub use fs::in_incr_comp_dir;
1615
pub use fs::in_incr_comp_dir_sess;
17-
pub use fs::prepare_session_directory;
1816
pub use load::load_query_result_cache;
1917
pub use load::setup_dep_graph;
2018
pub use load::LoadResult;
2119
pub use save::save_dep_graph;
2220
pub use save::save_work_product_index;
2321
pub use work_product::copy_cgu_workproduct_to_incr_comp_cache_dir;
24-
pub use work_product::delete_workproduct_files;

compiler/rustc_incremental/src/persist/save.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use crate::assert_dep_graph::assert_dep_graph;
12
use crate::errors;
23
use rustc_data_structures::fx::FxIndexMap;
34
use rustc_data_structures::sync::join;
@@ -39,7 +40,7 @@ pub fn save_dep_graph(tcx: TyCtxt<'_>) {
3940
let dep_graph_path = dep_graph_path(sess);
4041
let staging_dep_graph_path = staging_dep_graph_path(sess);
4142

42-
sess.time("assert_dep_graph", || crate::assert_dep_graph(tcx));
43+
sess.time("assert_dep_graph", || assert_dep_graph(tcx));
4344
sess.time("check_dirty_clean", || dirty_clean::check_dirty_clean_annotations(tcx));
4445

4546
if sess.opts.unstable_opts.incremental_info {

compiler/rustc_incremental/src/persist/work_product.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ use rustc_session::Session;
1111
use std::fs as std_fs;
1212
use std::path::Path;
1313

14-
/// Copies a CGU work product to the incremental compilation directory, so next compilation can find and reuse it.
14+
/// Copies a CGU work product to the incremental compilation directory, so next compilation can
15+
/// find and reuse it.
1516
pub fn copy_cgu_workproduct_to_incr_comp_cache_dir(
1617
sess: &Session,
1718
cgu_name: &str,
@@ -45,7 +46,7 @@ pub fn copy_cgu_workproduct_to_incr_comp_cache_dir(
4546
}
4647

4748
/// Removes files for a given work product.
48-
pub fn delete_workproduct_files(sess: &Session, work_product: &WorkProduct) {
49+
pub(crate) fn delete_workproduct_files(sess: &Session, work_product: &WorkProduct) {
4950
for (_, path) in work_product.saved_files.items().into_sorted_stable_ord() {
5051
let path = in_incr_comp_dir_sess(sess, path);
5152
if let Err(err) = std_fs::remove_file(&path) {

0 commit comments

Comments
 (0)