]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_query_system/src/query/config.rs
f2a6b6df4b9de3f75208a6eb5dadc5fa39a77363
[rust.git] / compiler / rustc_query_system / src / query / config.rs
1 //! Query configuration and description traits.
2
3 use crate::dep_graph::DepNode;
4 use crate::dep_graph::SerializedDepNodeIndex;
5 use crate::query::caches::QueryCache;
6 use crate::query::{QueryCacheStore, QueryContext, QueryState};
7
8 use rustc_data_structures::fingerprint::Fingerprint;
9 use rustc_errors::DiagnosticBuilder;
10 use std::fmt::Debug;
11 use std::hash::Hash;
12
13 pub trait QueryConfig {
14     const NAME: &'static str;
15
16     type Key: Eq + Hash + Clone + Debug;
17     type Value;
18     type Stored: Clone;
19 }
20
21 pub(crate) struct QueryVtable<CTX: QueryContext, K, V> {
22     pub anon: bool,
23     pub dep_kind: CTX::DepKind,
24     pub eval_always: bool,
25
26     // Don't use this method to compute query results, instead use the methods on TyCtxt
27     pub compute: fn(CTX, K) -> V,
28
29     pub hash_result: fn(&mut CTX::StableHashingContext, &V) -> Option<Fingerprint>,
30     pub handle_cycle_error: fn(CTX, DiagnosticBuilder<'_>) -> V,
31     pub cache_on_disk: fn(CTX, &K, Option<&V>) -> bool,
32     pub try_load_from_disk: fn(CTX, SerializedDepNodeIndex) -> Option<V>,
33 }
34
35 impl<CTX: QueryContext, K, V> QueryVtable<CTX, K, V> {
36     pub(crate) fn to_dep_node(&self, tcx: CTX::DepContext, key: &K) -> DepNode<CTX::DepKind>
37     where
38         K: crate::dep_graph::DepNodeParams<CTX::DepContext>,
39     {
40         DepNode::construct(tcx, self.dep_kind, key)
41     }
42
43     pub(crate) fn compute(&self, tcx: CTX, key: K) -> V {
44         (self.compute)(tcx, key)
45     }
46
47     pub(crate) fn hash_result(
48         &self,
49         hcx: &mut CTX::StableHashingContext,
50         value: &V,
51     ) -> Option<Fingerprint> {
52         (self.hash_result)(hcx, value)
53     }
54
55     pub(crate) fn cache_on_disk(&self, tcx: CTX, key: &K, value: Option<&V>) -> bool {
56         (self.cache_on_disk)(tcx, key, value)
57     }
58
59     pub(crate) fn try_load_from_disk(&self, tcx: CTX, index: SerializedDepNodeIndex) -> Option<V> {
60         (self.try_load_from_disk)(tcx, index)
61     }
62 }
63
64 pub trait QueryAccessors<CTX: QueryContext>: QueryConfig {
65     const ANON: bool;
66     const EVAL_ALWAYS: bool;
67     const DEP_KIND: CTX::DepKind;
68
69     type Cache: QueryCache<Key = Self::Key, Stored = Self::Stored, Value = Self::Value>;
70
71     // Don't use this method to access query results, instead use the methods on TyCtxt
72     fn query_state<'a>(tcx: CTX) -> &'a QueryState<CTX::DepKind, Self::Key>
73     where
74         CTX: 'a;
75
76     // Don't use this method to access query results, instead use the methods on TyCtxt
77     fn query_cache<'a>(tcx: CTX) -> &'a QueryCacheStore<Self::Cache>
78     where
79         CTX: 'a;
80
81     // Don't use this method to compute query results, instead use the methods on TyCtxt
82     fn compute(tcx: CTX, key: Self::Key) -> Self::Value;
83
84     fn hash_result(
85         hcx: &mut CTX::StableHashingContext,
86         result: &Self::Value,
87     ) -> Option<Fingerprint>;
88
89     fn handle_cycle_error(tcx: CTX, diag: DiagnosticBuilder<'_>) -> Self::Value;
90 }
91
92 pub trait QueryDescription<CTX: QueryContext>: QueryAccessors<CTX> {
93     fn describe(tcx: CTX, key: Self::Key) -> String;
94
95     #[inline]
96     fn cache_on_disk(_: CTX, _: &Self::Key, _: Option<&Self::Value>) -> bool {
97         false
98     }
99
100     fn try_load_from_disk(_: CTX, _: SerializedDepNodeIndex) -> Option<Self::Value> {
101         panic!("QueryDescription::load_from_disk() called for an unsupported query.")
102     }
103 }
104
105 pub(crate) trait QueryVtableExt<CTX: QueryContext, K, V> {
106     const VTABLE: QueryVtable<CTX, K, V>;
107 }
108
109 impl<CTX, Q> QueryVtableExt<CTX, Q::Key, Q::Value> for Q
110 where
111     CTX: QueryContext,
112     Q: QueryDescription<CTX>,
113 {
114     const VTABLE: QueryVtable<CTX, Q::Key, Q::Value> = QueryVtable {
115         anon: Q::ANON,
116         dep_kind: Q::DEP_KIND,
117         eval_always: Q::EVAL_ALWAYS,
118         compute: Q::compute,
119         hash_result: Q::hash_result,
120         handle_cycle_error: Q::handle_cycle_error,
121         cache_on_disk: Q::cache_on_disk,
122         try_load_from_disk: Q::try_load_from_disk,
123     };
124 }