//! Query configuration and description traits. use crate::dep_graph::DepNode; use crate::dep_graph::SerializedDepNodeIndex; use crate::error::HandleCycleError; use crate::ich::StableHashingContext; use crate::query::caches::QueryCache; use crate::query::{QueryContext, QueryState}; use rustc_data_structures::fingerprint::Fingerprint; use std::fmt::Debug; use std::hash::Hash; pub trait QueryConfig { const NAME: &'static str; type Key: Eq + Hash + Clone + Debug; type Value: Debug; type Stored: Debug + Clone + std::borrow::Borrow; type Cache: QueryCache; // Don't use this method to access query results, instead use the methods on TyCtxt fn query_state<'a>(tcx: Qcx) -> &'a QueryState where Qcx: 'a; // Don't use this method to access query results, instead use the methods on TyCtxt fn query_cache<'a>(tcx: Qcx) -> &'a Self::Cache where Qcx: 'a; // Don't use this method to compute query results, instead use the methods on TyCtxt fn make_vtable(tcx: Qcx, key: &Self::Key) -> QueryVTable; fn cache_on_disk(tcx: Qcx::DepContext, key: &Self::Key) -> bool; // Don't use this method to compute query results, instead use the methods on TyCtxt fn execute_query(tcx: Qcx::DepContext, k: Self::Key) -> Self::Stored; } #[derive(Copy, Clone)] pub struct QueryVTable { pub anon: bool, pub dep_kind: Qcx::DepKind, pub eval_always: bool, pub depth_limit: bool, pub feedable: bool, pub compute: fn(Qcx::DepContext, K) -> V, pub hash_result: Option, &V) -> Fingerprint>, pub handle_cycle_error: HandleCycleError, // NOTE: this is also `None` if `cache_on_disk()` returns false, not just if it's unsupported by the query pub try_load_from_disk: Option Option>, } impl QueryVTable { pub(crate) fn to_dep_node(&self, tcx: Qcx::DepContext, key: &K) -> DepNode where K: crate::dep_graph::DepNodeParams, { DepNode::construct(tcx, self.dep_kind, key) } pub(crate) fn compute(&self, tcx: Qcx::DepContext, key: K) -> V { (self.compute)(tcx, key) } }