Skip to content

Commit ca97268

Browse files
Make rustc_next_trait_solver nightly again
1 parent c20d909 commit ca97268

File tree

10 files changed

+93
-67
lines changed

10 files changed

+93
-67
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -4913,6 +4913,7 @@ version = "0.0.0"
49134913
dependencies = [
49144914
"bitflags 2.5.0",
49154915
"derivative",
4916+
"indexmap",
49164917
"rustc_ast_ir",
49174918
"rustc_data_structures",
49184919
"rustc_index",

compiler/rustc_next_trait_solver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
99
derivative = "2.2.0"
10-
rustc_ast_ir = { path = "../rustc_ast_ir" }
10+
rustc_ast_ir = { path = "../rustc_ast_ir", default-features = false }
1111
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
1212
rustc_index = { path = "../rustc_index", default-features = false }
1313
rustc_macros = { path = "../rustc_macros", optional = true }

compiler/rustc_next_trait_solver/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
//! but were uplifted in the process of making the new trait solver generic.
55
//! So if you got to this crate from the old solver, it's totally normal.
66
7-
#![feature(let_chains)]
8-
97
pub mod canonicalizer;
108
pub mod infcx;
119
pub mod resolve;

compiler/rustc_next_trait_solver/src/solve/assembly/structural_traits.rs

+34-28
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! traits, `Copy`/`Clone`.
33
44
use rustc_ast_ir::{Movability, Mutability};
5-
use rustc_data_structures::fx::FxHashMap;
5+
use rustc_type_ir::data_structures::HashMap;
66
use rustc_type_ir::fold::{TypeFoldable, TypeFolder, TypeSuperFoldable};
77
use rustc_type_ir::inherent::*;
88
use rustc_type_ir::lang_items::TraitSolverLangItem;
@@ -304,9 +304,10 @@ pub(in crate::solve) fn extract_tupled_inputs_and_output_from_callable<I: Intern
304304
let kind_ty = args.kind_ty();
305305
let sig = args.coroutine_closure_sig().skip_binder();
306306

307-
let coroutine_ty = if let Some(closure_kind) = kind_ty.to_opt_closure_kind()
308-
&& !args.tupled_upvars_ty().is_ty_var()
309-
{
307+
// FIXME: let_chains
308+
let kind = kind_ty.to_opt_closure_kind();
309+
let coroutine_ty = if kind.is_some() && !args.tupled_upvars_ty().is_ty_var() {
310+
let closure_kind = kind.unwrap();
310311
if !closure_kind.extends(goal_kind) {
311312
return Err(NoSolution);
312313
}
@@ -411,10 +412,11 @@ pub(in crate::solve) fn extract_tupled_inputs_and_output_from_async_callable<I:
411412
let kind_ty = args.kind_ty();
412413
let sig = args.coroutine_closure_sig().skip_binder();
413414
let mut nested = vec![];
414-
let coroutine_ty = if let Some(closure_kind) = kind_ty.to_opt_closure_kind()
415-
&& !args.tupled_upvars_ty().is_ty_var()
416-
{
417-
if !closure_kind.extends(goal_kind) {
415+
416+
// FIXME: let_chains
417+
let kind = kind_ty.to_opt_closure_kind();
418+
let coroutine_ty = if kind.is_some() && !args.tupled_upvars_ty().is_ty_var() {
419+
if !kind.unwrap().extends(goal_kind) {
418420
return Err(NoSolution);
419421
}
420422

@@ -683,7 +685,7 @@ where
683685
);
684686
}
685687

686-
let mut replace_projection_with = FxHashMap::default();
688+
let mut replace_projection_with = HashMap::default();
687689
for bound in object_bounds {
688690
if let ty::ExistentialPredicate::Projection(proj) = bound.skip_binder() {
689691
let proj = proj.with_self_ty(tcx, trait_ref.self_ty());
@@ -713,7 +715,7 @@ where
713715
struct ReplaceProjectionWith<'a, Infcx: SolverDelegate<Interner = I>, I: Interner> {
714716
ecx: &'a EvalCtxt<'a, Infcx>,
715717
param_env: I::ParamEnv,
716-
mapping: FxHashMap<I::DefId, ty::Binder<I, ty::ProjectionPredicate<I>>>,
718+
mapping: HashMap<I::DefId, ty::Binder<I, ty::ProjectionPredicate<I>>>,
717719
nested: Vec<Goal<I, I::Predicate>>,
718720
}
719721

@@ -725,24 +727,28 @@ impl<Infcx: SolverDelegate<Interner = I>, I: Interner> TypeFolder<I>
725727
}
726728

727729
fn fold_ty(&mut self, ty: I::Ty) -> I::Ty {
728-
if let ty::Alias(ty::Projection, alias_ty) = ty.kind()
729-
&& let Some(replacement) = self.mapping.get(&alias_ty.def_id)
730-
{
731-
// We may have a case where our object type's projection bound is higher-ranked,
732-
// but the where clauses we instantiated are not. We can solve this by instantiating
733-
// the binder at the usage site.
734-
let proj = self.ecx.instantiate_binder_with_infer(*replacement);
735-
// FIXME: Technically this equate could be fallible...
736-
self.nested.extend(
737-
self.ecx
738-
.eq_and_get_goals(
739-
self.param_env,
740-
alias_ty,
741-
proj.projection_term.expect_ty(self.ecx.interner()),
742-
)
743-
.expect("expected to be able to unify goal projection with dyn's projection"),
744-
);
745-
proj.term.expect_ty()
730+
if let ty::Alias(ty::Projection, alias_ty) = ty.kind() {
731+
if let Some(replacement) = self.mapping.get(&alias_ty.def_id) {
732+
// We may have a case where our object type's projection bound is higher-ranked,
733+
// but the where clauses we instantiated are not. We can solve this by instantiating
734+
// the binder at the usage site.
735+
let proj = self.ecx.instantiate_binder_with_infer(*replacement);
736+
// FIXME: Technically this equate could be fallible...
737+
self.nested.extend(
738+
self.ecx
739+
.eq_and_get_goals(
740+
self.param_env,
741+
alias_ty,
742+
proj.projection_term.expect_ty(self.ecx.interner()),
743+
)
744+
.expect(
745+
"expected to be able to unify goal projection with dyn's projection",
746+
),
747+
);
748+
proj.term.expect_ty()
749+
} else {
750+
ty.super_fold_with(self)
751+
}
746752
} else {
747753
ty.super_fold_with(self)
748754
}

compiler/rustc_next_trait_solver/src/solve/eval_ctxt/mod.rs

+24-17
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use std::ops::ControlFlow;
22

3-
use rustc_data_structures::stack::ensure_sufficient_stack;
3+
#[cfg(feature = "nightly")]
44
use rustc_macros::{HashStable_NoContext, TyDecodable, TyEncodable};
5+
use rustc_type_ir::data_structures::ensure_sufficient_stack;
56
use rustc_type_ir::fold::{TypeFoldable, TypeFolder, TypeSuperFoldable};
67
use rustc_type_ir::inherent::*;
78
use rustc_type_ir::relate::Relate;
@@ -88,7 +89,7 @@ where
8889
#[derive(derivative::Derivative)]
8990
#[derivative(Clone(bound = ""), Debug(bound = ""), Default(bound = ""))]
9091
#[derive(TypeVisitable_Generic, TypeFoldable_Generic, Lift_Generic)]
91-
#[derive(TyDecodable, TyEncodable, HashStable_NoContext)]
92+
#[cfg_attr(feature = "nightly", derive(TyDecodable, TyEncodable, HashStable_NoContext))]
9293
// FIXME: This can be made crate-private once `EvalCtxt` also lives in this crate.
9394
pub struct NestedGoals<I: Interner> {
9495
/// These normalizes-to goals are treated specially during the evaluation
@@ -116,7 +117,8 @@ impl<I: Interner> NestedGoals<I> {
116117
}
117118
}
118119

119-
#[derive(PartialEq, Eq, Debug, Hash, HashStable_NoContext, Clone, Copy)]
120+
#[derive(PartialEq, Eq, Debug, Hash, Clone, Copy)]
121+
#[cfg_attr(feature = "nightly", derive(HashStable_NoContext))]
120122
pub enum GenerateProofTree {
121123
Yes,
122124
No,
@@ -689,14 +691,15 @@ where
689691
fn visit_ty(&mut self, t: I::Ty) -> Self::Result {
690692
match t.kind() {
691693
ty::Infer(ty::TyVar(vid)) => {
692-
if let ty::TermKind::Ty(term) = self.term.kind()
693-
&& let ty::Infer(ty::TyVar(term_vid)) = term.kind()
694-
&& self.infcx.root_ty_var(vid) == self.infcx.root_ty_var(term_vid)
695-
{
696-
ControlFlow::Break(())
697-
} else {
698-
self.check_nameable(self.infcx.universe_of_ty(vid).unwrap())
694+
if let ty::TermKind::Ty(term) = self.term.kind() {
695+
if let ty::Infer(ty::TyVar(term_vid)) = term.kind() {
696+
if self.infcx.root_ty_var(vid) == self.infcx.root_ty_var(term_vid) {
697+
return ControlFlow::Break(());
698+
}
699+
}
699700
}
701+
702+
self.check_nameable(self.infcx.universe_of_ty(vid).unwrap())
700703
}
701704
ty::Placeholder(p) => self.check_nameable(p.universe()),
702705
_ => {
@@ -712,14 +715,18 @@ where
712715
fn visit_const(&mut self, c: I::Const) -> Self::Result {
713716
match c.kind() {
714717
ty::ConstKind::Infer(ty::InferConst::Var(vid)) => {
715-
if let ty::TermKind::Const(term) = self.term.kind()
716-
&& let ty::ConstKind::Infer(ty::InferConst::Var(term_vid)) = term.kind()
717-
&& self.infcx.root_const_var(vid) == self.infcx.root_const_var(term_vid)
718-
{
719-
ControlFlow::Break(())
720-
} else {
721-
self.check_nameable(self.infcx.universe_of_ct(vid).unwrap())
718+
if let ty::TermKind::Const(term) = self.term.kind() {
719+
if let ty::ConstKind::Infer(ty::InferConst::Var(term_vid)) = term.kind()
720+
{
721+
if self.infcx.root_const_var(vid)
722+
== self.infcx.root_const_var(term_vid)
723+
{
724+
return ControlFlow::Break(());
725+
}
726+
}
722727
}
728+
729+
self.check_nameable(self.infcx.universe_of_ct(vid).unwrap())
723730
}
724731
ty::ConstKind::Placeholder(p) => self.check_nameable(p.universe()),
725732
_ => {

compiler/rustc_next_trait_solver/src/solve/search_graph.rs

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::mem;
22

3-
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
43
use rustc_index::{Idx, IndexVec};
4+
use rustc_type_ir::data_structures::{HashMap, HashSet};
55
use rustc_type_ir::inherent::*;
66
use rustc_type_ir::Interner;
77
use tracing::debug;
@@ -17,6 +17,7 @@ pub struct SolverLimit(usize);
1717

1818
rustc_index::newtype_index! {
1919
#[orderable]
20+
#[gate_rustc_only]
2021
pub struct StackDepth {}
2122
}
2223

@@ -70,7 +71,7 @@ struct StackEntry<I: Interner> {
7071
/// C :- D
7172
/// D :- C
7273
/// ```
73-
cycle_participants: FxHashSet<CanonicalInput<I>>,
74+
cycle_participants: HashSet<CanonicalInput<I>>,
7475
/// Starts out as `None` and gets set when rerunning this
7576
/// goal in case we encounter a cycle.
7677
provisional_result: Option<QueryResult<I>>,
@@ -126,7 +127,7 @@ pub(super) struct SearchGraph<I: Interner> {
126127
///
127128
/// An element is *deeper* in the stack if its index is *lower*.
128129
stack: IndexVec<StackDepth, StackEntry<I>>,
129-
provisional_cache: FxHashMap<CanonicalInput<I>, ProvisionalCacheEntry<I>>,
130+
provisional_cache: HashMap<CanonicalInput<I>, ProvisionalCacheEntry<I>>,
130131
}
131132

132133
impl<I: Interner> SearchGraph<I> {
@@ -227,13 +228,17 @@ impl<I: Interner> SearchGraph<I> {
227228
}
228229

229230
fn clear_dependent_provisional_results(
230-
provisional_cache: &mut FxHashMap<CanonicalInput<I>, ProvisionalCacheEntry<I>>,
231+
provisional_cache: &mut HashMap<CanonicalInput<I>, ProvisionalCacheEntry<I>>,
231232
head: StackDepth,
232233
) {
233234
#[allow(rustc::potential_query_instability)]
234235
provisional_cache.retain(|_, entry| {
235-
entry.with_coinductive_stack.take_if(|p| p.head == head);
236-
entry.with_inductive_stack.take_if(|p| p.head == head);
236+
if entry.with_coinductive_stack.as_ref().is_some_and(|p| p.head == head) {
237+
entry.with_coinductive_stack.take();
238+
}
239+
if entry.with_inductive_stack.as_ref().is_some_and(|p| p.head == head) {
240+
entry.with_inductive_stack.take();
241+
}
237242
!entry.is_empty()
238243
});
239244
}

compiler/rustc_next_trait_solver/src/solve/trait_goals.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Dealing with trait goals, i.e. `T: Trait<'a, U>`.
22
33
use rustc_ast_ir::Movability;
4-
use rustc_data_structures::fx::FxIndexSet;
4+
use rustc_type_ir::data_structures::IndexSet;
55
use rustc_type_ir::inherent::*;
66
use rustc_type_ir::lang_items::TraitSolverLangItem;
77
use rustc_type_ir::visit::TypeVisitableExt as _;
@@ -821,7 +821,7 @@ where
821821
// We may upcast to auto traits that are either explicitly listed in
822822
// the object type's bounds, or implied by the principal trait ref's
823823
// supertraits.
824-
let a_auto_traits: FxIndexSet<I::DefId> = a_data
824+
let a_auto_traits: IndexSet<I::DefId> = a_data
825825
.auto_traits()
826826
.into_iter()
827827
.chain(a_data.principal_def_id().into_iter().flat_map(|principal_def_id| {

compiler/rustc_type_ir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ edition = "2021"
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
99
derivative = "2.2.0"
10+
indexmap = "2.0.0"
1011
rustc_ast_ir = { path = "../rustc_ast_ir", default-features = false }
1112
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
1213
rustc_index = { path = "../rustc_index", default-features = false }

compiler/rustc_type_ir/src/data_structures.rs

+14-4
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,28 @@
22
mod impl_ {
33
pub use rustc_data_structures::fx::FxHashMap as HashMap;
44
pub use rustc_data_structures::fx::FxHashSet as HashSet;
5-
pub use rustc_data_structures::sso::SsoHashMap as SsoHashMap;
6-
pub use rustc_data_structures::sso::SsoHashSet as SsoHashSet;
5+
pub use rustc_data_structures::fx::FxIndexMap as IndexMap;
6+
pub use rustc_data_structures::fx::FxIndexSet as IndexSet;
7+
pub use rustc_data_structures::sso::SsoHashMap;
8+
pub use rustc_data_structures::sso::SsoHashSet;
9+
pub use rustc_data_structures::stack::ensure_sufficient_stack;
710
pub use rustc_data_structures::sync::Lrc;
811
}
912

1013
#[cfg(not(feature = "nightly"))]
1114
mod impl_ {
15+
pub use indexmap::IndexMap;
16+
pub use indexmap::IndexSet;
1217
pub use std::collections::HashMap;
13-
pub use std::collections::HashSet;
1418
pub use std::collections::HashMap as SsoHashMap;
19+
pub use std::collections::HashSet;
1520
pub use std::collections::HashSet as SsoHashSet;
1621
pub use std::sync::Arc as Lrc;
22+
23+
#[inline]
24+
pub fn ensure_sufficient_stack<R>(f: impl FnOnce() -> R) -> R {
25+
f()
26+
}
1727
}
1828

19-
pub use impl_::*;
29+
pub use impl_::*;

library/std/Cargo.toml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
cargo-features = ["public-dependency"]
2-
31
[package]
42
name = "std"
53
version = "0.0.0"
@@ -12,11 +10,11 @@ edition = "2021"
1210
crate-type = ["dylib", "rlib"]
1311

1412
[dependencies]
15-
alloc = { path = "../alloc", public = true }
13+
alloc = { path = "../alloc" }
1614
cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1715
panic_unwind = { path = "../panic_unwind", optional = true }
1816
panic_abort = { path = "../panic_abort" }
19-
core = { path = "../core", public = true }
17+
core = { path = "../core" }
2018
compiler_builtins = { version = "0.1.105" }
2119
profiler_builtins = { path = "../profiler_builtins", optional = true }
2220
unwind = { path = "../unwind" }
@@ -31,7 +29,7 @@ miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
3129
addr2line = { version = "0.22.0", optional = true, default-features = false }
3230

3331
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
34-
libc = { version = "0.2.153", default-features = false, features = ['rustc-dep-of-std'], public = true }
32+
libc = { version = "0.2.153", default-features = false, features = ['rustc-dep-of-std'] }
3533

3634
[target.'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))'.dependencies]
3735
object = { version = "0.36.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] }
@@ -47,10 +45,10 @@ rand_xorshift = "0.3.0"
4745
dlmalloc = { version = "0.2.4", features = ['rustc-dep-of-std'] }
4846

4947
[target.x86_64-fortanix-unknown-sgx.dependencies]
50-
fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'], public = true }
48+
fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'] }
5149

5250
[target.'cfg(target_os = "hermit")'.dependencies]
53-
hermit-abi = { version = "0.4.0", features = ['rustc-dep-of-std'], public = true }
51+
hermit-abi = { version = "0.4.0", features = ['rustc-dep-of-std'] }
5452

5553
[target.'cfg(target_os = "wasi")'.dependencies]
5654
wasi = { version = "0.11.0", features = ['rustc-dep-of-std'], default-features = false }

0 commit comments

Comments
 (0)