rustc_trait_selection/error_reporting/infer/nice_region_error/
util.rs

1//! Helper functions corresponding to lifetime errors due to
2//! anonymous regions.
3
4use rustc_hir as hir;
5use rustc_hir::def_id::{DefId, LocalDefId};
6use rustc_middle::ty::{self, Binder, Region, Ty, TyCtxt, TypeFoldable, fold_regions};
7use rustc_span::Span;
8use tracing::instrument;
9
10use crate::error_reporting::infer::nice_region_error::NiceRegionError;
11
12/// Information about the anonymous region we are searching for.
13#[derive(Debug)]
14pub struct AnonymousParamInfo<'tcx> {
15    /// The parameter corresponding to the anonymous region.
16    pub param: &'tcx hir::Param<'tcx>,
17    /// The type corresponding to the anonymous region parameter.
18    pub param_ty: Ty<'tcx>,
19    /// The `ty::LateParamRegionKind` corresponding to the anonymous region.
20    pub kind: ty::LateParamRegionKind,
21    /// The `Span` of the parameter type.
22    pub param_ty_span: Span,
23    /// Signals that the argument is the first parameter in the declaration.
24    pub is_first: bool,
25}
26
27// This method walks the Type of the function body parameters using
28// `fold_regions()` function and returns the
29// &hir::Param of the function parameter corresponding to the anonymous
30// region and the Ty corresponding to the named region.
31// Currently only the case where the function declaration consists of
32// one named region and one anonymous region is handled.
33// Consider the example `fn foo<'a>(x: &'a i32, y: &i32) -> &'a i32`
34// Here, we would return the hir::Param for y, we return the type &'a
35// i32, which is the type of y but with the anonymous region replaced
36// with 'a, the corresponding bound region and is_first which is true if
37// the hir::Param is the first parameter in the function declaration.
38#[instrument(skip(tcx), level = "debug")]
39pub fn find_param_with_region<'tcx>(
40    tcx: TyCtxt<'tcx>,
41    generic_param_scope: LocalDefId,
42    anon_region: Region<'tcx>,
43    replace_region: Region<'tcx>,
44) -> Option<AnonymousParamInfo<'tcx>> {
45    let (id, kind) = match anon_region.kind() {
46        ty::ReLateParam(late_param) => (late_param.scope, late_param.kind),
47        ty::ReEarlyParam(ebr) => {
48            let region_def = tcx.generics_of(generic_param_scope).region_param(ebr, tcx).def_id;
49            (tcx.parent(region_def), ty::LateParamRegionKind::Named(region_def))
50        }
51        _ => return None, // not a free region
52    };
53
54    let def_id = id.as_local()?;
55
56    // FIXME: use def_kind
57    // Don't perform this on closures
58    match tcx.hir_node_by_def_id(generic_param_scope) {
59        hir::Node::Expr(&hir::Expr { kind: hir::ExprKind::Closure { .. }, .. }) => {
60            return None;
61        }
62        _ => {}
63    }
64
65    let body = tcx.hir_maybe_body_owned_by(def_id)?;
66
67    let owner_id = tcx.hir_body_owner(body.id());
68    let fn_decl = tcx.hir_fn_decl_by_hir_id(owner_id)?;
69    let poly_fn_sig = tcx.fn_sig(id).instantiate_identity();
70
71    let fn_sig = tcx.liberate_late_bound_regions(id, poly_fn_sig);
72    body.params
73        .iter()
74        .take(if fn_sig.c_variadic {
75            fn_sig.inputs().len()
76        } else {
77            assert_eq!(fn_sig.inputs().len(), body.params.len());
78            body.params.len()
79        })
80        .enumerate()
81        .find_map(|(index, param)| {
82            // May return None; sometimes the tables are not yet populated.
83            let ty = fn_sig.inputs()[index];
84            let mut found_anon_region = false;
85            let new_param_ty = fold_regions(tcx, ty, |r, _| {
86                if r == anon_region {
87                    found_anon_region = true;
88                    replace_region
89                } else {
90                    r
91                }
92            });
93            found_anon_region.then(|| {
94                let ty_hir_id = fn_decl.inputs[index].hir_id;
95                let param_ty_span = tcx.hir_span(ty_hir_id);
96                let is_first = index == 0;
97                AnonymousParamInfo { param, param_ty: new_param_ty, param_ty_span, kind, is_first }
98            })
99        })
100}
101
102impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
103    pub(super) fn find_param_with_region(
104        &self,
105        anon_region: Region<'tcx>,
106        replace_region: Region<'tcx>,
107    ) -> Option<AnonymousParamInfo<'tcx>> {
108        find_param_with_region(self.tcx(), self.generic_param_scope, anon_region, replace_region)
109    }
110
111    // Here, we check for the case where the anonymous region
112    // is in the return type as written by the user.
113    // FIXME(#42703) - Need to handle certain cases here.
114    pub(super) fn is_return_type_anon(
115        &self,
116        scope_def_id: LocalDefId,
117        region_def_id: DefId,
118        hir_sig: &hir::FnSig<'_>,
119    ) -> Option<Span> {
120        let fn_ty = self.tcx().type_of(scope_def_id).instantiate_identity();
121        if let ty::FnDef(_, _) = fn_ty.kind() {
122            let ret_ty = fn_ty.fn_sig(self.tcx()).output();
123            let span = hir_sig.decl.output.span();
124            let future_output = if hir_sig.header.is_async() {
125                ret_ty.map_bound(|ty| self.cx.get_impl_future_output_ty(ty)).transpose()
126            } else {
127                None
128            };
129            return match future_output {
130                Some(output) if self.includes_region(output, region_def_id) => Some(span),
131                None if self.includes_region(ret_ty, region_def_id) => Some(span),
132                _ => None,
133            };
134        }
135        None
136    }
137
138    fn includes_region(
139        &self,
140        ty: Binder<'tcx, impl TypeFoldable<TyCtxt<'tcx>>>,
141        region_def_id: DefId,
142    ) -> bool {
143        let late_bound_regions = self.tcx().collect_referenced_late_bound_regions(ty);
144        // We are only checking is any region meets the condition so order doesn't matter
145        #[allow(rustc::potential_query_instability)]
146        late_bound_regions.iter().any(|r| match *r {
147            ty::BoundRegionKind::Named(def_id) => def_id == region_def_id,
148            _ => false,
149        })
150    }
151
152    // Here we check for the case where anonymous region
153    // corresponds to self and if yes, we display E0312.
154    // FIXME(#42700) - Need to format self properly to
155    // enable E0621 for it.
156    pub(super) fn is_self_anon(&self, is_first: bool, scope_def_id: LocalDefId) -> bool {
157        is_first
158            && self
159                .tcx()
160                .opt_associated_item(scope_def_id.to_def_id())
161                .is_some_and(|i| i.is_method())
162    }
163}