From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- compiler/rustc_query_system/src/cache.rs | 53 ++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 compiler/rustc_query_system/src/cache.rs (limited to 'compiler/rustc_query_system/src/cache.rs') diff --git a/compiler/rustc_query_system/src/cache.rs b/compiler/rustc_query_system/src/cache.rs new file mode 100644 index 000000000..d592812f7 --- /dev/null +++ b/compiler/rustc_query_system/src/cache.rs @@ -0,0 +1,53 @@ +//! Cache for candidate selection. + +use crate::dep_graph::{DepContext, DepNodeIndex}; + +use rustc_data_structures::fx::FxHashMap; +use rustc_data_structures::sync::Lock; + +use std::hash::Hash; + +#[derive(Clone)] +pub struct Cache { + hashmap: Lock>>, +} + +impl Default for Cache { + fn default() -> Self { + Self { hashmap: Default::default() } + } +} + +impl Cache { + /// Actually frees the underlying memory in contrast to what stdlib containers do on `clear` + pub fn clear(&self) { + *self.hashmap.borrow_mut() = Default::default(); + } +} + +impl Cache { + pub fn get(&self, key: &Key, tcx: CTX) -> Option { + Some(self.hashmap.borrow().get(key)?.get(tcx)) + } + + pub fn insert(&self, key: Key, dep_node: DepNodeIndex, value: Value) { + self.hashmap.borrow_mut().insert(key, WithDepNode::new(dep_node, value)); + } +} + +#[derive(Clone, Eq, PartialEq)] +pub struct WithDepNode { + dep_node: DepNodeIndex, + cached_value: T, +} + +impl WithDepNode { + pub fn new(dep_node: DepNodeIndex, cached_value: T) -> Self { + WithDepNode { dep_node, cached_value } + } + + pub fn get(&self, tcx: CTX) -> T { + tcx.dep_graph().read_index(self.dep_node); + self.cached_value.clone() + } +} -- cgit v1.2.3