Skip to content
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

[crater] Assemble method candidates for numerical infer vars #128013

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 72 additions & 1 deletion compiler/rustc_hir_typeck/src/method/probe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use rustc_infer::infer::{self, InferOk, TyCtxtInferExt};
use rustc_infer::traits::ObligationCauseCode;
use rustc_middle::middle::stability;
use rustc_middle::query::Providers;
use rustc_middle::ty::fast_reject::SimplifiedType;
use rustc_middle::ty::fast_reject::{simplify_type, TreatParams};
use rustc_middle::ty::AssocItem;
use rustc_middle::ty::AssocItemContainer;
Expand Down Expand Up @@ -664,7 +665,8 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {

#[instrument(level = "debug", skip(self))]
fn assemble_probe(&mut self, self_ty: &Canonical<'tcx, QueryResponse<'tcx, Ty<'tcx>>>) {
let raw_self_ty = self_ty.value.value;
let (QueryResponse { value: raw_self_ty, .. }, _) =
self.instantiate_canonical(DUMMY_SP, self_ty);
match *raw_self_ty.kind() {
ty::Dynamic(data, ..) if let Some(p) = data.principal() => {
// Subtle: we can't use `instantiate_query_response` here: using it will
Expand Down Expand Up @@ -709,6 +711,47 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
ty::Param(p) => {
self.assemble_inherent_candidates_from_param(p);
}
// which have some integer or float as a self type.
ty::Infer(ty::IntVar(_)) => {
use ty::IntTy::*;
use ty::UintTy::*;
// This causes a compiler error if any new integer kinds are added.
let (I8 | I16 | I32 | I64 | I128 | Isize): ty::IntTy;
let (U8 | U16 | U32 | U64 | U128 | Usize): ty::UintTy;
let possible_integers = [
// signed integers
SimplifiedType::Int(I8),
SimplifiedType::Int(I16),
SimplifiedType::Int(I32),
SimplifiedType::Int(I64),
SimplifiedType::Int(I128),
SimplifiedType::Int(Isize),
// unsigned integers
SimplifiedType::Uint(U8),
SimplifiedType::Uint(U16),
SimplifiedType::Uint(U32),
SimplifiedType::Uint(U64),
SimplifiedType::Uint(U128),
SimplifiedType::Uint(Usize),
];
for simp in possible_integers {
self.assemble_inherent_candidates_for_simplified_type(simp);
}
}
ty::Infer(ty::FloatVar(_)) => {
// This causes a compiler error if any new float kinds are added.
let (ty::FloatTy::F16 | ty::FloatTy::F32 | ty::FloatTy::F64 | ty::FloatTy::F128);
let possible_floats = [
SimplifiedType::Float(ty::FloatTy::F16),
SimplifiedType::Float(ty::FloatTy::F32),
SimplifiedType::Float(ty::FloatTy::F64),
SimplifiedType::Float(ty::FloatTy::F128),
];

for simp in possible_floats {
self.assemble_inherent_candidates_for_simplified_type(simp);
}
}
ty::Bool
| ty::Char
| ty::Int(_)
Expand All @@ -729,6 +772,10 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
let Some(simp) = simplify_type(self.tcx, self_ty, TreatParams::AsCandidateKey) else {
bug!("unexpected incoherent type: {:?}", self_ty)
};
self.assemble_inherent_candidates_for_simplified_type(simp);
}

fn assemble_inherent_candidates_for_simplified_type(&mut self, simp: SimplifiedType) {
for &impl_def_id in self.tcx.incoherent_impls(simp).into_iter().flatten() {
self.assemble_inherent_impl_probe(impl_def_id);
}
Expand Down Expand Up @@ -1207,6 +1254,10 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
for (kind, candidates) in
[("inherent", &self.inherent_candidates), ("extension", &self.extension_candidates)]
{
if kind == "inherent" && self.should_skip_shadowable_inherent_numerical_methods() {
continue;
}

debug!("searching {} candidates", kind);
let res = self.consider_candidates(
self_ty,
Expand Down Expand Up @@ -1643,6 +1694,26 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
})
}

fn should_skip_shadowable_inherent_numerical_methods(&self) -> bool {
let res = self.inherent_candidates.len() > 1
&& self.extension_candidates.iter().any(|cand| match cand.kind {
TraitCandidate(trait_ref) => {
let trait_def_id = trait_ref.def_id();
self.tcx.crate_name(trait_def_id.krate) == sym::compiler_builtins
&& [sym::Float, sym::Int].contains(&self.tcx.item_name(trait_def_id))
}
InherentImplCandidate(_) | ObjectCandidate(_) | WhereClauseCandidate(_) => false,
})
&& self.inherent_candidates.iter().all(|cand| match cand.kind {
InherentImplCandidate(def_id) => {
self.tcx.type_of(def_id).skip_binder().is_numeric()
}
ObjectCandidate(_) | TraitCandidate(_) | WhereClauseCandidate(_) => false,
});

res
}

/// Sometimes we get in a situation where we have multiple probes that are all impls of the
/// same trait, but we don't know which impl to use. In this case, since in all cases the
/// external interface of the method can be determined from the trait, it's ok not to decide.
Expand Down
2 changes: 2 additions & 0 deletions compiler/rustc_span/src/symbol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ symbols! {
Error,
File,
FileType,
Float,
Fn,
FnMut,
FnOnce,
Expand All @@ -233,6 +234,7 @@ symbols! {
IndexOutput,
Input,
Instant,
Int,
Into,
IntoFuture,
IntoIterator,
Expand Down
Loading