]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/build/expr/into.rs
Rollup merge of #62102 - RalfJung:read, r=Centril
[rust.git] / src / librustc_mir / build / expr / into.rs
1 //! See docs in build/expr/mod.rs
2
3 use crate::build::expr::category::{Category, RvalueFunc};
4 use crate::build::{BlockAnd, BlockAndExtension, BlockFrame, Builder};
5 use crate::hair::*;
6 use rustc::mir::*;
7 use rustc::ty;
8
9 use rustc_target::spec::abi::Abi;
10
11 impl<'a, 'tcx> Builder<'a, 'tcx> {
12     /// Compile `expr`, storing the result into `destination`, which
13     /// is assumed to be uninitialized.
14     pub fn into_expr(
15         &mut self,
16         destination: &Place<'tcx>,
17         mut block: BasicBlock,
18         expr: Expr<'tcx>,
19     ) -> BlockAnd<()> {
20         debug!(
21             "into_expr(destination={:?}, block={:?}, expr={:?})",
22             destination, block, expr
23         );
24
25         // since we frequently have to reference `self` from within a
26         // closure, where `self` would be shadowed, it's easier to
27         // just use the name `this` uniformly
28         let this = self;
29         let expr_span = expr.span;
30         let source_info = this.source_info(expr_span);
31
32         let expr_is_block_or_scope = match expr.kind {
33             ExprKind::Block { .. } => true,
34             ExprKind::Scope { .. } => true,
35             _ => false,
36         };
37
38         if !expr_is_block_or_scope {
39             this.block_context.push(BlockFrame::SubExpr);
40         }
41
42         let block_and = match expr.kind {
43             ExprKind::Scope {
44                 region_scope,
45                 lint_level,
46                 value,
47             } => {
48                 let region_scope = (region_scope, source_info);
49                 this.in_scope(region_scope, lint_level, |this| {
50                     this.into(destination, block, value)
51                 })
52             }
53             ExprKind::Block { body: ast_block } => {
54                 this.ast_block(destination, block, ast_block, source_info)
55             }
56             ExprKind::Match { scrutinee, arms } => {
57                 this.match_expr(destination, expr_span, block, scrutinee, arms)
58             }
59             ExprKind::NeverToAny { source } => {
60                 let source = this.hir.mirror(source);
61                 let is_call = match source.kind {
62                     ExprKind::Call { .. } => true,
63                     _ => false,
64                 };
65
66                 unpack!(block = this.as_local_rvalue(block, source));
67
68                 // This is an optimization. If the expression was a call then we already have an
69                 // unreachable block. Don't bother to terminate it and create a new one.
70                 if is_call {
71                     block.unit()
72                 } else {
73                     this.cfg
74                         .terminate(block, source_info, TerminatorKind::Unreachable);
75                     let end_block = this.cfg.start_new_block();
76                     end_block.unit()
77                 }
78             }
79             ExprKind::LogicalOp { op, lhs, rhs } => {
80                 // And:
81                 //
82                 // [block: If(lhs)] -true-> [else_block: dest = (rhs)]
83                 //        | (false)
84                 //  [shortcurcuit_block: dest = false]
85                 //
86                 // Or:
87                 //
88                 // [block: If(lhs)] -false-> [else_block: dest = (rhs)]
89                 //        | (true)
90                 //  [shortcurcuit_block: dest = true]
91
92                 let (shortcircuit_block, mut else_block, join_block) = (
93                     this.cfg.start_new_block(),
94                     this.cfg.start_new_block(),
95                     this.cfg.start_new_block(),
96                 );
97
98                 let lhs = unpack!(block = this.as_local_operand(block, lhs));
99                 let blocks = match op {
100                     LogicalOp::And => (else_block, shortcircuit_block),
101                     LogicalOp::Or => (shortcircuit_block, else_block),
102                 };
103                 let term = TerminatorKind::if_(this.hir.tcx(), lhs, blocks.0, blocks.1);
104                 this.cfg.terminate(block, source_info, term);
105
106                 this.cfg.push_assign_constant(
107                     shortcircuit_block,
108                     source_info,
109                     destination,
110                     Constant {
111                         span: expr_span,
112                         ty: this.hir.bool_ty(),
113                         user_ty: None,
114                         literal: match op {
115                             LogicalOp::And => this.hir.false_literal(),
116                             LogicalOp::Or => this.hir.true_literal(),
117                         },
118                     },
119                 );
120                 this.cfg.terminate(
121                     shortcircuit_block,
122                     source_info,
123                     TerminatorKind::Goto { target: join_block },
124                 );
125
126                 let rhs = unpack!(else_block = this.as_local_operand(else_block, rhs));
127                 this.cfg.push_assign(
128                     else_block,
129                     source_info,
130                     destination,
131                     Rvalue::Use(rhs),
132                 );
133                 this.cfg.terminate(
134                     else_block,
135                     source_info,
136                     TerminatorKind::Goto { target: join_block },
137                 );
138
139                 join_block.unit()
140             }
141             ExprKind::Loop {
142                 condition: opt_cond_expr,
143                 body,
144             } => {
145                 // [block] --> [loop_block] -/eval. cond./-> [loop_block_end] -1-> [exit_block]
146                 //                  ^                               |
147                 //                  |                               0
148                 //                  |                               |
149                 //                  |                               v
150                 //           [body_block_end] <-/eval. body/-- [body_block]
151                 //
152                 // If `opt_cond_expr` is `None`, then the graph is somewhat simplified:
153                 //
154                 // [block]
155                 //    |
156                 //   [loop_block] -> [body_block] -/eval. body/-> [body_block_end]
157                 //    |        ^                                         |
158                 // false link  |                                         |
159                 //    |        +-----------------------------------------+
160                 //    +-> [diverge_cleanup]
161                 // The false link is required to make sure borrowck considers unwinds through the
162                 // body, even when the exact code in the body cannot unwind
163
164                 let loop_block = this.cfg.start_new_block();
165                 let exit_block = this.cfg.start_new_block();
166
167                 // start the loop
168                 this.cfg.terminate(
169                     block,
170                     source_info,
171                     TerminatorKind::Goto { target: loop_block },
172                 );
173
174                 this.in_breakable_scope(
175                     Some(loop_block),
176                     exit_block,
177                     destination.clone(),
178                     move |this| {
179                         // conduct the test, if necessary
180                         let body_block;
181                         if let Some(cond_expr) = opt_cond_expr {
182                             let cond_expr = this.hir.mirror(cond_expr);
183                             let (true_block, false_block)
184                                 = this.test_bool(loop_block, cond_expr, source_info);
185                             body_block = true_block;
186
187                             // if the test is false, there's no `break` to assign `destination`, so
188                             // we have to do it
189                             this.cfg.push_assign_unit(false_block, source_info, destination);
190                             this.cfg.terminate(
191                                 false_block,
192                                 source_info,
193                                 TerminatorKind::Goto { target: exit_block },
194                             );
195                         } else {
196                             body_block = this.cfg.start_new_block();
197                             let diverge_cleanup = this.diverge_cleanup();
198                             this.cfg.terminate(
199                                 loop_block,
200                                 source_info,
201                                 TerminatorKind::FalseUnwind {
202                                     real_target: body_block,
203                                     unwind: Some(diverge_cleanup),
204                                 },
205                             )
206                         }
207
208                         // The “return” value of the loop body must always be an unit. We therefore
209                         // introduce a unit temporary as the destination for the loop body.
210                         let tmp = this.get_unit_temp();
211                         // Execute the body, branching back to the test.
212                         let body_block_end = unpack!(this.into(&tmp, body_block, body));
213                         this.cfg.terminate(
214                             body_block_end,
215                             source_info,
216                             TerminatorKind::Goto { target: loop_block },
217                         );
218                     },
219                 );
220                 exit_block.unit()
221             }
222             ExprKind::Call { ty, fun, args, from_hir_call } => {
223                 let intrinsic = match ty.sty {
224                     ty::FnDef(def_id, _) => {
225                         let f = ty.fn_sig(this.hir.tcx());
226                         if f.abi() == Abi::RustIntrinsic || f.abi() == Abi::PlatformIntrinsic {
227                             Some(this.hir.tcx().item_name(def_id).as_str())
228                         } else {
229                             None
230                         }
231                     }
232                     _ => None,
233                 };
234                 let intrinsic = intrinsic.as_ref().map(|s| &s[..]);
235                 let fun = unpack!(block = this.as_local_operand(block, fun));
236                 if intrinsic == Some("move_val_init") {
237                     // `move_val_init` has "magic" semantics - the second argument is
238                     // always evaluated "directly" into the first one.
239
240                     let mut args = args.into_iter();
241                     let ptr = args.next().expect("0 arguments to `move_val_init`");
242                     let val = args.next().expect("1 argument to `move_val_init`");
243                     assert!(args.next().is_none(), ">2 arguments to `move_val_init`");
244
245                     let ptr = this.hir.mirror(ptr);
246                     let ptr_ty = ptr.ty;
247                     // Create an *internal* temp for the pointer, so that unsafety
248                     // checking won't complain about the raw pointer assignment.
249                     let ptr_temp = this.local_decls.push(LocalDecl {
250                         mutability: Mutability::Mut,
251                         ty: ptr_ty,
252                         user_ty: UserTypeProjections::none(),
253                         name: None,
254                         source_info,
255                         visibility_scope: source_info.scope,
256                         internal: true,
257                         is_user_variable: None,
258                         is_block_tail: None,
259                     });
260                     let ptr_temp = Place::from(ptr_temp);
261                     let block = unpack!(this.into(&ptr_temp, block, ptr));
262                     this.into(&ptr_temp.deref(), block, val)
263                 } else {
264                     let args: Vec<_> = args
265                         .into_iter()
266                         .map(|arg| unpack!(block = this.as_local_operand(block, arg)))
267                         .collect();
268
269                     let success = this.cfg.start_new_block();
270                     let cleanup = this.diverge_cleanup();
271                     this.cfg.terminate(
272                         block,
273                         source_info,
274                         TerminatorKind::Call {
275                             func: fun,
276                             args,
277                             cleanup: Some(cleanup),
278                             // FIXME(varkor): replace this with an uninhabitedness-based check.
279                             // This requires getting access to the current module to call
280                             // `tcx.is_ty_uninhabited_from`, which is currently tricky to do.
281                             destination: if expr.ty.is_never() {
282                                 None
283                             } else {
284                                 Some((destination.clone(), success))
285                             },
286                             from_hir_call,
287                         },
288                     );
289                     success.unit()
290                 }
291             }
292             ExprKind::Use { source } => {
293                 this.into(destination, block, source)
294             }
295
296             // These cases don't actually need a destination
297             ExprKind::Assign { .. }
298             | ExprKind::AssignOp { .. }
299             | ExprKind::Continue { .. }
300             | ExprKind::Break { .. }
301             | ExprKind::InlineAsm { .. }
302             | ExprKind::Return { .. } => {
303                 unpack!(block = this.stmt_expr(block, expr, None));
304                 this.cfg.push_assign_unit(block, source_info, destination);
305                 block.unit()
306             }
307
308             // Avoid creating a temporary
309             ExprKind::VarRef { .. } |
310             ExprKind::SelfRef |
311             ExprKind::StaticRef { .. } |
312             ExprKind::PlaceTypeAscription { .. } |
313             ExprKind::ValueTypeAscription { .. } => {
314                 debug_assert!(Category::of(&expr.kind) == Some(Category::Place));
315
316                 let place = unpack!(block = this.as_place(block, expr));
317                 let rvalue = Rvalue::Use(this.consume_by_copy_or_move(place));
318                 this.cfg
319                     .push_assign(block, source_info, destination, rvalue);
320                 block.unit()
321             }
322             ExprKind::Index { .. } | ExprKind::Deref { .. } | ExprKind::Field { .. } => {
323                 debug_assert!(Category::of(&expr.kind) == Some(Category::Place));
324
325                 // Create a "fake" temporary variable so that we check that the
326                 // value is Sized. Usually, this is caught in type checking, but
327                 // in the case of box expr there is no such check.
328                 if let Place::Projection(..) = destination {
329                     this.local_decls
330                         .push(LocalDecl::new_temp(expr.ty, expr.span));
331                 }
332
333                 debug_assert!(Category::of(&expr.kind) == Some(Category::Place));
334
335                 let place = unpack!(block = this.as_place(block, expr));
336                 let rvalue = Rvalue::Use(this.consume_by_copy_or_move(place));
337                 this.cfg
338                     .push_assign(block, source_info, destination, rvalue);
339                 block.unit()
340             }
341
342             // these are the cases that are more naturally handled by some other mode
343             ExprKind::Unary { .. }
344             | ExprKind::Binary { .. }
345             | ExprKind::Box { .. }
346             | ExprKind::Cast { .. }
347             | ExprKind::Pointer { .. }
348             | ExprKind::Repeat { .. }
349             | ExprKind::Borrow { .. }
350             | ExprKind::Array { .. }
351             | ExprKind::Tuple { .. }
352             | ExprKind::Adt { .. }
353             | ExprKind::Closure { .. }
354             | ExprKind::Literal { .. }
355             | ExprKind::Yield { .. } => {
356                 debug_assert!(match Category::of(&expr.kind).unwrap() {
357                     // should be handled above
358                     Category::Rvalue(RvalueFunc::Into) => false,
359
360                     // must be handled above or else we get an
361                     // infinite loop in the builder; see
362                     // e.g., `ExprKind::VarRef` above
363                     Category::Place => false,
364
365                     _ => true,
366                 });
367
368                 let rvalue = unpack!(block = this.as_local_rvalue(block, expr));
369                 this.cfg.push_assign(block, source_info, destination, rvalue);
370                 block.unit()
371             }
372         };
373
374         if !expr_is_block_or_scope {
375             let popped = this.block_context.pop();
376             assert!(popped.is_some());
377         }
378
379         block_and
380     }
381 }