-
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
Polymorphization: Look at called functions for usedness of generic params #106233
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
Some changes occurred to the CTFE / Miri engine cc @rust-lang/miri |
This comment has been minimized.
This comment has been minimized.
When a generic param is only used in a const fndef where it is in turn unused, then it's unused in the caller as well. This causes query cycles on recursive functions, we need to recover from them and ignore them.
5d5f902
to
6efacdd
Compare
The query system is not structured to allow such cycles. This is bound to cause ICEs. fn foo<T, U>() { bar::<T>() }
fn bar<T>() { foo::<u8, T>() } If we start by computing
If we start by computing
So we have the query's value change depending on the order of query computation. This is unrelated to the contents of |
yeah that's what i thought and why i set it back to S-waiting-on-author, i need to find something better |
…-errors Polymorphization cleanup Split out of rust-lang#106233 Use a newtype instead of a bitset directly. This makes the code way easier to read and easier to adapt for future changes.
…-errors Polymorphization cleanup Split out of rust-lang#106233 Use a newtype instead of a bitset directly. This makes the code way easier to read and easier to adapt for future changes.
this needs a bunch of work if i continue working on this (which im not intending to do right now), so i'm closing this for now |
When determining whether a generic param is unused, we consider it unused even if it's used as a subst to a function const as long as it's not used within this function.
For example
caller
'sT
is considered unused now.This causes a query cycle with recursive functions. I couldn't think of an easy way to avoid the cycle, so I just added non-fatal cycles to the query system. I don't know whether that's a good idea or a terrible abomination, cc @cjgillot on that.
It worked for a few quick tests but this needs some very careful review to make sure that we don't accidentally consider too many things as unused, which would be very bad.