-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Remove is_normalizable
#12550
base: master
Are you sure you want to change the base?
Remove is_normalizable
#12550
Conversation
@@ -1013,10 +969,6 @@ pub fn adt_and_variant_of_res<'tcx>(cx: &LateContext<'tcx>, res: Res) -> Option< | |||
/// Comes up with an "at least" guesstimate for the type's size, not taking into | |||
/// account the layout of type parameters. | |||
pub fn approx_ty_size<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> u64 { | |||
use rustc_middle::ty::layout::LayoutOf; | |||
if !is_normalizable(cx, cx.param_env, 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 also fixes #11915, right? iirc that lint uses approx_ty_size
indirectly and that failed because of the check here
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.
Looks like it.
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.
should this also have a test for that then?
@@ -1013,10 +969,6 @@ pub fn adt_and_variant_of_res<'tcx>(cx: &LateContext<'tcx>, res: Res) -> Option< | |||
/// Comes up with an "at least" guesstimate for the type's size, not taking into | |||
/// account the layout of type parameters. | |||
pub fn approx_ty_size<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> u64 { |
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.
So if I understand correctly, approx_ty_size
shouldn't be called if the Ty
might be a type alias because that can have trait projections without having an explicit T: Trait
bound and thus would not be in the ParamEnv, which causes layout_of
to crash when normalizing it?
Should this be mentioned in the doc comment that it shouldn't be called in those cases?
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.
Only when you would want to resolve things in the context of the type alias item. If you're in some other context and just instantiating the alias then it's fine.
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.
Right. Isn't it still worth documenting though? I feel like it's a subtle detail that could easily be missed or people might not even know about it.
clippy_utils/src/ty.rs
Outdated
ty::Coroutine(_, args) => for_list(tcx, param_env, args.as_coroutine().upvar_tys().iter()), | ||
ty::CoroutineClosure(_, args) => for_list(tcx, param_env, args.as_coroutine_closure().upvar_tys().iter()), | ||
ty::CoroutineWitness(_, args) => for_list(tcx, param_env, args.iter().filter_map(GenericArg::as_type)), |
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 don't think coroutines are ZSTs if they don't have upvars. At least futures generated by async blocks are always at least of size 1 to tell that they've finished https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=743d622d9887740234d325ae94dbf5f4
Then again, I have no idea if zero_sized_map_values
realistically could ever run into this?
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 is a good point. Fixed.
The check for an uninhabited coroutine is still conservative, but that should be fine.
107e072
to
88aee9e
Compare
Why does |
☔ The latest upstream changes (presumably #12690) made this pull request unmergeable. Please resolve the merge conflicts. |
Hey this is triage, I'm closing this due to inactivity. If you want to continue this implementation, you're welcome to create a new PR. Thank you for the time, you already put into this! Interested parties are welcome to pick this implementation up as well :) @rustbot label +S-inactive-closed -S-waiting-on-author -S-waiting-on-review |
You're missing the |
Right, I see now. I think I initially tested it with a slightly different repro I do still think a comment on |
…ry on type aliases.
Looks good to me! Initially had some concerns with the @bors r+ |
Remove `is_normalizable` fixes #11915 fixes #9798 Fixes only the first ICE in #10508 `is_normalizable` is used in a few places to avoid an ICE due to a delayed bug in normalization which occurs when a projection type is used on a type which doesn't implement the correct trait. The only part of clippy that actually needed this check is `zero_sized_map_values` due to a quirk of how type aliases work (they don't a real `ParamEnv`). This fixes the need for the check there by manually walking the type to determine if it's zero sized, rather than attempting to compute the type's layout thereby avoid the normalization that triggers the delayed bug. For an example of the issue with type aliases: ```rust trait Foo { type Foo; } struct Bar<T: Foo>(T::Foo); // The `ParamEnv` here just has `T: Sized`, not `T: Sized + Foo`. type Baz<T> = &'static Bar<T>; ``` When trying to compute the layout of `&'static Bar<T>` we need to determine if what type `<Bar<T> as Pointee>::Metadata` is. Doing this requires knowing if `T::Foo: Sized`, but since `T` doesn't have an associated type `Foo` in the context of the type alias a delayed bug is issued. changelog: [`large_enum_variant`]: correctly get the size of `bytes::Bytes`.
💔 Test failed - checks-action_test |
Hello! Just found this PR and pinging @Jarcho since there wasn't much acivity there for more than a month |
☔ The latest upstream changes (presumably #13639) made this pull request unmergeable. Please resolve the merge conflicts. |
fixes #11915
fixes #9798
Fixes only the first ICE in #10508
is_normalizable
is used in a few places to avoid an ICE due to a delayed bug in normalization which occurs when a projection type is used on a type which doesn't implement the correct trait. The only part of clippy that actually needed this check iszero_sized_map_values
due to a quirk of how type aliases work (they don't a realParamEnv
). This fixes the need for the check there by manually walking the type to determine if it's zero sized, rather than attempting to compute the type's layout thereby avoid the normalization that triggers the delayed bug.For an example of the issue with type aliases:
When trying to compute the layout of
&'static Bar<T>
we need to determine if what type<Bar<T> as Pointee>::Metadata
is. Doing this requires knowing ifT::Foo: Sized
, but sinceT
doesn't have an associated typeFoo
in the context of the type alias a delayed bug is issued.changelog: [
large_enum_variant
]: correctly get the size ofbytes::Bytes
.