Skip to content
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

two phase borrows: ensure reservations are limited to assignments to temps #46746

Closed
pnkfelix opened this issue Dec 15, 2017 · 3 comments
Closed
Labels
A-NLL Area: Non-lexical lifetimes (NLL)
Milestone

Comments

@pnkfelix
Copy link
Member

Spawned off of #46537 (comment)

@arielb1 put its simply:

However, it's probably a wise idea to limit reservations to assignments to temporaries. I don't think
MIR construction ever does anything else, but you shouldn't be able to do this:

let mut a = 0;
let mut b = 0;
let mut x: &mut u32 = &mut a;
let y = &mut x;
*y = &mut b; // this borrow should be active
// look at me, no use of `*y`, but:
use(x, &b); // should be illegal
@pnkfelix pnkfelix added WG-compiler-nll A-NLL Area: Non-lexical lifetimes (NLL) labels Dec 15, 2017
@pnkfelix
Copy link
Member Author

My thinking here is that we should add an assert! ensuring the (believed current invariant) holds.

(We could perhaps go further and try to make the two-phase borrow system force an immediate activation when it sees an assignment to a non-temporary, if we discover that the supposed invariant does not hold.)

@pnkfelix pnkfelix added this to the NLL prototype milestone Dec 15, 2017
@pnkfelix
Copy link
Member Author

cc #46037

@pnkfelix
Copy link
Member Author

Hmm it seems according to https://github.com/rust-lang/rust/blob/master/src/test/compile-fail/borrowck/borrowck-issue-14498.rs that the proposed invariant does not hold. Good thing we attempted to check it!

Compiler error (once I added a relatively narrow assertion to the MIR borrowck):

error: internal compiler error: /home/pnkfelix/Dev/Mozilla/rust-mirborrowck/src/librustc_mir/borrow_check/mod.rs:342: mutable borrows must be assigned to locals
  --> /home/pnkfelix/Dev/Mozilla/rust-mirborrowck/src/test/compile-fail/borrowck/borrowck-issue-14498.rs:27:25
   |
27 |     let y: Box<_> = box &mut x;
   |                         ^^^^^^

note: the compiler unexpectedly panicked. this is a bug.

pnkfelix added a commit to pnkfelix/rust that referenced this issue Dec 20, 2017
GuillaumeGomez added a commit to GuillaumeGomez/rust that referenced this issue Dec 21, 2017
…m-assignments-to-locals, r=arielb1

Ensure separate activations only occur for assignments to locals

Ensure separate activations only occur for assignments to locals, not projections.

Fix rust-lang#46746.

(I didn't make a regression test because we do not really have a good way to directly express the case that we are trying to catch, because we cannot write MIR directly.)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-NLL Area: Non-lexical lifetimes (NLL)
Projects
None yet
Development

No branches or pull requests

1 participant