]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/borrow_check/prefixes.rs
Remove Static from PlaceBase
[rust.git] / src / librustc_mir / borrow_check / prefixes.rs
1 //! From the NLL RFC: "The deep [aka 'supporting'] prefixes for an
2 //! place are formed by stripping away fields and derefs, except that
3 //! we stop when we reach the deref of a shared reference. [...] "
4 //!
5 //! "Shallow prefixes are found by stripping away fields, but stop at
6 //! any dereference. So: writing a path like `a` is illegal if `a.b`
7 //! is borrowed. But: writing `a` is legal if `*a` is borrowed,
8 //! whether or not `a` is a shared or mutable reference. [...] "
9
10 use super::MirBorrowckCtxt;
11
12 use rustc::mir::{Place, PlaceBase, PlaceRef, ProjectionElem, ReadOnlyBodyAndCache};
13 use rustc::ty::{self, TyCtxt};
14 use rustc_hir as hir;
15
16 pub trait IsPrefixOf<'cx, 'tcx> {
17     fn is_prefix_of(&self, other: PlaceRef<'cx, 'tcx>) -> bool;
18 }
19
20 impl<'cx, 'tcx> IsPrefixOf<'cx, 'tcx> for PlaceRef<'cx, 'tcx> {
21     fn is_prefix_of(&self, other: PlaceRef<'cx, 'tcx>) -> bool {
22         self.base == other.base
23             && self.projection.len() <= other.projection.len()
24             && self.projection == &other.projection[..self.projection.len()]
25     }
26 }
27
28 pub(super) struct Prefixes<'cx, 'tcx> {
29     body: ReadOnlyBodyAndCache<'cx, 'tcx>,
30     tcx: TyCtxt<'tcx>,
31     kind: PrefixSet,
32     next: Option<PlaceRef<'cx, 'tcx>>,
33 }
34
35 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
36 #[allow(dead_code)]
37 pub(super) enum PrefixSet {
38     /// Doesn't stop until it returns the base case (a Local or
39     /// Static prefix).
40     All,
41     /// Stops at any dereference.
42     Shallow,
43     /// Stops at the deref of a shared reference.
44     Supporting,
45 }
46
47 impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
48     /// Returns an iterator over the prefixes of `place`
49     /// (inclusive) from longest to smallest, potentially
50     /// terminating the iteration early based on `kind`.
51     pub(super) fn prefixes(
52         &self,
53         place_ref: PlaceRef<'cx, 'tcx>,
54         kind: PrefixSet,
55     ) -> Prefixes<'cx, 'tcx> {
56         Prefixes { next: Some(place_ref), kind, body: self.body, tcx: self.infcx.tcx }
57     }
58 }
59
60 impl<'cx, 'tcx> Iterator for Prefixes<'cx, 'tcx> {
61     type Item = PlaceRef<'cx, 'tcx>;
62     fn next(&mut self) -> Option<Self::Item> {
63         let mut cursor = self.next?;
64
65         // Post-processing `place`: Enqueue any remaining
66         // work. Also, `place` may not be a prefix itself, but
67         // may hold one further down (e.g., we never return
68         // downcasts here, but may return a base of a downcast).
69
70         'cursor: loop {
71             match &cursor {
72                 PlaceRef { base: PlaceBase::Local(_), projection: [] } => {
73                     self.next = None;
74                     return Some(cursor);
75                 }
76                 PlaceRef { base: _, projection: [proj_base @ .., elem] } => {
77                     match elem {
78                         ProjectionElem::Field(_ /*field*/, _ /*ty*/) => {
79                             // FIXME: add union handling
80                             self.next = Some(PlaceRef { base: cursor.base, projection: proj_base });
81                             return Some(cursor);
82                         }
83                         ProjectionElem::Downcast(..)
84                         | ProjectionElem::Subslice { .. }
85                         | ProjectionElem::ConstantIndex { .. }
86                         | ProjectionElem::Index(_) => {
87                             cursor = PlaceRef { base: cursor.base, projection: proj_base };
88                             continue 'cursor;
89                         }
90                         ProjectionElem::Deref => {
91                             // (handled below)
92                         }
93                     }
94
95                     assert_eq!(*elem, ProjectionElem::Deref);
96
97                     match self.kind {
98                         PrefixSet::Shallow => {
99                             // Shallow prefixes are found by stripping away
100                             // fields, but stop at *any* dereference.
101                             // So we can just stop the traversal now.
102                             self.next = None;
103                             return Some(cursor);
104                         }
105                         PrefixSet::All => {
106                             // All prefixes: just blindly enqueue the base
107                             // of the projection.
108                             self.next = Some(PlaceRef { base: cursor.base, projection: proj_base });
109                             return Some(cursor);
110                         }
111                         PrefixSet::Supporting => {
112                             // Fall through!
113                         }
114                     }
115
116                     assert_eq!(self.kind, PrefixSet::Supporting);
117                     // Supporting prefixes: strip away fields and
118                     // derefs, except we stop at the deref of a shared
119                     // reference.
120
121                     let ty = Place::ty_from(cursor.base, proj_base, *self.body, self.tcx).ty;
122                     match ty.kind {
123                         ty::RawPtr(_) | ty::Ref(_ /*rgn*/, _ /*ty*/, hir::Mutability::Not) => {
124                             // don't continue traversing over derefs of raw pointers or shared
125                             // borrows.
126                             self.next = None;
127                             return Some(cursor);
128                         }
129
130                         ty::Ref(_ /*rgn*/, _ /*ty*/, hir::Mutability::Mut) => {
131                             self.next = Some(PlaceRef { base: cursor.base, projection: proj_base });
132                             return Some(cursor);
133                         }
134
135                         ty::Adt(..) if ty.is_box() => {
136                             self.next = Some(PlaceRef { base: cursor.base, projection: proj_base });
137                             return Some(cursor);
138                         }
139
140                         _ => panic!("unknown type fed to Projection Deref."),
141                     }
142                 }
143             }
144         }
145     }
146 }