Skip to content

Commit 8fcd4dd

Browse files
committed
Auto merge of #126614 - compiler-errors:uplift-next-trait-solver, r=lcnr
Uplift next trait solver to `rustc_next_trait_solver` 🎉 There's so many FIXMEs! Sorry! Ideally this merges with the FIXMEs and we track and squash them over the near future. Also, this still doesn't build on anything other than rustc. I still need to fix `feature = "nightly"` in `rustc_type_ir`, and remove and fix all the nightly feature usage in the new trait solver (notably: let-chains). Also, sorry `@lcnr` I know you asked for me to separate the commit where we `mv rustc_trait_selection/solve/... rustc_next_trait_solver/solve/...`, but I had already done all the work by that point. Luckily, `git` understands the file moves so it should still be relatively reviewable. If this is still very difficult to review, then I can do some rebasing magic to try to separate this out. Please let me know! r? lcnr
2 parents dd104ef + 6609501 commit 8fcd4dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2824
-1823
lines changed

Cargo.lock

+9
Original file line numberDiff line numberDiff line change
@@ -4520,7 +4520,16 @@ dependencies = [
45204520
name = "rustc_next_trait_solver"
45214521
version = "0.0.0"
45224522
dependencies = [
4523+
"bitflags 2.5.0",
4524+
"derivative",
4525+
"rustc_ast_ir",
4526+
"rustc_data_structures",
4527+
"rustc_index",
4528+
"rustc_macros",
4529+
"rustc_serialize",
45234530
"rustc_type_ir",
4531+
"rustc_type_ir_macros",
4532+
"tracing",
45244533
]
45254534

45264535
[[package]]

compiler/rustc_infer/src/infer/mod.rs

+6-145
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub use BoundRegionConversionTime::*;
1111
pub use RegionVariableOrigin::*;
1212
pub use SubregionOrigin::*;
1313

14-
use crate::infer::relate::{Relate, RelateResult};
14+
use crate::infer::relate::RelateResult;
1515
use crate::traits::{self, ObligationCause, ObligationInspector, PredicateObligation, TraitEngine};
1616
use error_reporting::TypeErrCtxt;
1717
use free_regions::RegionRelations;
@@ -45,7 +45,7 @@ use rustc_middle::ty::{ConstVid, EffectVid, FloatVid, IntVid, TyVid};
4545
use rustc_middle::ty::{GenericArg, GenericArgKind, GenericArgs, GenericArgsRef};
4646
use rustc_middle::{bug, span_bug};
4747
use rustc_span::symbol::Symbol;
48-
use rustc_span::{Span, DUMMY_SP};
48+
use rustc_span::Span;
4949
use snapshot::undo_log::InferCtxtUndoLogs;
5050
use std::cell::{Cell, RefCell};
5151
use std::fmt;
@@ -335,149 +335,6 @@ pub struct InferCtxt<'tcx> {
335335
pub obligation_inspector: Cell<Option<ObligationInspector<'tcx>>>,
336336
}
337337

338-
impl<'tcx> ty::InferCtxtLike for InferCtxt<'tcx> {
339-
type Interner = TyCtxt<'tcx>;
340-
341-
fn interner(&self) -> TyCtxt<'tcx> {
342-
self.tcx
343-
}
344-
345-
fn universe_of_ty(&self, vid: TyVid) -> Option<ty::UniverseIndex> {
346-
// FIXME(BoxyUwU): this is kind of jank and means that printing unresolved
347-
// ty infers will give you the universe of the var it resolved to not the universe
348-
// it actually had. It also means that if you have a `?0.1` and infer it to `u8` then
349-
// try to print out `?0.1` it will just print `?0`.
350-
match self.probe_ty_var(vid) {
351-
Err(universe) => Some(universe),
352-
Ok(_) => None,
353-
}
354-
}
355-
356-
fn universe_of_lt(&self, lt: ty::RegionVid) -> Option<ty::UniverseIndex> {
357-
match self.inner.borrow_mut().unwrap_region_constraints().probe_value(lt) {
358-
Err(universe) => Some(universe),
359-
Ok(_) => None,
360-
}
361-
}
362-
363-
fn universe_of_ct(&self, ct: ConstVid) -> Option<ty::UniverseIndex> {
364-
// Same issue as with `universe_of_ty`
365-
match self.probe_const_var(ct) {
366-
Err(universe) => Some(universe),
367-
Ok(_) => None,
368-
}
369-
}
370-
371-
fn root_ty_var(&self, var: TyVid) -> TyVid {
372-
self.root_var(var)
373-
}
374-
375-
fn root_const_var(&self, var: ConstVid) -> ConstVid {
376-
self.root_const_var(var)
377-
}
378-
379-
fn opportunistic_resolve_ty_var(&self, vid: TyVid) -> Ty<'tcx> {
380-
match self.probe_ty_var(vid) {
381-
Ok(ty) => ty,
382-
Err(_) => Ty::new_var(self.tcx, self.root_var(vid)),
383-
}
384-
}
385-
386-
fn opportunistic_resolve_int_var(&self, vid: IntVid) -> Ty<'tcx> {
387-
self.opportunistic_resolve_int_var(vid)
388-
}
389-
390-
fn opportunistic_resolve_float_var(&self, vid: FloatVid) -> Ty<'tcx> {
391-
self.opportunistic_resolve_float_var(vid)
392-
}
393-
394-
fn opportunistic_resolve_ct_var(&self, vid: ConstVid) -> ty::Const<'tcx> {
395-
match self.probe_const_var(vid) {
396-
Ok(ct) => ct,
397-
Err(_) => ty::Const::new_var(self.tcx, self.root_const_var(vid)),
398-
}
399-
}
400-
401-
fn opportunistic_resolve_effect_var(&self, vid: EffectVid) -> ty::Const<'tcx> {
402-
match self.probe_effect_var(vid) {
403-
Some(ct) => ct,
404-
None => {
405-
ty::Const::new_infer(self.tcx, InferConst::EffectVar(self.root_effect_var(vid)))
406-
}
407-
}
408-
}
409-
410-
fn opportunistic_resolve_lt_var(&self, vid: ty::RegionVid) -> ty::Region<'tcx> {
411-
self.inner.borrow_mut().unwrap_region_constraints().opportunistic_resolve_var(self.tcx, vid)
412-
}
413-
414-
fn defining_opaque_types(&self) -> &'tcx ty::List<LocalDefId> {
415-
self.defining_opaque_types
416-
}
417-
418-
fn next_ty_infer(&self) -> Ty<'tcx> {
419-
self.next_ty_var(DUMMY_SP)
420-
}
421-
422-
fn next_const_infer(&self) -> ty::Const<'tcx> {
423-
self.next_const_var(DUMMY_SP)
424-
}
425-
426-
fn fresh_args_for_item(&self, def_id: DefId) -> ty::GenericArgsRef<'tcx> {
427-
self.fresh_args_for_item(DUMMY_SP, def_id)
428-
}
429-
430-
fn instantiate_binder_with_infer<T: TypeFoldable<Self::Interner> + Copy>(
431-
&self,
432-
value: ty::Binder<'tcx, T>,
433-
) -> T {
434-
self.instantiate_binder_with_fresh_vars(
435-
DUMMY_SP,
436-
BoundRegionConversionTime::HigherRankedType,
437-
value,
438-
)
439-
}
440-
441-
fn enter_forall<T: TypeFoldable<TyCtxt<'tcx>> + Copy, U>(
442-
&self,
443-
value: ty::Binder<'tcx, T>,
444-
f: impl FnOnce(T) -> U,
445-
) -> U {
446-
self.enter_forall(value, f)
447-
}
448-
449-
fn relate<T: Relate<TyCtxt<'tcx>>>(
450-
&self,
451-
param_env: ty::ParamEnv<'tcx>,
452-
lhs: T,
453-
variance: ty::Variance,
454-
rhs: T,
455-
) -> Result<Vec<Goal<'tcx, ty::Predicate<'tcx>>>, NoSolution> {
456-
self.at(&ObligationCause::dummy(), param_env).relate_no_trace(lhs, variance, rhs)
457-
}
458-
459-
fn eq_structurally_relating_aliases<T: Relate<TyCtxt<'tcx>>>(
460-
&self,
461-
param_env: ty::ParamEnv<'tcx>,
462-
lhs: T,
463-
rhs: T,
464-
) -> Result<Vec<Goal<'tcx, ty::Predicate<'tcx>>>, NoSolution> {
465-
self.at(&ObligationCause::dummy(), param_env)
466-
.eq_structurally_relating_aliases_no_trace(lhs, rhs)
467-
}
468-
469-
fn resolve_vars_if_possible<T>(&self, value: T) -> T
470-
where
471-
T: TypeFoldable<TyCtxt<'tcx>>,
472-
{
473-
self.resolve_vars_if_possible(value)
474-
}
475-
476-
fn probe<T>(&self, probe: impl FnOnce() -> T) -> T {
477-
self.probe(|_| probe())
478-
}
479-
}
480-
481338
/// See the `error_reporting` module for more details.
482339
#[derive(Clone, Copy, Debug, PartialEq, Eq, TypeFoldable, TypeVisitable)]
483340
pub enum ValuePairs<'tcx> {
@@ -831,6 +688,10 @@ impl<'tcx> InferCtxt<'tcx> {
831688
self.tcx.dcx()
832689
}
833690

691+
pub fn defining_opaque_types(&self) -> &'tcx ty::List<LocalDefId> {
692+
self.defining_opaque_types
693+
}
694+
834695
pub fn next_trait_solver(&self) -> bool {
835696
self.next_trait_solver
836697
}

compiler/rustc_middle/src/arena.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ macro_rules! arena_types {
111111
rustc_middle::ty::EarlyBinder<'tcx, rustc_middle::ty::Ty<'tcx>>
112112
>,
113113
[] external_constraints: rustc_middle::traits::solve::ExternalConstraintsData<rustc_middle::ty::TyCtxt<'tcx>>,
114-
[] predefined_opaques_in_body: rustc_middle::traits::solve::PredefinedOpaquesData<'tcx>,
114+
[] predefined_opaques_in_body: rustc_middle::traits::solve::PredefinedOpaquesData<rustc_middle::ty::TyCtxt<'tcx>>,
115115
[decode] doc_link_resolutions: rustc_hir::def::DocLinkResMap,
116116
[] stripped_cfg_items: rustc_ast::expand::StrippedCfgItem,
117117
[] mod_child: rustc_middle::metadata::ModChild,

compiler/rustc_middle/src/traits/solve.rs

+4-10
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ use rustc_type_ir as ir;
55
pub use rustc_type_ir::solve::*;
66

77
use crate::ty::{
8-
self, FallibleTypeFolder, Ty, TyCtxt, TypeFoldable, TypeFolder, TypeVisitable, TypeVisitor,
8+
self, FallibleTypeFolder, TyCtxt, TypeFoldable, TypeFolder, TypeVisitable, TypeVisitor,
99
};
1010

1111
mod cache;
1212

13-
pub use cache::{CacheData, EvaluationCache};
13+
pub use cache::EvaluationCache;
1414

1515
pub type Goal<'tcx, P> = ir::solve::Goal<TyCtxt<'tcx>, P>;
1616
pub type QueryInput<'tcx, P> = ir::solve::QueryInput<TyCtxt<'tcx>, P>;
@@ -19,17 +19,11 @@ pub type CandidateSource<'tcx> = ir::solve::CandidateSource<TyCtxt<'tcx>>;
1919
pub type CanonicalInput<'tcx, P = ty::Predicate<'tcx>> = ir::solve::CanonicalInput<TyCtxt<'tcx>, P>;
2020
pub type CanonicalResponse<'tcx> = ir::solve::CanonicalResponse<TyCtxt<'tcx>>;
2121

22-
/// Additional constraints returned on success.
23-
#[derive(Debug, PartialEq, Eq, Clone, Hash, HashStable, Default)]
24-
pub struct PredefinedOpaquesData<'tcx> {
25-
pub opaque_types: Vec<(ty::OpaqueTypeKey<'tcx>, Ty<'tcx>)>,
26-
}
27-
2822
#[derive(Debug, PartialEq, Eq, Copy, Clone, Hash, HashStable)]
29-
pub struct PredefinedOpaques<'tcx>(pub(crate) Interned<'tcx, PredefinedOpaquesData<'tcx>>);
23+
pub struct PredefinedOpaques<'tcx>(pub(crate) Interned<'tcx, PredefinedOpaquesData<TyCtxt<'tcx>>>);
3024

3125
impl<'tcx> std::ops::Deref for PredefinedOpaques<'tcx> {
32-
type Target = PredefinedOpaquesData<'tcx>;
26+
type Target = PredefinedOpaquesData<TyCtxt<'tcx>>;
3327

3428
fn deref(&self) -> &Self::Target {
3529
&self.0

compiler/rustc_middle/src/traits/solve/cache.rs

+11-17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ use rustc_data_structures::sync::Lock;
55
use rustc_query_system::cache::WithDepNode;
66
use rustc_query_system::dep_graph::DepNodeIndex;
77
use rustc_session::Limit;
8+
use rustc_type_ir::solve::CacheData;
9+
810
/// The trait solver cache used by `-Znext-solver`.
911
///
1012
/// FIXME(@lcnr): link to some official documentation of how
@@ -14,17 +16,9 @@ pub struct EvaluationCache<'tcx> {
1416
map: Lock<FxHashMap<CanonicalInput<'tcx>, CacheEntry<'tcx>>>,
1517
}
1618

17-
#[derive(Debug, PartialEq, Eq)]
18-
pub struct CacheData<'tcx> {
19-
pub result: QueryResult<'tcx>,
20-
pub proof_tree: Option<&'tcx inspect::CanonicalGoalEvaluationStep<TyCtxt<'tcx>>>,
21-
pub additional_depth: usize,
22-
pub encountered_overflow: bool,
23-
}
24-
25-
impl<'tcx> EvaluationCache<'tcx> {
19+
impl<'tcx> rustc_type_ir::inherent::EvaluationCache<TyCtxt<'tcx>> for &'tcx EvaluationCache<'tcx> {
2620
/// Insert a final result into the global cache.
27-
pub fn insert(
21+
fn insert(
2822
&self,
2923
tcx: TyCtxt<'tcx>,
3024
key: CanonicalInput<'tcx>,
@@ -48,7 +42,7 @@ impl<'tcx> EvaluationCache<'tcx> {
4842
if cfg!(debug_assertions) {
4943
drop(map);
5044
let expected = CacheData { result, proof_tree, additional_depth, encountered_overflow };
51-
let actual = self.get(tcx, key, [], Limit(additional_depth));
45+
let actual = self.get(tcx, key, [], additional_depth);
5246
if !actual.as_ref().is_some_and(|actual| expected == *actual) {
5347
bug!("failed to lookup inserted element for {key:?}: {expected:?} != {actual:?}");
5448
}
@@ -59,13 +53,13 @@ impl<'tcx> EvaluationCache<'tcx> {
5953
/// and handling root goals of coinductive cycles.
6054
///
6155
/// If this returns `Some` the cache result can be used.
62-
pub fn get(
56+
fn get(
6357
&self,
6458
tcx: TyCtxt<'tcx>,
6559
key: CanonicalInput<'tcx>,
6660
stack_entries: impl IntoIterator<Item = CanonicalInput<'tcx>>,
67-
available_depth: Limit,
68-
) -> Option<CacheData<'tcx>> {
61+
available_depth: usize,
62+
) -> Option<CacheData<TyCtxt<'tcx>>> {
6963
let map = self.map.borrow();
7064
let entry = map.get(&key)?;
7165

@@ -76,7 +70,7 @@ impl<'tcx> EvaluationCache<'tcx> {
7670
}
7771

7872
if let Some(ref success) = entry.success {
79-
if available_depth.value_within_limit(success.additional_depth) {
73+
if Limit(available_depth).value_within_limit(success.additional_depth) {
8074
let QueryData { result, proof_tree } = success.data.get(tcx);
8175
return Some(CacheData {
8276
result,
@@ -87,12 +81,12 @@ impl<'tcx> EvaluationCache<'tcx> {
8781
}
8882
}
8983

90-
entry.with_overflow.get(&available_depth.0).map(|e| {
84+
entry.with_overflow.get(&available_depth).map(|e| {
9185
let QueryData { result, proof_tree } = e.get(tcx);
9286
CacheData {
9387
result,
9488
proof_tree,
95-
additional_depth: available_depth.0,
89+
additional_depth: available_depth,
9690
encountered_overflow: true,
9791
}
9892
})

compiler/rustc_middle/src/ty/adt.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -205,14 +205,22 @@ impl<'tcx> rustc_type_ir::inherent::AdtDef<TyCtxt<'tcx>> for AdtDef<'tcx> {
205205
self.did()
206206
}
207207

208+
fn is_struct(self) -> bool {
209+
self.is_struct()
210+
}
211+
212+
fn struct_tail_ty(self, interner: TyCtxt<'tcx>) -> Option<ty::EarlyBinder<'tcx, Ty<'tcx>>> {
213+
Some(interner.type_of(self.non_enum_variant().tail_opt()?.did))
214+
}
215+
208216
fn is_phantom_data(self) -> bool {
209217
self.is_phantom_data()
210218
}
211219

212220
fn all_field_tys(
213221
self,
214222
tcx: TyCtxt<'tcx>,
215-
) -> ty::EarlyBinder<'tcx, impl Iterator<Item = Ty<'tcx>>> {
223+
) -> ty::EarlyBinder<'tcx, impl IntoIterator<Item = Ty<'tcx>>> {
216224
ty::EarlyBinder::bind(
217225
self.all_fields().map(move |field| tcx.type_of(field.did).skip_binder()),
218226
)

compiler/rustc_middle/src/ty/consts.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ mod valtree;
1616

1717
pub use int::*;
1818
pub use kind::*;
19-
use rustc_span::Span;
2019
use rustc_span::DUMMY_SP;
20+
use rustc_span::{ErrorGuaranteed, Span};
2121
pub use valtree::*;
2222

2323
pub type ConstKind<'tcx> = ir::ConstKind<TyCtxt<'tcx>>;
@@ -176,6 +176,10 @@ impl<'tcx> rustc_type_ir::inherent::Const<TyCtxt<'tcx>> for Const<'tcx> {
176176
fn new_expr(interner: TyCtxt<'tcx>, expr: ty::Expr<'tcx>) -> Self {
177177
Const::new_expr(interner, expr)
178178
}
179+
180+
fn new_error(interner: TyCtxt<'tcx>, guar: ErrorGuaranteed) -> Self {
181+
Const::new_error(interner, guar)
182+
}
179183
}
180184

181185
impl<'tcx> Const<'tcx> {

0 commit comments

Comments
 (0)