-
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
RFC: moving out of enums #2329
Comments
This seems useful. I support it. |
I guess. Kinda lukewarm about it. Requires the enum itself gets de-initialized, so only possible on a local. What's the motivating case? |
It's possible on anything that's movable, which includes both rvalues and local variables (it could be wider still than our current rules, as well). Motivating cases from pfox recently was something like this:
Right now this requires that the filedescriptor by copyable (and hence not a resource). I added an (unsafe) This came up for @brson with options (that was what motivated the original I can imagine something similar being useful with, say, a unique record that you would like to pull apart:
This may work today with last-use analysis, I don't know. |
To clarify my cryptic comment about the set of movable things being potentially wider, we could also allow anything "uniquely referenced" from the stack, so some chain |
Well, I guess it's enough to deinitialize |
We don't track init-ness of paths-within-locals, only locals themselves. Typestate is pretty shallow. |
I know we don't do it now. We could of course track the interior of variables (in some cases) but that's not quite what I meant. I just meant that we could allow moving out of an inner content and just deinitialize the variable as a whole when you're done. I guess you could achieve what I'm talking about with a move into an infallible pattern, e.g.,
in place of
but of course that doesn't work with fallible patterns (hence the bug) |
Thinking more on this, I've decided to close this issue and instead open some narrower requests. =) |
Reopening this. The lack of this is causing lots of copies (including file-sized ones!) Consider what one has to do with the return value of |
I think this may "just work" if we implement the suggestion in issue #2517, which is to require In other words, I think there's nothing special we need to do to make this work: we just need the unary |
I agree, if we go with #2517, this should just work (and then it would be compatible with last-use). |
This is now implemented. |
Did anything change within the last couple of ours around this code? I tried to move out of an enum earlier today and got runtime errors, probably related to double-destructing something. I had to go back to my move macro. |
I just checked on test/bench/pingpong.rs, and |
I am implementing this by adding an transitionary The current rule is that moving in a pattern is legal if (a) there is no pattern guard, (b) the matched thing is an rvalue, not an lvalue, (c) not "move x @ ...", and (d) no refs and moves in the same pattern. When match statements turn into by-copy-by-default, both the 'copy' and 'move' keyword should be removed and the semantics inferred instead. Rule for inferring copy vs move:
|
This is done. Syntax/inference may get upgraded. See #3271. |
Does this work well enough to get rid of the |
@eholk yes. |
see 8d00603; the one case I didn't get was moving out of a struct field in its destructor. it looked like that could be replaced with SharedMutableState but i didn't think too hard about it. |
add command to run our benchmarks This is quite ad-hoc but better than nothing IMO. I have also deleted the old `benches` folder. Some of these tests have UB 😂 and the rest doesn't seem very useful to benchmark the things that are slow about Miri today. Cc `@saethlin`
The existence of
option::unwrap()
(and soonreuslt::unwrap()
) points at a more general problem. There is no way to move something out of an enum. I think we should be able to solve this more generally. My proposal is something like this:In here,
a
,b
, andc
are not pointers intoexpr
but rather the values themselves. They are moved out of expr, which must be something movable.You could then write
option::unwrap()
like so:This fits best with adding
move
back as a unary operator (of which I am in favor). Basically,alt
over an expression that is an explicit move causes the bound variables not to be region pointers into the struct but rather the values themselves (i.e., the types will differ). Depending how explicit we want to be, last use analysis is still needed in that last example to convert the use ofv
from a copy to a move.The text was updated successfully, but these errors were encountered: