Skip to main content

rustdoc/clean/
auto_trait.rs

1use rustc_data_structures::fx::{FxIndexMap, FxIndexSet, IndexEntry};
2use rustc_data_structures::thin_vec::ThinVec;
3use rustc_hir as hir;
4use rustc_infer::infer::region_constraints::{ConstraintKind, RegionConstraintData};
5use rustc_middle::ty::{self, Region, Ty, fold_regions};
6use rustc_span::bug;
7use rustc_span::def_id::DefId;
8use rustc_span::symbol::{Symbol, kw};
9use rustc_trait_selection::traits::auto_trait::{self, RegionTarget};
10use tracing::{debug, instrument};
11
12use crate::clean::{
13    self, Lifetime, clean_clause, clean_generic_param_def, clean_middle_ty,
14    clean_trait_ref_with_constraints, clean_ty_generics_inner, simplify,
15};
16use crate::core::DocContext;
17
18#[instrument(level = "debug", skip(cx))]
19pub(crate) fn synthesize_auto_trait_impls<'tcx>(
20    cx: &mut DocContext<'tcx>,
21    item_def_id: DefId,
22) -> Vec<clean::Item> {
23    let tcx = cx.tcx;
24    let typing_env = ty::TypingEnv::non_body_analysis(tcx, item_def_id);
25    let ty = tcx.type_of(item_def_id).instantiate_identity().skip_norm_wip();
26
27    let finder = auto_trait::AutoTraitFinder::new(tcx);
28    let mut auto_trait_impls: Vec<_> = cx
29        .auto_traits
30        .clone()
31        .into_iter()
32        .filter_map(|trait_def_id| {
33            synthesize_auto_trait_impl(
34                cx,
35                ty,
36                trait_def_id,
37                typing_env,
38                item_def_id,
39                &finder,
40                DiscardPositiveImpls::No,
41            )
42        })
43        .collect();
44    // We are only interested in case the type *doesn't* implement the `Sized` trait.
45    if !ty.is_sized(tcx, typing_env)
46        && let Some(sized_trait_def_id) = tcx.lang_items().sized_trait()
47        && let Some(impl_item) = synthesize_auto_trait_impl(
48            cx,
49            ty,
50            sized_trait_def_id,
51            typing_env,
52            item_def_id,
53            &finder,
54            DiscardPositiveImpls::Yes,
55        )
56    {
57        auto_trait_impls.push(impl_item);
58    }
59    auto_trait_impls
60}
61
62#[instrument(level = "debug", skip(cx, finder))]
63fn synthesize_auto_trait_impl<'tcx>(
64    cx: &mut DocContext<'tcx>,
65    ty: Ty<'tcx>,
66    trait_def_id: DefId,
67    typing_env: ty::TypingEnv<'tcx>,
68    item_def_id: DefId,
69    finder: &auto_trait::AutoTraitFinder<'tcx>,
70    discard_positive_impls: DiscardPositiveImpls,
71) -> Option<clean::Item> {
72    let tcx = cx.tcx;
73    let trait_ref = ty::Binder::dummy(ty::TraitRef::new(tcx, trait_def_id, [ty]));
74    if !cx.synthetic_auto_trait_impls.insert((ty, trait_def_id)) {
75        debug!("already generated, aborting");
76        return None;
77    }
78
79    let result = finder.find_auto_trait_generics(ty, typing_env, trait_def_id, |info| {
80        clean_param_env(cx, item_def_id, info.full_user_env, info.region_data, info.vid_to_region)
81    });
82
83    let (generics, polarity) = match result {
84        auto_trait::AutoTraitResult::PositiveImpl(generics) => {
85            if let DiscardPositiveImpls::Yes = discard_positive_impls {
86                return None;
87            }
88
89            (generics, ty::ImplPolarity::Positive)
90        }
91        auto_trait::AutoTraitResult::NegativeImpl => {
92            // For negative impls, we use the generic params, but *not* the predicates,
93            // from the original type. Otherwise, the displayed impl appears to be a
94            // conditional negative impl, when it's really unconditional.
95            //
96            // For example, consider the struct Foo<T: Copy>(*mut T). Using
97            // the original predicates in our impl would cause us to generate
98            // `impl !Send for Foo<T: Copy>`, which makes it appear that Foo
99            // implements Send where T is not copy.
100            //
101            // Instead, we generate `impl !Send for Foo<T>`, which better
102            // expresses the fact that `Foo<T>` never implements `Send`,
103            // regardless of the choice of `T`.
104            let mut generics = clean_ty_generics_inner(
105                cx,
106                tcx.generics_of(item_def_id),
107                ty::GenericClauses::default(),
108            );
109            generics.where_predicates.clear();
110
111            (generics, ty::ImplPolarity::Negative)
112        }
113        auto_trait::AutoTraitResult::NoImpl => return None,
114        auto_trait::AutoTraitResult::ExplicitImpl => return None,
115    };
116
117    super::inline::record_extern_trait(cx, trait_def_id);
118
119    Some(clean::Item {
120        inner: Box::new(clean::ItemInner {
121            name: None,
122            attrs: Default::default(),
123            stability: None,
124            kind: clean::ImplItem(Box::new(clean::Impl {
125                safety: hir::Safety::Safe,
126                generics,
127                trait_: Some(clean_trait_ref_with_constraints(cx, trait_ref, ThinVec::new())),
128                for_: clean_middle_ty(ty::Binder::dummy(ty), cx, None, None),
129                items: Vec::new(),
130                polarity,
131                kind: clean::ImplKind::Auto,
132                is_deprecated: false,
133            })),
134            item_id: clean::ItemId::Auto { trait_: trait_def_id, for_: item_def_id },
135            cfg: None,
136            inline_stmt_id: None,
137        }),
138    })
139}
140
141#[derive(Debug)]
142enum DiscardPositiveImpls {
143    Yes,
144    No,
145}
146
147#[instrument(level = "debug", skip(cx, region_data, vid_to_region))]
148fn clean_param_env<'tcx>(
149    cx: &mut DocContext<'tcx>,
150    item_def_id: DefId,
151    param_env: ty::ParamEnv<'tcx>,
152    region_data: RegionConstraintData<'tcx>,
153    vid_to_region: FxIndexMap<ty::RegionVid, ty::Region<'tcx>>,
154) -> clean::Generics {
155    let tcx = cx.tcx;
156    let generics = tcx.generics_of(item_def_id);
157
158    let params: ThinVec<_> = generics
159        .own_params
160        .iter()
161        .inspect(|param| {
162            if cfg!(debug_assertions) {
163                debug_assert!(!param.is_anonymous_lifetime());
164                if let ty::GenericParamDefKind::Type { synthetic, .. } = param.kind {
165                    debug_assert!(!synthetic && param.name != kw::SelfUpper);
166                }
167            }
168        })
169        // We're basing the generics of the synthetic auto trait impl off of the generics of the
170        // implementing type. Its generic parameters may have defaults, don't copy them over:
171        // Generic parameter defaults are meaningless in impls.
172        .map(|param| clean_generic_param_def(param, clean::ParamDefaults::No, cx))
173        .collect();
174
175    // FIXME(#111101): Incorporate the explicit predicates of the item here...
176    let item_clauses: FxIndexSet<_> = tcx.param_env(item_def_id).caller_bounds().collect();
177    let where_predicates = cx.with_exact_param_env(param_env, |cx| {
178        param_env
179            .caller_bounds()
180            // FIXME: ...which hopefully allows us to simplify this:
181            .filter(|clause| {
182                !item_clauses.contains(clause)
183                    || clause.as_trait_clause().is_some_and(|clause| {
184                        tcx.lang_items().sized_trait() == Some(clause.def_id())
185                    })
186            })
187            .map(|clause| {
188                fold_regions(tcx, clause, |r, _| match r.kind() {
189                    // FIXME: Don't `unwrap_or`, I think we should panic if we encounter an infer var that
190                    // we can't map to a concrete region. However, `AutoTraitFinder` *does* leak those kinds
191                    // of `ReVar`s for some reason at the time of writing. See `rustdoc-ui/` tests.
192                    // This is in dire need of an investigation into `AutoTraitFinder`.
193                    ty::ReVar(vid) => vid_to_region.get(&vid).copied().unwrap_or(r),
194                    ty::ReEarlyParam(_) | ty::ReStatic | ty::ReBound(..) | ty::ReError(_) => r,
195                    // FIXME(#120606): `AutoTraitFinder` can actually leak placeholder regions which feels
196                    // incorrect. Needs investigation.
197                    ty::ReLateParam(_) | ty::RePlaceholder(_) | ty::ReErased => {
198                        bug!("unexpected region kind: {r:?}")
199                    }
200                })
201            })
202            .flat_map(|clause| clean_clause(clause, cx))
203            .chain(clean_region_outlives_constraints(&region_data, generics))
204            .collect()
205    });
206
207    let mut generics = clean::Generics { params, where_predicates };
208    simplify::sizedness_bounds(cx, &mut generics);
209    generics.where_predicates = simplify::where_clauses(cx.tcx, generics.where_predicates);
210    generics
211}
212
213/// Clean region outlives constraints to where-predicates.
214///
215/// This is essentially a simplified version of `lexical_region_resolve`.
216///
217/// However, here we determine what *needs to be* true in order for an impl to hold.
218/// `lexical_region_resolve`, along with much of the rest of the compiler, is concerned
219/// with determining if a given set up constraints / predicates *are* met, given some
220/// starting conditions like user-provided code.
221///
222/// For this reason, it's easier to perform the calculations we need on our own,
223/// rather than trying to make existing inference/solver code do what we want.
224fn clean_region_outlives_constraints<'tcx>(
225    regions: &RegionConstraintData<'tcx>,
226    generics: &'tcx ty::Generics,
227) -> ThinVec<clean::WherePredicate> {
228    // Our goal is to "flatten" the list of constraints by eliminating all intermediate
229    // `RegionVids` (region inference variables). At the end, all constraints should be
230    // between `Region`s. This gives us the information we need to create the where-predicates.
231    // This flattening is done in two parts.
232
233    let mut outlives_predicates = FxIndexMap::<_, Vec<_>>::default();
234    let mut map = FxIndexMap::<RegionTarget<'_>, auto_trait::RegionDeps<'_>>::default();
235
236    // (1)  We insert all of the constraints into a map.
237    // Each `RegionTarget` (a `RegionVid` or a `Region`) maps to its smaller and larger regions.
238    // Note that "larger" regions correspond to sub regions in the surface language.
239    // E.g., in `'a: 'b`, `'a` is the larger region.
240    for c in regions.constraints.iter().flat_map(|(c, _)| c.iter_outlives()) {
241        match c.kind {
242            ConstraintKind::VarSubVar => {
243                let sub_vid = c.sub.as_var();
244                let sup_vid = c.sup.as_var();
245                let deps1 = map.entry(RegionTarget::RegionVid(sub_vid)).or_default();
246                deps1.larger.insert(RegionTarget::RegionVid(sup_vid));
247
248                let deps2 = map.entry(RegionTarget::RegionVid(sup_vid)).or_default();
249                deps2.smaller.insert(RegionTarget::RegionVid(sub_vid));
250            }
251            ConstraintKind::RegSubVar => {
252                let sup_vid = c.sup.as_var();
253                let deps = map.entry(RegionTarget::RegionVid(sup_vid)).or_default();
254                deps.smaller.insert(RegionTarget::Region(c.sub));
255            }
256            ConstraintKind::VarSubReg => {
257                let sub_vid = c.sub.as_var();
258                let deps = map.entry(RegionTarget::RegionVid(sub_vid)).or_default();
259                deps.larger.insert(RegionTarget::Region(c.sup));
260            }
261            ConstraintKind::RegSubReg => {
262                // The constraint is already in the form that we want, so we're done with it
263                // The desired order is [larger, smaller], so flip them.
264                if early_bound_region_name(c.sub) != early_bound_region_name(c.sup) {
265                    outlives_predicates
266                        .entry(early_bound_region_name(c.sup).expect("no region_name found"))
267                        .or_default()
268                        .push(c.sub);
269                }
270            }
271            ConstraintKind::VarEqVar | ConstraintKind::VarEqReg | ConstraintKind::RegEqReg => {
272                unreachable!()
273            }
274        }
275    }
276
277    // (2)  Here, we "flatten" the map one element at a time. All of the elements' sub and super
278    // regions are connected to each other. For example, if we have a graph that looks like this:
279    //
280    //     (A, B) - C - (D, E)
281    //
282    // where (A, B) are sub regions, and (D,E) are super regions.
283    // Then, after deleting 'C', the graph will look like this:
284    //
285    //             ... - A - (D, E, ...)
286    //             ... - B - (D, E, ...)
287    //     (A, B, ...) - D - ...
288    //     (A, B, ...) - E - ...
289    //
290    // where '...' signifies the existing sub and super regions of an entry. When two adjacent
291    // `Region`s are encountered, we've computed a final constraint, and add it to our list.
292    // Since we make sure to never re-add deleted items, this process will always finish.
293    while !map.is_empty() {
294        let target = *map.keys().next().unwrap();
295        let deps = map.swap_remove(&target).unwrap();
296
297        for smaller in &deps.smaller {
298            for larger in &deps.larger {
299                match (smaller, larger) {
300                    (&RegionTarget::Region(smaller), &RegionTarget::Region(larger)) => {
301                        if early_bound_region_name(smaller) != early_bound_region_name(larger) {
302                            outlives_predicates
303                                .entry(
304                                    early_bound_region_name(larger).expect("no region name found"),
305                                )
306                                .or_default()
307                                .push(smaller)
308                        }
309                    }
310                    (&RegionTarget::RegionVid(_), &RegionTarget::Region(_)) => {
311                        if let IndexEntry::Occupied(v) = map.entry(*smaller) {
312                            let smaller_deps = v.into_mut();
313                            smaller_deps.larger.insert(*larger);
314                            smaller_deps.larger.swap_remove(&target);
315                        }
316                    }
317                    (&RegionTarget::Region(_), &RegionTarget::RegionVid(_)) => {
318                        if let IndexEntry::Occupied(v) = map.entry(*larger) {
319                            let deps = v.into_mut();
320                            deps.smaller.insert(*smaller);
321                            deps.smaller.swap_remove(&target);
322                        }
323                    }
324                    (&RegionTarget::RegionVid(_), &RegionTarget::RegionVid(_)) => {
325                        if let IndexEntry::Occupied(v) = map.entry(*smaller) {
326                            let smaller_deps = v.into_mut();
327                            smaller_deps.larger.insert(*larger);
328                            smaller_deps.larger.swap_remove(&target);
329                        }
330                        if let IndexEntry::Occupied(v) = map.entry(*larger) {
331                            let larger_deps = v.into_mut();
332                            larger_deps.smaller.insert(*smaller);
333                            larger_deps.smaller.swap_remove(&target);
334                        }
335                    }
336                }
337            }
338        }
339    }
340
341    let region_params: FxIndexSet<_> = generics
342        .own_params
343        .iter()
344        .filter_map(|param| match param.kind {
345            ty::GenericParamDefKind::Lifetime => Some(param.name),
346            _ => None,
347        })
348        .collect();
349
350    region_params
351        .iter()
352        .filter_map(|&name| {
353            let bounds: FxIndexSet<_> = outlives_predicates
354                .get(&name)?
355                .iter()
356                .map(|&region| {
357                    let lifetime = early_bound_region_name(region)
358                        .inspect(|name| assert!(region_params.contains(name)))
359                        .map(Lifetime)
360                        .unwrap_or(Lifetime::statik());
361                    clean::GenericBound::Outlives(lifetime)
362                })
363                .collect();
364            if bounds.is_empty() {
365                return None;
366            }
367            Some(clean::WherePredicate::RegionPredicate {
368                lifetime: Lifetime(name),
369                bounds: bounds.into_iter().collect(),
370            })
371        })
372        .collect()
373}
374
375fn early_bound_region_name(region: Region<'_>) -> Option<Symbol> {
376    match region.kind() {
377        ty::ReEarlyParam(r) => Some(r.name),
378        _ => None,
379    }
380}