-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More preparation for new trait solver uplifting #126492
Conversation
Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor |
compiler/rustc_type_ir/src/solve.rs
Outdated
#[cfg_attr(feature = "nightly", derive(HashStable_NoContext))] | ||
pub struct ExternalConstraintsData<I: Interner> { | ||
pub region_constraints: Vec<ty::OutlivesPredicate<I, I::GenericArg>>, | ||
pub opaque_types: Vec<(I::LocalDefId, I::GenericArgs, I::Ty)>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the only debatable thing -- I destructured OpaqueTypeKey
into I::LocalDefId
and I::GenericArgs
. I could uplift OpaqueTypeKey
I guess, but it seemed like an implementation detail.
Thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dislike it :< 😅 tuples with 3 elements are questionable
I would prefer uplifting OpaqueTypeKey
though I feel like maybe we should rename it to LocalOpaqueTy
or even LocalAliasTy
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okie
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
happy with this PR except for the OpaqueTypeKey
removal 🤔 unless uplifting it is annoying, I would prefer doing that
b68575f
to
7a8e6ff
Compare
This comment has been minimized.
This comment has been minimized.
7a8e6ff
to
02b2945
Compare
} | ||
|
||
impl<I: Interner> OpaqueTypeKey<I> { | ||
pub fn iter_captured_args(self, tcx: I) -> impl Iterator<Item = (usize, I::GenericArg)> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That + IntoIterator<Item: Deref<Target = ty::Variance>>
bound is required for VariancesOf
because we can't return an RPIT that borrows from a local, which it does if we were to call <[_]>::iter()
.
I think I'd like to eventually make a trait that's like IntoIterator
but which consolidates ty::List
and &[_]
with a single into_iter()
function, and always returns the copied version of the data. Like something to turn &[Ty]
into an iterator of Ty
not Ty
.
☔ The latest upstream changes (presumably #126505) made this pull request unmergeable. Please resolve the merge conflicts. |
02b2945
to
ff154c7
Compare
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (e23ae72): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (primary 3.5%, secondary 6.6%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (secondary 4.2%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 671.506s -> 671.588s (0.01%) |
Getting closer to being able to uplift the whole solver 🙏
Each commit should be self-justifying.
r? lcnr