]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/build/misc.rs
Convert Place's projection to a boxed slice
[rust.git] / src / librustc_mir / build / misc.rs
1 //! Miscellaneous builder routines that are not specific to building any particular
2 //! kind of thing.
3
4 use crate::build::Builder;
5
6 use rustc::ty::{self, Ty};
7
8 use rustc::mir::*;
9 use syntax_pos::{Span, DUMMY_SP};
10
11 impl<'a, 'tcx> Builder<'a, 'tcx> {
12     /// Adds a new temporary value of type `ty` storing the result of
13     /// evaluating `expr`.
14     ///
15     /// N.B., **No cleanup is scheduled for this temporary.** You should
16     /// call `schedule_drop` once the temporary is initialized.
17     pub fn temp(&mut self, ty: Ty<'tcx>, span: Span) -> Place<'tcx> {
18         let temp = self.local_decls.push(LocalDecl::new_temp(ty, span));
19         let place = Place::from(temp);
20         debug!("temp: created temp {:?} with type {:?}",
21                place, self.local_decls[temp].ty);
22         place
23     }
24
25     /// Convenience function for creating a literal operand, one
26     /// without any user type annotation.
27     pub fn literal_operand(&mut self,
28                            span: Span,
29                            literal: &'tcx ty::Const<'tcx>)
30                            -> Operand<'tcx> {
31         let constant = box Constant {
32             span,
33             user_ty: None,
34             literal,
35         };
36         Operand::Constant(constant)
37     }
38
39     pub fn unit_rvalue(&mut self) -> Rvalue<'tcx> {
40         Rvalue::Aggregate(box AggregateKind::Tuple, vec![])
41     }
42
43     // Returns a zero literal operand for the appropriate type, works for
44     // bool, char and integers.
45     pub fn zero_literal(&mut self, span: Span, ty: Ty<'tcx>) -> Operand<'tcx> {
46         let literal = ty::Const::from_bits(self.hir.tcx(), 0, ty::ParamEnv::empty().and(ty));
47
48         self.literal_operand(span, literal)
49     }
50
51     pub fn push_usize(&mut self,
52                       block: BasicBlock,
53                       source_info: SourceInfo,
54                       value: u64)
55                       -> Place<'tcx> {
56         let usize_ty = self.hir.usize_ty();
57         let temp = self.temp(usize_ty, source_info.span);
58         self.cfg.push_assign_constant(
59             block, source_info, &temp,
60             Constant {
61                 span: source_info.span,
62                 user_ty: None,
63                 literal: self.hir.usize_literal(value),
64             });
65         temp
66     }
67
68     pub fn consume_by_copy_or_move(&self, place: Place<'tcx>) -> Operand<'tcx> {
69         let tcx = self.hir.tcx();
70         let ty = place.ty(&self.local_decls, tcx).ty;
71         if !self.hir.type_is_copy_modulo_regions(ty, DUMMY_SP) {
72             Operand::Move(place)
73         } else {
74             Operand::Copy(place)
75         }
76     }
77 }