Skip to content

Commit 207fa96

Browse files
Rollup merge of rust-lang#134386 - oli-obk:some-trait-impl-diff-diagnostic-cleanups, r=compiler-errors
Some trait method vs impl method signature difference diagnostic cleanups Just some things I noticed while debugging a weird diagnostic in rust-lang#134353 best reviewed commit by commit
2 parents 30dc96d + 1d834c2 commit 207fa96

File tree

4 files changed

+43
-52
lines changed

4 files changed

+43
-52
lines changed

compiler/rustc_borrowck/src/diagnostics/region_name.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -459,11 +459,8 @@ impl<'tcx> MirBorrowckCtxt<'_, '_, 'tcx> {
459459
) -> RegionNameHighlight {
460460
let mut highlight = RegionHighlightMode::default();
461461
highlight.highlighting_region_vid(self.infcx.tcx, needle_fr, counter);
462-
let type_name = self
463-
.infcx
464-
.err_ctxt()
465-
.extract_inference_diagnostics_data(ty.into(), Some(highlight))
466-
.name;
462+
let type_name =
463+
self.infcx.err_ctxt().extract_inference_diagnostics_data(ty.into(), highlight).name;
467464

468465
debug!(
469466
"highlight_if_we_cannot_match_hir_ty: type_name={:?} needle_fr={:?}",
@@ -874,7 +871,7 @@ impl<'tcx> MirBorrowckCtxt<'_, '_, 'tcx> {
874871
let type_name = self
875872
.infcx
876873
.err_ctxt()
877-
.extract_inference_diagnostics_data(yield_ty.into(), Some(highlight))
874+
.extract_inference_diagnostics_data(yield_ty.into(), highlight)
878875
.name;
879876

880877
let yield_span = match tcx.hir_node(self.mir_hir_id()) {

compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs

+11-20
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ use rustc_span::symbol::{Ident, sym};
2121
use rustc_span::{BytePos, DUMMY_SP, FileName, Span};
2222
use tracing::{debug, instrument, warn};
2323

24+
use super::nice_region_error::placeholder_error::Highlighted;
2425
use crate::error_reporting::TypeErrCtxt;
2526
use crate::errors::{
2627
AmbiguousImpl, AmbiguousReturn, AnnotationRequired, InferenceBadError,
@@ -279,8 +280,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
279280
pub fn extract_inference_diagnostics_data(
280281
&self,
281282
arg: GenericArg<'tcx>,
282-
highlight: Option<ty::print::RegionHighlightMode<'tcx>>,
283+
highlight: ty::print::RegionHighlightMode<'tcx>,
283284
) -> InferenceDiagnosticsData {
285+
let tcx = self.tcx;
284286
match arg.unpack() {
285287
GenericArgKind::Type(ty) => {
286288
if let ty::Infer(ty::TyVar(ty_vid)) = *ty.kind() {
@@ -300,13 +302,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
300302
}
301303
}
302304

303-
let mut printer = ty::print::FmtPrinter::new(self.tcx, Namespace::TypeNS);
304-
if let Some(highlight) = highlight {
305-
printer.region_highlight_mode = highlight;
306-
}
307-
ty.print(&mut printer).unwrap();
308305
InferenceDiagnosticsData {
309-
name: printer.into_buffer(),
306+
name: Highlighted { highlight, ns: Namespace::TypeNS, tcx, value: ty }
307+
.to_string(),
310308
span: None,
311309
kind: UnderspecifiedArgKind::Type { prefix: ty.prefix_string(self.tcx) },
312310
parent: None,
@@ -325,13 +323,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
325323
}
326324

327325
debug_assert!(!origin.span.is_dummy());
328-
let mut printer = ty::print::FmtPrinter::new(self.tcx, Namespace::ValueNS);
329-
if let Some(highlight) = highlight {
330-
printer.region_highlight_mode = highlight;
331-
}
332-
ct.print(&mut printer).unwrap();
333326
InferenceDiagnosticsData {
334-
name: printer.into_buffer(),
327+
name: Highlighted { highlight, ns: Namespace::ValueNS, tcx, value: ct }
328+
.to_string(),
335329
span: Some(origin.span),
336330
kind: UnderspecifiedArgKind::Const { is_parameter: false },
337331
parent: None,
@@ -343,13 +337,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
343337
// FIXME: Ideally we should look into the generic constant
344338
// to figure out which inference var is actually unresolved so that
345339
// this path is unreachable.
346-
let mut printer = ty::print::FmtPrinter::new(self.tcx, Namespace::ValueNS);
347-
if let Some(highlight) = highlight {
348-
printer.region_highlight_mode = highlight;
349-
}
350-
ct.print(&mut printer).unwrap();
351340
InferenceDiagnosticsData {
352-
name: printer.into_buffer(),
341+
name: Highlighted { highlight, ns: Namespace::ValueNS, tcx, value: ct }
342+
.to_string(),
353343
span: None,
354344
kind: UnderspecifiedArgKind::Const { is_parameter: false },
355345
parent: None,
@@ -422,7 +412,8 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
422412
should_label_span: bool,
423413
) -> Diag<'a> {
424414
let arg = self.resolve_vars_if_possible(arg);
425-
let arg_data = self.extract_inference_diagnostics_data(arg, None);
415+
let arg_data =
416+
self.extract_inference_diagnostics_data(arg, ty::print::RegionHighlightMode::default());
426417

427418
let Some(typeck_results) = &self.typeck_results else {
428419
// If we don't have any typeck results we're outside

compiler/rustc_trait_selection/src/error_reporting/infer/nice_region_error/placeholder_error.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ use crate::traits::{ObligationCause, ObligationCauseCode};
2121
// HACK(eddyb) maybe move this in a more central location.
2222
#[derive(Copy, Clone)]
2323
pub struct Highlighted<'tcx, T> {
24-
tcx: TyCtxt<'tcx>,
25-
highlight: RegionHighlightMode<'tcx>,
26-
value: T,
24+
pub tcx: TyCtxt<'tcx>,
25+
pub highlight: RegionHighlightMode<'tcx>,
26+
pub value: T,
27+
pub ns: Namespace,
2728
}
2829

2930
impl<'tcx, T> IntoDiagArg for Highlighted<'tcx, T>
@@ -37,7 +38,7 @@ where
3738

3839
impl<'tcx, T> Highlighted<'tcx, T> {
3940
fn map<U>(self, f: impl FnOnce(T) -> U) -> Highlighted<'tcx, U> {
40-
Highlighted { tcx: self.tcx, highlight: self.highlight, value: f(self.value) }
41+
Highlighted { tcx: self.tcx, highlight: self.highlight, value: f(self.value), ns: self.ns }
4142
}
4243
}
4344

@@ -46,7 +47,7 @@ where
4647
T: for<'a> Print<'tcx, FmtPrinter<'a, 'tcx>>,
4748
{
4849
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
49-
let mut printer = ty::print::FmtPrinter::new(self.tcx, Namespace::TypeNS);
50+
let mut printer = ty::print::FmtPrinter::new(self.tcx, self.ns);
5051
printer.region_highlight_mode = self.highlight;
5152

5253
self.value.print(&mut printer)?;
@@ -381,6 +382,7 @@ impl<'tcx> NiceRegionError<'_, 'tcx> {
381382
tcx: self.tcx(),
382383
highlight: RegionHighlightMode::default(),
383384
value: trait_ref,
385+
ns: Namespace::TypeNS,
384386
};
385387

386388
let same_self_type = actual_trait_ref.self_ty() == expected_trait_ref.self_ty();

compiler/rustc_trait_selection/src/error_reporting/infer/nice_region_error/trait_impl_difference.rs

+22-21
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
33
use rustc_errors::ErrorGuaranteed;
44
use rustc_hir as hir;
5-
use rustc_hir::def::Res;
5+
use rustc_hir::def::{Namespace, Res};
66
use rustc_hir::def_id::DefId;
77
use rustc_hir::intravisit::Visitor;
88
use rustc_middle::hir::nested_filter;
99
use rustc_middle::traits::ObligationCauseCode;
1010
use rustc_middle::ty::error::ExpectedFound;
1111
use rustc_middle::ty::print::RegionHighlightMode;
12-
use rustc_middle::ty::{self, Ty, TyCtxt, TypeVisitor};
12+
use rustc_middle::ty::{self, TyCtxt, TypeVisitable};
1313
use rustc_span::Span;
1414
use tracing::debug;
1515

1616
use crate::error_reporting::infer::nice_region_error::NiceRegionError;
17+
use crate::error_reporting::infer::nice_region_error::placeholder_error::Highlighted;
1718
use crate::errors::{ConsiderBorrowingParamHelp, RelationshipHelp, TraitImplDiff};
1819
use crate::infer::{RegionResolutionError, Subtype, ValuePairs};
1920

@@ -32,19 +33,14 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
3233
_,
3334
) = error.clone()
3435
&& let (Subtype(sup_trace), Subtype(sub_trace)) = (&sup_origin, &sub_origin)
35-
&& let ObligationCauseCode::CompareImplItem { trait_item_def_id, .. } =
36+
&& let &ObligationCauseCode::CompareImplItem { trait_item_def_id, .. } =
3637
sub_trace.cause.code()
3738
&& sub_trace.values == sup_trace.values
3839
&& let ValuePairs::PolySigs(ExpectedFound { expected, found }) = sub_trace.values
3940
{
4041
// FIXME(compiler-errors): Don't like that this needs `Ty`s, but
4142
// all of the region highlighting machinery only deals with those.
42-
let guar = self.emit_err(
43-
var_origin.span(),
44-
Ty::new_fn_ptr(self.cx.tcx, expected),
45-
Ty::new_fn_ptr(self.cx.tcx, found),
46-
*trait_item_def_id,
47-
);
43+
let guar = self.emit_err(var_origin.span(), expected, found, trait_item_def_id);
4844
return Some(guar);
4945
}
5046
None
@@ -53,11 +49,11 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
5349
fn emit_err(
5450
&self,
5551
sp: Span,
56-
expected: Ty<'tcx>,
57-
found: Ty<'tcx>,
58-
trait_def_id: DefId,
52+
expected: ty::PolyFnSig<'tcx>,
53+
found: ty::PolyFnSig<'tcx>,
54+
trait_item_def_id: DefId,
5955
) -> ErrorGuaranteed {
60-
let trait_sp = self.tcx().def_span(trait_def_id);
56+
let trait_sp = self.tcx().def_span(trait_item_def_id);
6157

6258
// Mark all unnamed regions in the type with a number.
6359
// This diagnostic is called in response to lifetime errors, so be informative.
@@ -67,10 +63,10 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
6763
}
6864

6965
impl<'tcx> HighlightBuilder<'tcx> {
70-
fn build(ty: Ty<'tcx>) -> RegionHighlightMode<'tcx> {
66+
fn build(sig: ty::PolyFnSig<'tcx>) -> RegionHighlightMode<'tcx> {
7167
let mut builder =
7268
HighlightBuilder { highlight: RegionHighlightMode::default(), counter: 1 };
73-
builder.visit_ty(ty);
69+
sig.visit_with(&mut builder);
7470
builder.highlight
7571
}
7672
}
@@ -85,16 +81,21 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
8581
}
8682

8783
let expected_highlight = HighlightBuilder::build(expected);
88-
let expected = self
89-
.cx
90-
.extract_inference_diagnostics_data(expected.into(), Some(expected_highlight))
91-
.name;
84+
let tcx = self.cx.tcx;
85+
let expected = Highlighted {
86+
highlight: expected_highlight,
87+
ns: Namespace::TypeNS,
88+
tcx,
89+
value: expected,
90+
}
91+
.to_string();
9292
let found_highlight = HighlightBuilder::build(found);
9393
let found =
94-
self.cx.extract_inference_diagnostics_data(found.into(), Some(found_highlight)).name;
94+
Highlighted { highlight: found_highlight, ns: Namespace::TypeNS, tcx, value: found }
95+
.to_string();
9596

9697
// Get the span of all the used type parameters in the method.
97-
let assoc_item = self.tcx().associated_item(trait_def_id);
98+
let assoc_item = self.tcx().associated_item(trait_item_def_id);
9899
let mut visitor = TypeParamSpanVisitor { tcx: self.tcx(), types: vec![] };
99100
match assoc_item.kind {
100101
ty::AssocKind::Fn => {

0 commit comments

Comments
 (0)