Skip to content

Commit 42dfac5

Browse files
committed
Auto merge of #118788 - compiler-errors:const-pretty, r=fee1-dead
Don't print host effect param in pretty `path_generic_args` Make `own_args_no_defaults` pass back the `GenericParamDef`, so that we can pass both the args *and* param definitions into `path_generic_args`. That allows us to use the `GenericParamDef` to filter out effect params. This allows us to filter out the host param regardless of whether it's `sym::host` or `true`/`false`. This also renames a couple of `const_effect_param` -> `host_effect_param`, and restores `~const` pretty printing to `TraitPredPrintModifiersAndPath`. cc #118785 r? `@fee1-dead` cc `@oli-obk`
2 parents 61afc9c + afa35e9 commit 42dfac5

File tree

20 files changed

+66
-58
lines changed

20 files changed

+66
-58
lines changed

compiler/rustc_const_eval/src/transform/check_consts/qualifs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ impl Qualif for NeedsNonConstDrop {
172172
destruct_def_id,
173173
[
174174
ty::GenericArg::from(ty),
175-
ty::GenericArg::from(cx.tcx.expected_const_effect_param_for_body(cx.def_id())),
175+
ty::GenericArg::from(cx.tcx.expected_host_effect_param_for_body(cx.def_id())),
176176
],
177177
),
178178
);

compiler/rustc_const_eval/src/util/type_name.rs

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {
120120
&mut self,
121121
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
122122
args: &[GenericArg<'tcx>],
123+
_params: &[ty::GenericParamDef],
123124
) -> Result<(), PrintError> {
124125
print_prefix(self)?;
125126
let args =

compiler/rustc_hir_typeck/src/callee.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
780780
let generics = tcx.generics_of(callee_did);
781781
let Some(host_effect_index) = generics.host_effect_index else { return };
782782

783-
let effect = tcx.expected_const_effect_param_for_body(self.body_id);
783+
let effect = tcx.expected_host_effect_param_for_body(self.body_id);
784784

785785
trace!(?effect, ?generics, ?callee_args);
786786

compiler/rustc_infer/src/infer/error_reporting/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
641641
&mut self,
642642
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
643643
_args: &[GenericArg<'tcx>],
644+
_params: &[ty::GenericParamDef],
644645
) -> Result<(), PrintError> {
645646
print_prefix(self)
646647
}
@@ -1236,9 +1237,9 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
12361237
(&ty::Adt(def1, sub1), &ty::Adt(def2, sub2)) => {
12371238
let did1 = def1.did();
12381239
let did2 = def2.did();
1239-
let sub_no_defaults_1 =
1240+
let (sub_no_defaults_1, _) =
12401241
self.tcx.generics_of(did1).own_args_no_defaults(self.tcx, sub1);
1241-
let sub_no_defaults_2 =
1242+
let (sub_no_defaults_2, _) =
12421243
self.tcx.generics_of(did2).own_args_no_defaults(self.tcx, sub2);
12431244
let mut values = (DiagnosticStyledString::new(), DiagnosticStyledString::new());
12441245
let path1 = self.tcx.def_path_str(did1);

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,7 @@ impl<'a, 'tcx> FindInferSourceVisitor<'a, 'tcx> {
757757
.tcx
758758
.generics_of(def.did())
759759
.own_args_no_defaults(self.tcx, args)
760+
.0
760761
.iter()
761762
.map(|&arg| self.arg_cost(arg))
762763
.sum::<usize>()
@@ -1185,7 +1186,7 @@ impl<'a, 'tcx> Visitor<'tcx> for FindInferSourceVisitor<'a, 'tcx> {
11851186
}
11861187
let args = self.infcx.resolve_vars_if_possible(args);
11871188
let generic_args =
1188-
&generics.own_args_no_defaults(tcx, args)[generics.own_counts().lifetimes..];
1189+
&generics.own_args_no_defaults(tcx, args).0[generics.own_counts().lifetimes..];
11891190
let span = match expr.kind {
11901191
ExprKind::MethodCall(path, ..) => path.ident.span,
11911192
_ => expr.span,

compiler/rustc_infer/src/infer/error_reporting/note_and_explain.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
116116
// FIXME: extract this logic for use in other diagnostics.
117117
let (trait_ref, assoc_args) = proj.trait_ref_and_own_args(tcx);
118118
let item_name = tcx.item_name(proj.def_id);
119-
let item_args = self.format_generic_args(assoc_args);
119+
let item_args = self.format_generic_args(proj.def_id, assoc_args);
120120

121121
// Here, we try to see if there's an existing
122122
// trait implementation that matches the one that
@@ -775,7 +775,7 @@ fn foo(&self) -> Self::T { String::new() }
775775
let span = Span::new(pos, pos, span.ctxt(), span.parent());
776776
(span, format!(", {} = {}", assoc.ident(tcx), ty))
777777
} else {
778-
let item_args = self.format_generic_args(assoc_args);
778+
let item_args = self.format_generic_args(assoc.def_id, assoc_args);
779779
(span.shrink_to_hi(), format!("<{}{} = {}>", assoc.ident(tcx), item_args, ty))
780780
};
781781
diag.span_suggestion_verbose(span, msg(), sugg, MaybeIncorrect);
@@ -784,9 +784,13 @@ fn foo(&self) -> Self::T { String::new() }
784784
false
785785
}
786786

787-
pub fn format_generic_args(&self, args: &[ty::GenericArg<'tcx>]) -> String {
787+
pub fn format_generic_args(
788+
&self,
789+
assoc_def_id: DefId,
790+
args: &[ty::GenericArg<'tcx>],
791+
) -> String {
788792
FmtPrinter::print_string(self.tcx, hir::def::Namespace::TypeNS, |cx| {
789-
cx.path_generic_args(|_| Ok(()), args)
793+
cx.path_generic_args(|_| Ok(()), args, &self.infcx.tcx.generics_of(assoc_def_id).params)
790794
})
791795
.expect("could not write to `String`.")
792796
}

compiler/rustc_lint/src/context.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1285,6 +1285,7 @@ impl<'tcx> LateContext<'tcx> {
12851285
&mut self,
12861286
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
12871287
_args: &[GenericArg<'tcx>],
1288+
_params: &[ty::GenericParamDef],
12881289
) -> Result<(), PrintError> {
12891290
print_prefix(self)
12901291
}

compiler/rustc_middle/src/ty/generics.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,11 @@ impl<'tcx> Generics {
320320
&'tcx self,
321321
tcx: TyCtxt<'tcx>,
322322
args: &'tcx [ty::GenericArg<'tcx>],
323-
) -> &'tcx [ty::GenericArg<'tcx>] {
324-
let mut own_params = self.parent_count..self.count();
323+
) -> (&'tcx [ty::GenericArg<'tcx>], &'tcx [ty::GenericParamDef]) {
324+
let mut own_args = self.parent_count..self.count();
325+
let mut own_params = 0..self.params.len();
325326
if self.has_self && self.parent.is_none() {
327+
own_args.start = 1;
326328
own_params.start = 1;
327329
}
328330

@@ -332,7 +334,7 @@ impl<'tcx> Generics {
332334
// of semantic equivalence. While not ideal, that's
333335
// good enough for now as this should only be used
334336
// for diagnostics anyways.
335-
own_params.end -= self
337+
let num_default_params = self
336338
.params
337339
.iter()
338340
.rev()
@@ -342,8 +344,10 @@ impl<'tcx> Generics {
342344
})
343345
})
344346
.count();
347+
own_params.end -= num_default_params;
348+
own_args.end -= num_default_params;
345349

346-
&args[own_params]
350+
(&args[own_args], &self.params[own_params])
347351
}
348352

349353
/// Returns the args corresponding to the generic parameters of this item, excluding `Self`.

compiler/rustc_middle/src/ty/print/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ pub trait Printer<'tcx>: Sized {
8383
&mut self,
8484
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
8585
args: &[GenericArg<'tcx>],
86+
params: &[ty::GenericParamDef],
8687
) -> Result<(), PrintError>;
8788

8889
// Defaults (should not be overridden):
@@ -141,10 +142,12 @@ pub trait Printer<'tcx>: Sized {
141142
// on top of the same path, but without its own generics.
142143
_ => {
143144
if !generics.params.is_empty() && args.len() >= generics.count() {
144-
let args = generics.own_args_no_defaults(self.tcx(), args);
145+
let (args, params) =
146+
generics.own_args_no_defaults(self.tcx(), args);
145147
return self.path_generic_args(
146148
|cx| cx.print_def_path(def_id, parent_args),
147149
args,
150+
params,
148151
);
149152
}
150153
}

compiler/rustc_middle/src/ty/print/pretty.rs

+20-31
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use rustc_hir::LangItem;
1919
use rustc_session::config::TrimmedDefPaths;
2020
use rustc_session::cstore::{ExternCrate, ExternCrateSource};
2121
use rustc_session::Limit;
22-
use rustc_span::sym;
2322
use rustc_span::symbol::{kw, Ident, Symbol};
2423
use rustc_span::FileNameDisplayPreference;
2524
use rustc_target::abi::Size;
@@ -967,7 +966,7 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
967966
define_scoped_cx!(cx);
968967
// Get the (single) generic ty (the args) of this FnOnce trait ref.
969968
let generics = tcx.generics_of(trait_ref.def_id);
970-
let own_args = generics.own_args_no_defaults(tcx, trait_ref.args);
969+
let (own_args, _) = generics.own_args_no_defaults(tcx, trait_ref.args);
971970

972971
match (entry.return_ty, own_args[0].expect_ty()) {
973972
// We can only print `impl Fn() -> ()` if we have a tuple of args and we recorded
@@ -1033,7 +1032,7 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
10331032
p!(print(trait_ref.print_only_trait_name()));
10341033

10351034
let generics = tcx.generics_of(trait_ref.def_id);
1036-
let own_args = generics.own_args_no_defaults(tcx, trait_ref.args);
1035+
let (own_args, _) = generics.own_args_no_defaults(tcx, trait_ref.args);
10371036

10381037
if !own_args.is_empty() || !assoc_items.is_empty() {
10391038
let mut first = true;
@@ -1185,6 +1184,7 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
11851184
)
11861185
},
11871186
&alias_ty.args[1..],
1187+
&self.tcx().generics_of(alias_ty.def_id).params,
11881188
)
11891189
}
11901190

@@ -1233,7 +1233,7 @@ pub trait PrettyPrinter<'tcx>: Printer<'tcx> + fmt::Write {
12331233
let dummy_cx = Ty::new_fresh(cx.tcx(), 0);
12341234
let principal = principal.with_self_ty(cx.tcx(), dummy_cx);
12351235

1236-
let args = cx
1236+
let (args, _) = cx
12371237
.tcx()
12381238
.generics_of(principal.def_id)
12391239
.own_args_no_defaults(cx.tcx(), principal.args);
@@ -2031,40 +2031,26 @@ impl<'tcx> Printer<'tcx> for FmtPrinter<'_, 'tcx> {
20312031
&mut self,
20322032
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
20332033
args: &[GenericArg<'tcx>],
2034+
params: &[ty::GenericParamDef],
20342035
) -> Result<(), PrintError> {
20352036
print_prefix(self)?;
20362037

20372038
let tcx = self.tcx;
2038-
2039-
let args = args.iter().copied();
2040-
2041-
let args: Vec<_> = if !tcx.sess.verbose() {
2042-
// skip host param as those are printed as `~const`
2043-
args.filter(|arg| match arg.unpack() {
2044-
// FIXME(effects) there should be a better way than just matching the name
2045-
GenericArgKind::Const(c)
2046-
if tcx.features().effects
2047-
&& matches!(
2048-
c.kind(),
2049-
ty::ConstKind::Param(ty::ParamConst { name: sym::host, .. })
2050-
) =>
2051-
{
2052-
false
2053-
}
2054-
_ => true,
2055-
})
2056-
.collect()
2057-
} else {
2039+
let verbose = tcx.sess.verbose();
2040+
let mut args = args
2041+
.iter()
2042+
.copied()
2043+
.zip(params)
20582044
// If -Zverbose is passed, we should print the host parameter instead
20592045
// of eating it.
2060-
args.collect()
2061-
};
2046+
.filter(|(_, param)| verbose || !param.is_host_effect())
2047+
.peekable();
20622048

2063-
if !args.is_empty() {
2049+
if args.peek().is_some() {
20642050
if self.in_value {
20652051
write!(self, "::")?;
20662052
}
2067-
self.generic_delimiters(|cx| cx.comma_sep(args.into_iter()))
2053+
self.generic_delimiters(|cx| cx.comma_sep(args.map(|(arg, _)| arg)))
20682054
} else {
20692055
Ok(())
20702056
}
@@ -2894,11 +2880,15 @@ define_print_and_forward_display! {
28942880
}
28952881

28962882
TraitPredPrintModifiersAndPath<'tcx> {
2897-
// FIXME(effects) print `~const` here
2883+
if let Some(idx) = cx.tcx().generics_of(self.0.trait_ref.def_id).host_effect_index
2884+
{
2885+
if self.0.trait_ref.args.const_at(idx) != cx.tcx().consts.true_ {
2886+
p!("~const ");
2887+
}
2888+
}
28982889
if let ty::ImplPolarity::Negative = self.0.polarity {
28992890
p!("!")
29002891
}
2901-
29022892
p!(print(self.0.trait_ref.print_only_trait_path()));
29032893
}
29042894

@@ -2933,7 +2923,6 @@ define_print_and_forward_display! {
29332923
p!("~const ");
29342924
}
29352925
}
2936-
// FIXME(effects) print `~const` here
29372926
if let ty::ImplPolarity::Negative = self.polarity {
29382927
p!("!");
29392928
}

compiler/rustc_middle/src/ty/util.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ impl<'tcx> TyCtxt<'tcx> {
782782
|| self.extern_crate(key.as_def_id()).is_some_and(|e| e.is_direct())
783783
}
784784

785-
pub fn expected_const_effect_param_for_body(self, def_id: LocalDefId) -> ty::Const<'tcx> {
785+
pub fn expected_host_effect_param_for_body(self, def_id: LocalDefId) -> ty::Const<'tcx> {
786786
// FIXME(effects): This is suspicious and should probably not be done,
787787
// especially now that we enforce host effects and then properly handle
788788
// effect vars during fallback.
@@ -817,7 +817,7 @@ impl<'tcx> TyCtxt<'tcx> {
817817
}
818818

819819
/// Constructs generic args for an item, optionally appending a const effect param type
820-
pub fn with_opt_const_effect_param(
820+
pub fn with_opt_host_effect_param(
821821
self,
822822
caller_def_id: LocalDefId,
823823
callee_def_id: DefId,
@@ -826,9 +826,10 @@ impl<'tcx> TyCtxt<'tcx> {
826826
let generics = self.generics_of(callee_def_id);
827827
assert_eq!(generics.parent, None);
828828

829-
let opt_const_param = generics.host_effect_index.is_some().then(|| {
830-
ty::GenericArg::from(self.expected_const_effect_param_for_body(caller_def_id))
831-
});
829+
let opt_const_param = generics
830+
.host_effect_index
831+
.is_some()
832+
.then(|| ty::GenericArg::from(self.expected_host_effect_param_for_body(caller_def_id)));
832833

833834
self.mk_args_from_iter(args.into_iter().map(|arg| arg.into()).chain(opt_const_param))
834835
}

compiler/rustc_mir_build/src/build/matches/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
500500
self.tcx,
501501
eq_def_id,
502502
sym::eq,
503-
self.tcx.with_opt_const_effect_param(self.def_id, eq_def_id, [ty, ty]),
503+
self.tcx.with_opt_host_effect_param(self.def_id, eq_def_id, [ty, ty]),
504504
);
505505

506506
let bool_ty = self.tcx.types.bool;

compiler/rustc_mir_build/src/thir/pattern/const_to_pat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ impl<'tcx> ConstToPat<'tcx> {
272272
ty::TraitRef::new(
273273
tcx,
274274
partial_eq_trait_id,
275-
tcx.with_opt_const_effect_param(
275+
tcx.with_opt_host_effect_param(
276276
tcx.hir().enclosing_body_owner(self.id),
277277
partial_eq_trait_id,
278278
[ty, ty],

compiler/rustc_symbol_mangling/src/legacy.rs

+1
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ impl<'tcx> Printer<'tcx> for SymbolPrinter<'tcx> {
342342
&mut self,
343343
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
344344
args: &[GenericArg<'tcx>],
345+
_params: &[ty::GenericParamDef],
345346
) -> Result<(), PrintError> {
346347
print_prefix(self)?;
347348

compiler/rustc_symbol_mangling/src/v0.rs

+2
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ impl<'tcx> Printer<'tcx> for SymbolMangler<'tcx> {
298298
)
299299
},
300300
args,
301+
&self.tcx.generics_of(impl_def_id).params,
301302
)?;
302303
} else {
303304
self.push_disambiguator(key.disambiguated_data.disambiguator as u64);
@@ -800,6 +801,7 @@ impl<'tcx> Printer<'tcx> for SymbolMangler<'tcx> {
800801
&mut self,
801802
print_prefix: impl FnOnce(&mut Self) -> Result<(), PrintError>,
802803
args: &[GenericArg<'tcx>],
804+
_params: &[ty::GenericParamDef],
803805
) -> Result<(), PrintError> {
804806
// Don't print any regions if they're all erased.
805807
let print_regions = args.iter().any(|arg| match arg.unpack() {

tests/ui/rfcs/rfc-2632-const-trait-impl/call-const-trait-method-fail.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `u32: ~const Plus` is not satisfied
22
--> $DIR/call-const-trait-method-fail.rs:25:5
33
|
44
LL | a.plus(b)
5-
| ^ the trait `Plus` is not implemented for `u32`
5+
| ^ the trait `~const Plus` is not implemented for `u32`
66
|
77
= help: the trait `Plus` is implemented for `u32`
88

tests/ui/rfcs/rfc-2632-const-trait-impl/call-generic-method-nonconst.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
error[E0277]: the trait bound `S: ~const Foo<false>` is not satisfied
1+
error[E0277]: the trait bound `S: ~const Foo` is not satisfied
22
--> $DIR/call-generic-method-nonconst.rs:23:34
33
|
44
LL | pub const EQ: bool = equals_self(&S);
5-
| ----------- ^^ the trait `Foo<false>` is not implemented for `S`
5+
| ----------- ^^ the trait `~const Foo` is not implemented for `S`
66
| |
77
| required by a bound introduced by this call
88
|

tests/ui/rfcs/rfc-2632-const-trait-impl/const-default-method-bodies.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `NonConstImpl: ~const ConstDefaultFn` is not satis
22
--> $DIR/const-default-method-bodies.rs:24:18
33
|
44
LL | NonConstImpl.a();
5-
| ^ the trait `ConstDefaultFn` is not implemented for `NonConstImpl`
5+
| ^ the trait `~const ConstDefaultFn` is not implemented for `NonConstImpl`
66
|
77
= help: the trait `ConstDefaultFn` is implemented for `NonConstImpl`
88

tests/ui/rfcs/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `cross_crate::NonConst: ~const cross_crate::MyTrai
22
--> $DIR/cross-crate.rs:17:14
33
|
44
LL | NonConst.func();
5-
| ^^^^ the trait `cross_crate::MyTrait` is not implemented for `cross_crate::NonConst`
5+
| ^^^^ the trait `~const cross_crate::MyTrait` is not implemented for `cross_crate::NonConst`
66
|
77
= help: the trait `cross_crate::MyTrait` is implemented for `cross_crate::NonConst`
88

0 commit comments

Comments
 (0)