]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/build/expr/as_place.rs
Rollup merge of #63121 - estebank:formatting-pos, r=alexcrichton
[rust.git] / src / librustc_mir / build / expr / as_place.rs
1 //! See docs in build/expr/mod.rs
2
3 use crate::build::expr::category::Category;
4 use crate::build::ForGuard::{OutsideGuard, RefWithinGuard};
5 use crate::build::{BlockAnd, BlockAndExtension, Builder};
6 use crate::hair::*;
7 use rustc::mir::interpret::{PanicInfo::BoundsCheck};
8 use rustc::mir::*;
9 use rustc::ty::{CanonicalUserTypeAnnotation, Variance};
10
11 use rustc_data_structures::indexed_vec::Idx;
12
13 impl<'a, 'tcx> Builder<'a, 'tcx> {
14     /// Compile `expr`, yielding a place that we can move from etc.
15     pub fn as_place<M>(&mut self, block: BasicBlock, expr: M) -> BlockAnd<Place<'tcx>>
16     where
17         M: Mirror<'tcx, Output = Expr<'tcx>>,
18     {
19         let expr = self.hir.mirror(expr);
20         self.expr_as_place(block, expr, Mutability::Mut)
21     }
22
23     /// Compile `expr`, yielding a place that we can move from etc.
24     /// Mutability note: The caller of this method promises only to read from the resulting
25     /// place. The place itself may or may not be mutable:
26     /// * If this expr is a place expr like a.b, then we will return that place.
27     /// * Otherwise, a temporary is created: in that event, it will be an immutable temporary.
28     pub fn as_read_only_place<M>(&mut self, block: BasicBlock, expr: M) -> BlockAnd<Place<'tcx>>
29     where
30         M: Mirror<'tcx, Output = Expr<'tcx>>,
31     {
32         let expr = self.hir.mirror(expr);
33         self.expr_as_place(block, expr, Mutability::Not)
34     }
35
36     fn expr_as_place(
37         &mut self,
38         mut block: BasicBlock,
39         expr: Expr<'tcx>,
40         mutability: Mutability,
41     ) -> BlockAnd<Place<'tcx>> {
42         debug!(
43             "expr_as_place(block={:?}, expr={:?}, mutability={:?})",
44             block, expr, mutability
45         );
46
47         let this = self;
48         let expr_span = expr.span;
49         let source_info = this.source_info(expr_span);
50         match expr.kind {
51             ExprKind::Scope {
52                 region_scope,
53                 lint_level,
54                 value,
55             } => this.in_scope((region_scope, source_info), lint_level, |this| {
56                 if mutability == Mutability::Not {
57                     this.as_read_only_place(block, value)
58                 } else {
59                     this.as_place(block, value)
60                 }
61             }),
62             ExprKind::Field { lhs, name } => {
63                 let place = unpack!(block = this.as_place(block, lhs));
64                 let place = place.field(name, expr.ty);
65                 block.and(place)
66             }
67             ExprKind::Deref { arg } => {
68                 let place = unpack!(block = this.as_place(block, arg));
69                 let place = place.deref();
70                 block.and(place)
71             }
72             ExprKind::Index { lhs, index } => {
73                 let (usize_ty, bool_ty) = (this.hir.usize_ty(), this.hir.bool_ty());
74
75                 let slice = unpack!(block = this.as_place(block, lhs));
76                 // Making this a *fresh* temporary also means we do not have to worry about
77                 // the index changing later: Nothing will ever change this temporary.
78                 // The "retagging" transformation (for Stacked Borrows) relies on this.
79                 let idx = unpack!(block = this.as_temp(
80                     block,
81                     expr.temp_lifetime,
82                     index,
83                     Mutability::Not,
84                 ));
85
86                 // bounds check:
87                 let (len, lt) = (
88                     this.temp(usize_ty.clone(), expr_span),
89                     this.temp(bool_ty, expr_span),
90                 );
91                 this.cfg.push_assign(
92                     block,
93                     source_info, // len = len(slice)
94                     &len,
95                     Rvalue::Len(slice.clone()),
96                 );
97                 this.cfg.push_assign(
98                     block,
99                     source_info, // lt = idx < len
100                     &lt,
101                     Rvalue::BinaryOp(
102                         BinOp::Lt,
103                         Operand::Copy(Place::from(idx)),
104                         Operand::Copy(len.clone()),
105                     ),
106                 );
107
108                 let msg = BoundsCheck {
109                     len: Operand::Move(len),
110                     index: Operand::Copy(Place::from(idx)),
111                 };
112                 let success = this.assert(block, Operand::Move(lt), true, msg, expr_span);
113                 success.and(slice.index(idx))
114             }
115             ExprKind::SelfRef => block.and(Place::from(Local::new(1))),
116             ExprKind::VarRef { id } => {
117                 let place = if this.is_bound_var_in_guard(id) {
118                     let index = this.var_local_id(id, RefWithinGuard);
119                     Place::from(index).deref()
120                 } else {
121                     let index = this.var_local_id(id, OutsideGuard);
122                     Place::from(index)
123                 };
124                 block.and(place)
125             }
126             ExprKind::StaticRef { id } => block.and(Place {
127                 base: PlaceBase::Static(Box::new(Static {
128                     ty: expr.ty,
129                     kind: StaticKind::Static(id),
130                 })),
131                 projection: None,
132             }),
133
134             ExprKind::PlaceTypeAscription { source, user_ty } => {
135                 let place = unpack!(block = this.as_place(block, source));
136                 if let Some(user_ty) = user_ty {
137                     let annotation_index = this.canonical_user_type_annotations.push(
138                         CanonicalUserTypeAnnotation {
139                             span: source_info.span,
140                             user_ty,
141                             inferred_ty: expr.ty,
142                         }
143                     );
144                     this.cfg.push(
145                         block,
146                         Statement {
147                             source_info,
148                             kind: StatementKind::AscribeUserType(
149                                 place.clone(),
150                                 Variance::Invariant,
151                                 box UserTypeProjection { base: annotation_index, projs: vec![], },
152                             ),
153                         },
154                     );
155                 }
156                 block.and(place)
157             }
158             ExprKind::ValueTypeAscription { source, user_ty } => {
159                 let source = this.hir.mirror(source);
160                 let temp = unpack!(
161                     block = this.as_temp(block, source.temp_lifetime, source, mutability)
162                 );
163                 if let Some(user_ty) = user_ty {
164                     let annotation_index = this.canonical_user_type_annotations.push(
165                         CanonicalUserTypeAnnotation {
166                             span: source_info.span,
167                             user_ty,
168                             inferred_ty: expr.ty,
169                         }
170                     );
171                     this.cfg.push(
172                         block,
173                         Statement {
174                             source_info,
175                             kind: StatementKind::AscribeUserType(
176                                 Place::from(temp.clone()),
177                                 Variance::Invariant,
178                                 box UserTypeProjection { base: annotation_index, projs: vec![], },
179                             ),
180                         },
181                     );
182                 }
183                 block.and(Place::from(temp))
184             }
185
186             ExprKind::Array { .. }
187             | ExprKind::Tuple { .. }
188             | ExprKind::Adt { .. }
189             | ExprKind::Closure { .. }
190             | ExprKind::Unary { .. }
191             | ExprKind::Binary { .. }
192             | ExprKind::LogicalOp { .. }
193             | ExprKind::Box { .. }
194             | ExprKind::Cast { .. }
195             | ExprKind::Use { .. }
196             | ExprKind::NeverToAny { .. }
197             | ExprKind::Pointer { .. }
198             | ExprKind::Repeat { .. }
199             | ExprKind::Borrow { .. }
200             | ExprKind::Match { .. }
201             | ExprKind::Loop { .. }
202             | ExprKind::Block { .. }
203             | ExprKind::Assign { .. }
204             | ExprKind::AssignOp { .. }
205             | ExprKind::Break { .. }
206             | ExprKind::Continue { .. }
207             | ExprKind::Return { .. }
208             | ExprKind::Literal { .. }
209             | ExprKind::InlineAsm { .. }
210             | ExprKind::Yield { .. }
211             | ExprKind::Call { .. } => {
212                 // these are not places, so we need to make a temporary.
213                 debug_assert!(match Category::of(&expr.kind) {
214                     Some(Category::Place) => false,
215                     _ => true,
216                 });
217                 let temp =
218                     unpack!(block = this.as_temp(block, expr.temp_lifetime, expr, mutability));
219                 block.and(Place::from(temp))
220             }
221         }
222     }
223 }