Skip to content

Commit 9b00e21

Browse files
Remove unused DepTrackingMap
1 parent 6c2c29c commit 9b00e21

File tree

4 files changed

+3
-156
lines changed

4 files changed

+3
-156
lines changed

src/librustc/dep_graph/dep_tracking_map.rs

-87
This file was deleted.

src/librustc/dep_graph/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
pub mod debug;
22
mod dep_node;
3-
mod dep_tracking_map;
43
mod graph;
54
mod prev;
65
mod query;
76
mod safe;
87
mod serialized;
98
pub mod cgu_reuse_tracker;
109

11-
pub use self::dep_tracking_map::{DepTrackingMap, DepTrackingMapConfig};
1210
pub use self::dep_node::{DepNode, DepKind, DepConstructor, WorkProductId, RecoverKey, label_strs};
1311
pub use self::graph::{DepGraph, WorkProduct, DepNodeIndex, DepNodeColor, TaskDeps, hash_result};
1412
pub use self::graph::WorkProductFileKind;

src/librustc/traits/codegen/mod.rs

+1-28
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
// seems likely that they should eventually be merged into more
44
// general routines.
55

6-
use crate::dep_graph::{DepKind, DepTrackingMapConfig};
7-
use std::marker::PhantomData;
86
use crate::infer::InferCtxt;
97
use crate::traits::{FulfillmentContext, Obligation, ObligationCause, SelectionContext,
108
TraitEngine, Vtable};
11-
use crate::ty::{self, Ty, TyCtxt};
9+
use crate::ty::{self, TyCtxt};
1210
use crate::ty::subst::{Subst, SubstsRef};
1311
use crate::ty::fold::TypeFoldable;
1412

@@ -100,33 +98,8 @@ impl<'tcx> TyCtxt<'tcx> {
10098
}
10199
}
102100

103-
// Implement DepTrackingMapConfig for `trait_cache`
104-
pub struct TraitSelectionCache<'tcx> {
105-
data: PhantomData<&'tcx ()>
106-
}
107-
108-
impl<'tcx> DepTrackingMapConfig for TraitSelectionCache<'tcx> {
109-
type Key = (ty::ParamEnv<'tcx>, ty::PolyTraitRef<'tcx>);
110-
type Value = Vtable<'tcx, ()>;
111-
fn to_dep_kind() -> DepKind {
112-
DepKind::TraitSelect
113-
}
114-
}
115-
116101
// # Global Cache
117102

118-
pub struct ProjectionCache<'tcx> {
119-
data: PhantomData<&'tcx ()>,
120-
}
121-
122-
impl<'tcx> DepTrackingMapConfig for ProjectionCache<'tcx> {
123-
type Key = Ty<'tcx>;
124-
type Value = Ty<'tcx>;
125-
fn to_dep_kind() -> DepKind {
126-
DepKind::TraitSelect
127-
}
128-
}
129-
130103
impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
131104
/// Finishes processes any obligations that remain in the
132105
/// fulfillment context, and then returns the result with all type

src/librustc/util/common.rs

+2-39
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#![allow(non_camel_case_types)]
22

3-
use rustc_data_structures::{fx::FxHashMap, sync::Lock};
3+
use rustc_data_structures::sync::Lock;
44

5-
use std::cell::{RefCell, Cell};
5+
use std::cell::Cell;
66
use std::fmt::Debug;
7-
use std::hash::Hash;
87
use std::time::{Duration, Instant};
98

109
use std::sync::mpsc::{Sender};
@@ -279,39 +278,3 @@ pub fn indenter() -> Indenter {
279278
debug!(">>");
280279
Indenter { _cannot_construct_outside_of_this_module: () }
281280
}
282-
283-
pub trait MemoizationMap {
284-
type Key: Clone;
285-
type Value: Clone;
286-
287-
/// If `key` is present in the map, return the value,
288-
/// otherwise invoke `op` and store the value in the map.
289-
///
290-
/// N.B., if the receiver is a `DepTrackingMap`, special care is
291-
/// needed in the `op` to ensure that the correct edges are
292-
/// added into the dep graph. See the `DepTrackingMap` impl for
293-
/// more details!
294-
fn memoize<OP>(&self, key: Self::Key, op: OP) -> Self::Value
295-
where OP: FnOnce() -> Self::Value;
296-
}
297-
298-
impl<K, V> MemoizationMap for RefCell<FxHashMap<K,V>>
299-
where K: Hash+Eq+Clone, V: Clone
300-
{
301-
type Key = K;
302-
type Value = V;
303-
304-
fn memoize<OP>(&self, key: K, op: OP) -> V
305-
where OP: FnOnce() -> V
306-
{
307-
let result = self.borrow().get(&key).cloned();
308-
match result {
309-
Some(result) => result,
310-
None => {
311-
let result = op();
312-
self.borrow_mut().insert(key, result.clone());
313-
result
314-
}
315-
}
316-
}
317-
}

0 commit comments

Comments
 (0)