|
| 1 | +# Move paths |
| 2 | + |
| 3 | +In reality, it's not enough to track initialization at the granularity |
| 4 | +of local variables. Sometimes we need to track, e.g., individual fields: |
| 5 | + |
| 6 | +```rust |
| 7 | +fn foo() { |
| 8 | + let a: (Vec<u32>, Vec<u32>) = (vec![22], vec![44]); |
| 9 | + |
| 10 | + // a.0 and a.1 are both initialized |
| 11 | + |
| 12 | + let b = a.0; // moves a.0 |
| 13 | + |
| 14 | + // a.0 is not initializd, but a.1 still is |
| 15 | + |
| 16 | + let c = a.0; // ERROR |
| 17 | + let d = a.1; // OK |
| 18 | +} |
| 19 | +``` |
| 20 | + |
| 21 | +To handle this, we track initialization at the granularity of a **move |
| 22 | +path**. A [`MovePath`] represents some location that the user can |
| 23 | +initialize, move, etc. So e.g. there is a move-path representing the |
| 24 | +local variable `a`, and there is a move-path representing `a.0`. Move |
| 25 | +paths roughly correspond to the concept of a [`Place`] from MIR, but |
| 26 | +they are indexed in ways that enable us to do move analysis more |
| 27 | +efficiently. |
| 28 | + |
| 29 | +[`MovePath`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MovePath.html |
| 30 | +[`Place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/enum.Place.html |
| 31 | + |
| 32 | +## Move path indices |
| 33 | + |
| 34 | +Although there is a [`MovePath`] data structure, they are never |
| 35 | +referenced directly. Instead, all the code passes around *indices* of |
| 36 | +type |
| 37 | +[`MovePathIndex`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/indexes/struct.MovePathIndex.html). If |
| 38 | +you need to get information about a move path, you use this index with |
| 39 | +the [`move_paths` field of the `MoveData`][move_paths]. For example, |
| 40 | +to convert a [`MovePathIndex`] `mpi` into a MIR [`Place`], you might |
| 41 | +access the [`MovePath::place`] field like so: |
| 42 | + |
| 43 | +```rust |
| 44 | +move_data.move_paths[mpi].place |
| 45 | +``` |
| 46 | + |
| 47 | +[move_paths]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MoveData.html#structfield.move_paths |
| 48 | +[`MovePath::place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MovePath.html#structfield.place |
| 49 | + |
| 50 | +## Building move paths |
| 51 | + |
| 52 | +One of the first things we do in the MIR borrow check is to construct |
| 53 | +the set of move paths. This is done as part of the |
| 54 | +[`MoveData::gather_moves`] function. This function uses a MIR visitor |
| 55 | +called [`Gatherer`] to walk the MIR and look at how each [`Place`] |
| 56 | +within is accessed. For each such [`Place`], it constructs a |
| 57 | +corresponding [`MovePathIndex`]. It also records when/where that |
| 58 | +particular move path is moved/initialized, but we'll get to that in a |
| 59 | +later section. |
| 60 | + |
| 61 | +[`Gatherer`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/builder/struct.Gatherer.html |
| 62 | +[`MoveData::gather_moves`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MoveData.html#method.gather_moves |
| 63 | + |
| 64 | +### Illegal move paths |
| 65 | + |
| 66 | +We don't actually move-paths for **every** [`Place`] that gets used. |
| 67 | +In particular, if it is illegal to move from a [`Place`], then there |
| 68 | +is no need for a [`MovePathIndex`]. Some examples: |
| 69 | + |
| 70 | +- You cannot move from a static variable, so we do not create a [`MovePathIndex`] |
| 71 | + for static variables. |
| 72 | +- You cannot move an individual element of an array, so if we have e.g. `foo: [String; 3]`, |
| 73 | + there would be no move-path for `foo[1]`. |
| 74 | +- You cannot move from inside of a borrowed reference, so if we have e.g. `foo: &String`, |
| 75 | + there would be no move-path for `*foo`. |
| 76 | + |
| 77 | +These rules are enforced by the [`move_path_for`] function, which |
| 78 | +converts a [`Place`] into a [`MovePathIndex`] -- in error cases like |
| 79 | +those just discussed, the function returns an `Err`. This in turn |
| 80 | +means we don't have to bother tracking whether those places are |
| 81 | +initialized (which lowers overhead). |
| 82 | + |
| 83 | +[`move_path_for`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/builder/struct.Gatherer.html#method.move_path_for |
| 84 | + |
| 85 | +## Looking up a move-path |
| 86 | + |
| 87 | +If you have a [`Place`] and you would like to convert it to a [`MovePathIndex`], you |
| 88 | +can do that using the [`MovePathLookup`] structure found in the [`rev_lookup`] field |
| 89 | +of [`MoveData`]. There are two different methods: |
| 90 | + |
| 91 | +[`MovePathLookup`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MovePathLookup.html |
| 92 | +[`rev_lookup`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MoveData.html#structfield.rev_lookup |
| 93 | + |
| 94 | +- [`find_local`], which takes a [`mir::Local`] representing a local |
| 95 | + variable. This is the easier method, because we **always** create a |
| 96 | + [`MovePathIndex`] for every local variable. |
| 97 | +- [`find`], which takes an arbitrary [`Place`]. This method is a bit |
| 98 | + more annoying to use, precisely because we don't have a |
| 99 | + [`MovePathIndex`] for **every** [`Place`] (as we just discussed in |
| 100 | + the "illegal move paths" section). Therefore, [`find`] returns a |
| 101 | + [`LookupResult`] indicating the closest path it was able to find |
| 102 | + that exists (e.g., for `foo[1]`, it might return just the path for |
| 103 | + `foo`). |
| 104 | + |
| 105 | +[`find`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MovePathLookup.html#method.find |
| 106 | +[`find_local`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/struct.MovePathLookup.html#method.find_local |
| 107 | +[`mir::Local`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/struct.Local.html |
| 108 | +[`LookupResult`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/move_paths/enum.LookupResult.html |
| 109 | + |
| 110 | +## Cross-references |
| 111 | + |
| 112 | +As we noted above, move-paths are stored in a big vector and |
| 113 | +referenced via their [`MovePathIndex`]. However, within this vector, |
| 114 | +they are also structured into a tree. So for example if you have the |
| 115 | +[`MovePathIndex`] for `a.b.c`, you can go to its parent move-path |
| 116 | +`a.b`. You can also iterate over all children paths: so, from `a.b`, |
| 117 | +you might iterate to find the path `a.b.c` (here you are iterating |
| 118 | +just over the paths that the user **actually referenced**, not all |
| 119 | +**possible** paths the user could have done). These references are |
| 120 | +used for example in the [`has_any_child_of`] function, which checks |
| 121 | +whether the dataflow results contain a value for the given move-path |
| 122 | +(e.g., `a.b`) or any child of that move-path (e.g., `a.b.c`). |
| 123 | + |
| 124 | +[`Place`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/mir/enum.Place.html |
| 125 | +[`has_any_child_of`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/dataflow/at_location/struct.FlowAtLocation.html#method.has_any_child_of |
| 126 | + |
0 commit comments