-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Union initialization and Drop #2514
Union initialization and Drop #2514
Conversation
|
||
// We can write into uninitialized inner fields: | ||
u.f2.1 = S(42); | ||
let _ = &u.f2.1; // This field is initialized now. |
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.
let _
is a bit of a footgun in terms of testing initialization.
_
pattern doesn't access the right side at all, so even something like this
let x: u8;
let _ = x;
successfully compiles.
You need let _y = x;
or just x;
to test for x
being initialized.
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.
oops thanks!
EDIT: And fixed.
let _ = &u.f2.0; | ||
|
||
// Equivalently, we can assign the entire union: | ||
u = U { f2: S(42) }; |
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 doesn't type-check; f2
has type (S, S)
.
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.
Thanks, I also aligned the unions in the two examples.
# Summary | ||
[summary]: #summary | ||
|
||
Unions do not allow fields of types that require drop glue, but they may still |
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.
Nit: "drop glue" is such a rustc-specific jargon, perhaps "trivial destructor drop", or "drop not running any code", or something like this could be better.
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 think "(doesn't) need(s) drop" or "noop drop" could also work as terms.
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.
Don't we have a term for "the code that runs when something is dropped"? I feel that is not such a strange rustc-specific concept, all Rust implementations and also e.g. C++ have it.
Personally, I find "noop drop" much less clear than "does not have drop glue".^^
(which this RFC adapts from @petrochenkov's proposal) can sometimes be a little | ||
surprising when looking at individual fields: Whether `u.f2 = ...;` drops | ||
depends on whether `u.f1` has been previously initialized. @petrochenkov hence | ||
proposes a lint to warn people that unions with drop-glue fields are not always |
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.
The lint was inherited from the original RFC rather than proposed by me :)
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.
Ah, sorry. Fixed :)
the rules that are currently only applied to unions that `impl Drop`. However, | ||
that does not actually help with the pitfall described above. The more complex | ||
rules allow more code that many will reasonably expect to work, and do not seem | ||
to introduce any additional pitfalls. |
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.
Independent nested fields borrowed independently is probably the most natural expectation:
union U { a: (u8, u8), b: u16 }
let x = &u.a.0;
let y = &u.a.1;
so it's borrow checker that needs to work in per-field fashion first of all.
Move checker just mirrors what borrow checker does (for consistency and also because they share common infrastructure in the compiler).
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.
Ah, I hadn't thought about borrowck here. So with the rules as stated, once a field is (partially) borrowed, its siblings all become completely blocked from borrowing?
Borrowing is unsafe, so this would not be necessary, but it still seems useful.
LGTM. This RFC doesn't seem to prevent reintroducing |
The RFC summary should probably link to something that explains what a drop glue is. (The Drop chapter of the Rust book doesn't contain the word "glue") |
What would be a good example?
Yes. (I avoided calling them "Drop fields" because a field can need drop glue even if it does not
I added a brief explanation. |
@rfcbot merge Based on discussion in the lang team and with Ralf, I think this is ready to merge. Fields in unions that impl Drop have never been part of stable Rust, so this isn't a breaking change, and this fixes various concerns and painful corner cases that kept coming up. |
Team member @joshtriplett has proposed to merge this. The next step is review by the rest of the tagged teams: Concerns:
Once a majority of reviewers approve (and none object), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
} | ||
{ | ||
let u = U { f1: ManuallyDrop::new(Vec::new()) }; | ||
foo(u.f2); |
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 looks like moving out of a union that implements Drop
-- how is this different from the let v = u.f1;
case above?
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.
You are right, I will fix the example.
The only way to deinitialize a union with drop is to move away the entire thing, just like with structs.
This requires `unsafe` because it desugars to `ManuallyDrop::deref_mut(&mut u.f).0`, | ||
and while writing to a union field is safe, taking a reference is not. | ||
|
||
For this reason, `DerefMut` auto-deref is not applied when working on a union or |
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.
Why ban just auto-deref rather than banning DerefMut
entirely? Users could access the nested types using .as_ptr()
or .as_mut_ptr()
methods.
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 felt that was too drastic, but sure.
Probably calling deref_mut
manually is also still okay, just the sugar that lets you use *
is not?
I also do not know what in technically feasible in this space.
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.
Yeah, I'm not sure what the right balance is. You want to allow the deref when the value has been initialized, but ban it as much as possible in cases where it creates an &mut T
to a partially or wholly uninitialized T
.
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.
Uh, I think I'd rather avoid such stateful lints. They are not complete enough IMHO (they cannot know which field you are now allowed to create a reference to).
@rfcbot concern pnkfelix-wants-a-chance-to-read-this-before-he-checks-his-box I've been swamped, but this is an area I sort of care about and I want to read this |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
|
||
// Rejected | ||
union Example4<T> { | ||
// `T` might have drop glue, and then `Cell<T>` would as well. |
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 mention RefCell<T>
?
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.
Why that? I didn't intend to list every type with interior mutability.
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.
Specifically because the line below is f1: RefCell<T>
. I assumed this comment was here to explain why, given that line, this struct is rejected.
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.
Oh, I made a typo and didn't use the same type on both sides. Thanks for pointing that out! (GitHub's diff viw for comments embedded in the discussions is so bad...)
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.
No problem - sorry I didn't point it out better initially! I'm still not entirely used to how github displays these things either.
Sorry it's a bit late, but in prior art section: Just want to point out that actually C++ does have destructors for unions. (See https://en.cppreference.com/w/cpp/language/union). Maybe a small edit to the text will be good. |
@crlf0710 Thanks for pointing that out! I fixed the text. Do you agree it is correct now? |
@RalfJung Looks good! |
Would this auto trait be an accurate expression of the “has no drop glue” concept? pub auto trait NoDropGlue {}
impl<T> !NoDropGlue for T where T: Drop {} If it is and we make it a lang item (in union Foo<T: NoDropGlue> {
f: T,
} |
I think it would begin to express that concept if it worked, but AFAIK those kind of negative bounds don't work...at least I recall that was the result of someone checking last time. We'd however also need impl<T> NoDropGlue for ManuallyDrop<T> and then what about unions themselves? Do they get auto traits the same way everything else does, or are auto traits just never implemented for them? Either way we'd want |
Good points. So leaving aside the auto-trait definition and assuming it can be implemented with ~compiler magic~ instead, would it be desirable for this trait to exist to enable such generic unions? |
I would think so, yes. However, introducing such a trait is firmly out of scope for this PR. |
i think the “has no drop glue” approximately corresponds to |
The final comment period, with a disposition to merge, as per the review above, is now complete. |
Huzzah! This RFC has been merged! Tracking issue: rust-lang/rust#55149 |
This RFC realizes the second part of https://internals.rust-lang.org/t/pre-rfc-unions-drop-types-and-manuallydrop/8025: Changing unions to no longer allow fields with drop glue, and otherwise describing what we need to settle before unions can be fully stabilized. Unfortunately this got somewhat more complicated than I thought.
As usual I had trouble separating things between the guide-level and the reference-level explanation; I hope this makes sense!
Rendered
Tracking issue