]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_middle/src/ty/erase_regions.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / compiler / rustc_middle / src / ty / erase_regions.rs
CommitLineData
923072b8 1use crate::ty::fold::{TypeFoldable, TypeFolder, TypeSuperFoldable};
064997fb 2use crate::ty::visit::TypeVisitable;
9fa01778 3use crate::ty::{self, Ty, TyCtxt, TypeFlags};
abe05a73 4
f035d41b 5pub(super) fn provide(providers: &mut ty::query::Providers) {
dfeec247 6 *providers = ty::query::Providers { erase_regions_ty, ..*providers };
abe05a73
XL
7}
8
dc9dc135 9fn erase_regions_ty<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> {
0731742a 10 // N.B., use `super_fold_with` here. If we used `fold_with`, it
abe05a73
XL
11 // could invoke the `erase_regions_ty` query recursively.
12 ty.super_fold_with(&mut RegionEraserVisitor { tcx })
13}
14
dc9dc135 15impl<'tcx> TyCtxt<'tcx> {
abe05a73
XL
16 /// Returns an equivalent value with all free regions removed (note
17 /// that late-bound regions remain, because they are important for
18 /// subtyping, but they are anonymized and normalized as well)..
fc512014 19 pub fn erase_regions<T>(self, value: T) -> T
dfeec247
XL
20 where
21 T: TypeFoldable<'tcx>,
abe05a73 22 {
9fa01778 23 // If there's nothing to erase avoid performing the query at all
9c376795 24 if !value.has_type_flags(TypeFlags::HAS_LATE_BOUND | TypeFlags::HAS_FREE_REGIONS) {
fc512014 25 return value;
9fa01778 26 }
fc512014 27 debug!("erase_regions({:?})", value);
abe05a73 28 let value1 = value.fold_with(&mut RegionEraserVisitor { tcx: self });
fc512014 29 debug!("erase_regions = {:?}", value1);
abe05a73
XL
30 value1
31 }
32}
33
dc9dc135
XL
34struct RegionEraserVisitor<'tcx> {
35 tcx: TyCtxt<'tcx>,
abe05a73
XL
36}
37
a2a8927a 38impl<'tcx> TypeFolder<'tcx> for RegionEraserVisitor<'tcx> {
dc9dc135 39 fn tcx<'b>(&'b self) -> TyCtxt<'tcx> {
abe05a73
XL
40 self.tcx
41 }
42
43 fn fold_ty(&mut self, ty: Ty<'tcx>) -> Ty<'tcx> {
ba9703b0 44 if ty.needs_infer() { ty.super_fold_with(self) } else { self.tcx.erase_regions_ty(ty) }
abe05a73
XL
45 }
46
cdc7bbd5 47 fn fold_binder<T>(&mut self, t: ty::Binder<'tcx, T>) -> ty::Binder<'tcx, T>
dfeec247
XL
48 where
49 T: TypeFoldable<'tcx>,
abe05a73 50 {
064997fb 51 let u = self.tcx.anonymize_bound_vars(t);
abe05a73
XL
52 u.super_fold_with(self)
53 }
54
55 fn fold_region(&mut self, r: ty::Region<'tcx>) -> ty::Region<'tcx> {
56 // because late-bound regions affect subtyping, we can't
57 // erase the bound/free distinction, but we can replace
58 // all free regions with 'erased.
59 //
60 // Note that we *CAN* replace early-bound regions -- the
61 // type system never "sees" those, they get substituted
94b46f34 62 // away. In codegen, they will always be erased to 'erased
abe05a73
XL
63 // whenever a substitution occurs.
64 match *r {
65 ty::ReLateBound(..) => r,
dfeec247 66 _ => self.tcx.lifetimes.re_erased,
abe05a73
XL
67 }
68 }
69}