Skip to content

Commit 28eced1

Browse files
authored
Rollup merge of rust-lang#49004 - wesleywiser:incr_specialization_graph_query, r=michaelwoerister
Cache the specialization_graph query Fixes rust-lang#48987 r? @michaelwoerister
2 parents 7aa6651 + 5766e71 commit 28eced1

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

src/librustc/traits/specialize/specialization_graph.rs

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ use util::nodemap::{DefIdMap, FxHashMap};
3636
/// parents of a given specializing impl, which is needed for extracting
3737
/// default items amongst other things. In the simple "chain" rule, every impl
3838
/// has at most one parent.
39+
#[derive(RustcEncodable, RustcDecodable)]
3940
pub struct Graph {
4041
// all impls have a parent; the "root" impls have as their parent the def_id
4142
// of the trait
@@ -47,6 +48,7 @@ pub struct Graph {
4748

4849
/// Children of a given impl, grouped into blanket/non-blanket varieties as is
4950
/// done in `TraitDef`.
51+
#[derive(RustcEncodable, RustcDecodable)]
5052
struct Children {
5153
// Impls of a trait (or specializations of a given impl). To allow for
5254
// quicker lookup, the impls are indexed by a simplified version of their

src/librustc/ty/fast_reject.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub type SimplifiedType = SimplifiedTypeGen<DefId>;
2828
/// because we sometimes need to use SimplifiedTypeGen values as stable sorting
2929
/// keys (in which case we use a DefPathHash as id-type) but in the general case
3030
/// the non-stable but fast to construct DefId-version is the better choice.
31-
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
31+
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, RustcEncodable, RustcDecodable)]
3232
pub enum SimplifiedTypeGen<D>
3333
where D: Copy + Debug + Ord + Eq + Hash
3434
{

src/librustc/ty/maps/config.rs

+1
Original file line numberDiff line numberDiff line change
@@ -727,3 +727,4 @@ impl_disk_cacheable_query!(type_of, |def_id| def_id.is_local());
727727
impl_disk_cacheable_query!(predicates_of, |def_id| def_id.is_local());
728728
impl_disk_cacheable_query!(used_trait_imports, |def_id| def_id.is_local());
729729
impl_disk_cacheable_query!(trans_fn_attrs, |_| true);
730+
impl_disk_cacheable_query!(specialization_graph_of, |_| true);

src/librustc/ty/maps/on_disk_cache.rs

+1
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ impl<'sess> OnDiskCache<'sess> {
232232
encode_query_results::<symbol_name, _>(tcx, enc, qri)?;
233233
encode_query_results::<check_match, _>(tcx, enc, qri)?;
234234
encode_query_results::<trans_fn_attrs, _>(tcx, enc, qri)?;
235+
encode_query_results::<specialization_graph_of, _>(tcx, enc, qri)?;
235236

236237
// const eval is special, it only encodes successfully evaluated constants
237238
use ty::maps::plumbing::GetCacheInternal;

src/librustc/ty/maps/plumbing.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1003,4 +1003,5 @@ impl_load_from_cache!(
10031003
PredicatesOfItem => predicates_of,
10041004
UsedTraitImports => used_trait_imports,
10051005
TransFnAttrs => trans_fn_attrs,
1006+
SpecializationGraph => specialization_graph_of,
10061007
);

0 commit comments

Comments
 (0)