]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/src/build/matches/util.rs
Auto merge of #100968 - cjgillot:mir-upvar-vec, r=wesleywiser
[rust.git] / compiler / rustc_mir_build / src / build / matches / util.rs
1 use crate::build::expr::as_place::PlaceBuilder;
2 use crate::build::matches::MatchPair;
3 use crate::build::Builder;
4 use rustc_middle::mir::*;
5 use rustc_middle::thir::*;
6 use rustc_middle::ty;
7 use smallvec::SmallVec;
8 use std::convert::TryInto;
9
10 impl<'a, 'tcx> Builder<'a, 'tcx> {
11     pub(crate) fn field_match_pairs<'pat>(
12         &mut self,
13         place: PlaceBuilder<'tcx>,
14         subpatterns: &'pat [FieldPat<'tcx>],
15     ) -> Vec<MatchPair<'pat, 'tcx>> {
16         subpatterns
17             .iter()
18             .map(|fieldpat| {
19                 let place = place.clone().field(fieldpat.field, fieldpat.pattern.ty);
20                 MatchPair::new(place, &fieldpat.pattern)
21             })
22             .collect()
23     }
24
25     pub(crate) fn prefix_slice_suffix<'pat>(
26         &mut self,
27         match_pairs: &mut SmallVec<[MatchPair<'pat, 'tcx>; 1]>,
28         place: &PlaceBuilder<'tcx>,
29         prefix: &'pat [Box<Pat<'tcx>>],
30         opt_slice: &'pat Option<Box<Pat<'tcx>>>,
31         suffix: &'pat [Box<Pat<'tcx>>],
32     ) {
33         let tcx = self.tcx;
34         let (min_length, exact_size) = if let Ok(place_resolved) =
35             place.clone().try_upvars_resolved(tcx, &self.upvars)
36         {
37             match place_resolved.into_place(tcx, &self.upvars).ty(&self.local_decls, tcx).ty.kind()
38             {
39                 ty::Array(_, length) => (length.eval_usize(tcx, self.param_env), true),
40                 _ => ((prefix.len() + suffix.len()).try_into().unwrap(), false),
41             }
42         } else {
43             ((prefix.len() + suffix.len()).try_into().unwrap(), false)
44         };
45
46         match_pairs.extend(prefix.iter().enumerate().map(|(idx, subpattern)| {
47             let elem =
48                 ProjectionElem::ConstantIndex { offset: idx as u64, min_length, from_end: false };
49             let place = place.clone().project(elem);
50             MatchPair::new(place, subpattern)
51         }));
52
53         if let Some(subslice_pat) = opt_slice {
54             let suffix_len = suffix.len() as u64;
55             let subslice = place.clone().project(ProjectionElem::Subslice {
56                 from: prefix.len() as u64,
57                 to: if exact_size { min_length - suffix_len } else { suffix_len },
58                 from_end: !exact_size,
59             });
60             match_pairs.push(MatchPair::new(subslice, subslice_pat));
61         }
62
63         match_pairs.extend(suffix.iter().rev().enumerate().map(|(idx, subpattern)| {
64             let end_offset = (idx + 1) as u64;
65             let elem = ProjectionElem::ConstantIndex {
66                 offset: if exact_size { min_length - end_offset } else { end_offset },
67                 min_length,
68                 from_end: !exact_size,
69             };
70             let place = place.clone().project(elem);
71             MatchPair::new(place, subpattern)
72         }));
73     }
74
75     /// Creates a false edge to `imaginary_target` and a real edge to
76     /// real_target. If `imaginary_target` is none, or is the same as the real
77     /// target, a Goto is generated instead to simplify the generated MIR.
78     pub(crate) fn false_edges(
79         &mut self,
80         from_block: BasicBlock,
81         real_target: BasicBlock,
82         imaginary_target: Option<BasicBlock>,
83         source_info: SourceInfo,
84     ) {
85         match imaginary_target {
86             Some(target) if target != real_target => {
87                 self.cfg.terminate(
88                     from_block,
89                     source_info,
90                     TerminatorKind::FalseEdge { real_target, imaginary_target: target },
91                 );
92             }
93             _ => self.cfg.goto(from_block, source_info, real_target),
94         }
95     }
96 }
97
98 impl<'pat, 'tcx> MatchPair<'pat, 'tcx> {
99     pub(crate) fn new(
100         place: PlaceBuilder<'tcx>,
101         pattern: &'pat Pat<'tcx>,
102     ) -> MatchPair<'pat, 'tcx> {
103         MatchPair { place, pattern }
104     }
105 }