-
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
ty::type_contents is too imprecise in some cases (e.g. when called from trans) #22815
Comments
Note that if we normalized the input as |
Closed #22828 in favor of this, but just a reminder to ensure this compiles if this issue is closed: trait Foo {
type A;
fn foo(&self) {}
}
impl Foo for usize {
type A = usize;
}
struct Bar<T: Foo> { inner: T::A }
fn is_send<T: Send>() {}
fn main() {
is_send::<Bar<usize>>();
} (current error)
|
Triage: @alexcrichton 's example now compiles. Can this be closed? |
It seems like we only use |
spawned off of #22536
@nikomatsakis tells me that trans has been migrating away from its uses of
ty::type_contents
(or perhaps he meant thatrustc
in general is migrating away from using it). But there are still places that rely on it to drive particular bits of logic.This is problematic because
ty::type_contents
is designed to produce a set of properties that could hold for the given type, depending on what is substituted for its type parameters; this is in stark contrast totrans
, which deals directly with a monomorphized (and normalized type), where all of the relevant information needed for codegen is readily available.ty::type_contents
is written, it is relevant, because when you compute the type contents of a struct instance likeBufferHandle<Res>
, the logic ofty::type_contents
recursively processes its fields (after substitution), namely the type<Res as Resources>::Buffer
. But at this point, type contents just says "That's a projection; anything could be substituted in for that", and produces the most conservative result (a bitset holding all ones for the type-contents). And then that conservative result pollutes the type-contents for the wholeBufferHandle<Res>
overall.ty::ty_contents
.I am going to try to fix the actual unsoundness that results from the problems above by avoiding relying on
ty::type_contents
as anything but an conservative approxmation within trans.This ticket is to log the cases (in e.g. trans, but potentially also elsewhere) where there still are calls to
ty:type_contents
, so that we can go back and replace them with something better. (E.g., perhaps a new version of type contents has the inputs it needs to normalize types as it descends through their structure, whichty::type_contents
does not currently have.)My hope is that the cases listed on this ticket do not reflect cases where we have unsound behavior, but merely cases where we can in some cases produce lower quality code than we would otherwise.
ty::type_contents
from trans, but pnkfelix hypothesized based on Send/Sync transitive analysis lost in stored associated types #22828 that the same problem affects other parts of the compiler true, resulting not merely in lower quality code, but also ... "expressiveness exceptions." (Better term, anyone?)Footnote: In the concrete example of #22536, the particular issue is that the decision about whether to zero the original memory after copying-or-moving a value from one place to another is based on looking up the "needs_drop" bit in the type contents. Since the type contents is all-ones, we are meant to conclude "I guess this value might have an associated destructor." Of course, this is very wrong in the case of trans, where given "this might have an associated destructor", it is very wrong to conclude "I must need to zero the original memory where I got the value." We can (and I will) fix the particular issue of #22536 on its own. But I want to file this ticket first so that I have an issue number to put into comments near the uses of
ty:type_contents
that remain.The text was updated successfully, but these errors were encountered: