]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/clean/mod.rs
Rollup merge of #89221 - aDotInTheVoid:macro-error-1, r=estebank
[rust.git] / src / librustdoc / clean / mod.rs
1 //! This module contains the "cleaned" pieces of the AST, and the functions
2 //! that clean them.
3
4 mod auto_trait;
5 mod blanket_impl;
6 crate mod cfg;
7 crate mod inline;
8 mod simplify;
9 crate mod types;
10 crate mod utils;
11
12 use rustc_ast as ast;
13 use rustc_attr as attr;
14 use rustc_const_eval::const_eval::{is_const_fn, is_unstable_const_fn};
15 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
16 use rustc_hir as hir;
17 use rustc_hir::def::{CtorKind, DefKind, Res};
18 use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX, LOCAL_CRATE};
19 use rustc_index::vec::{Idx, IndexVec};
20 use rustc_infer::infer::region_constraints::{Constraint, RegionConstraintData};
21 use rustc_middle::middle::resolve_lifetime as rl;
22 use rustc_middle::ty::fold::TypeFolder;
23 use rustc_middle::ty::subst::{InternalSubsts, Subst};
24 use rustc_middle::ty::{self, AdtKind, DefIdTree, Lift, Ty, TyCtxt};
25 use rustc_middle::{bug, span_bug};
26 use rustc_span::hygiene::{AstPass, MacroKind};
27 use rustc_span::symbol::{kw, sym, Ident, Symbol};
28 use rustc_span::{self, ExpnKind};
29 use rustc_target::spec::abi::Abi;
30 use rustc_typeck::check::intrinsic::intrinsic_operation_unsafety;
31 use rustc_typeck::hir_ty_to_ty;
32
33 use std::assert_matches::assert_matches;
34 use std::collections::hash_map::Entry;
35 use std::default::Default;
36 use std::hash::Hash;
37 use std::rc::Rc;
38 use std::{mem, vec};
39
40 use crate::core::{self, DocContext, ImplTraitParam};
41 use crate::doctree;
42 use crate::formats::item_type::ItemType;
43
44 use utils::*;
45
46 crate use utils::{get_auto_trait_and_blanket_impls, krate, register_res};
47
48 crate use self::types::FnRetTy::*;
49 crate use self::types::ItemKind::*;
50 crate use self::types::SelfTy::*;
51 crate use self::types::Type::*;
52 crate use self::types::Visibility::{Inherited, Public};
53 crate use self::types::*;
54
55 crate trait Clean<T> {
56     fn clean(&self, cx: &mut DocContext<'_>) -> T;
57 }
58
59 impl<T: Clean<U>, U> Clean<Vec<U>> for [T] {
60     fn clean(&self, cx: &mut DocContext<'_>) -> Vec<U> {
61         self.iter().map(|x| x.clean(cx)).collect()
62     }
63 }
64
65 impl<T: Clean<U>, U, V: Idx> Clean<IndexVec<V, U>> for IndexVec<V, T> {
66     fn clean(&self, cx: &mut DocContext<'_>) -> IndexVec<V, U> {
67         self.iter().map(|x| x.clean(cx)).collect()
68     }
69 }
70
71 impl<T: Clean<U>, U> Clean<U> for &T {
72     fn clean(&self, cx: &mut DocContext<'_>) -> U {
73         (**self).clean(cx)
74     }
75 }
76
77 impl<T: Clean<U>, U> Clean<U> for Rc<T> {
78     fn clean(&self, cx: &mut DocContext<'_>) -> U {
79         (**self).clean(cx)
80     }
81 }
82
83 impl<T: Clean<U>, U> Clean<Option<U>> for Option<T> {
84     fn clean(&self, cx: &mut DocContext<'_>) -> Option<U> {
85         self.as_ref().map(|v| v.clean(cx))
86     }
87 }
88
89 impl Clean<Item> for doctree::Module<'_> {
90     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
91         let mut items: Vec<Item> = vec![];
92         items.extend(self.foreigns.iter().map(|x| x.clean(cx)));
93         items.extend(self.mods.iter().map(|x| x.clean(cx)));
94         items.extend(self.items.iter().map(|x| x.clean(cx)).flatten());
95
96         // determine if we should display the inner contents or
97         // the outer `mod` item for the source code.
98
99         let span = Span::new({
100             let where_outer = self.where_outer(cx.tcx);
101             let sm = cx.sess().source_map();
102             let outer = sm.lookup_char_pos(where_outer.lo());
103             let inner = sm.lookup_char_pos(self.where_inner.lo());
104             if outer.file.start_pos == inner.file.start_pos {
105                 // mod foo { ... }
106                 where_outer
107             } else {
108                 // mod foo; (and a separate SourceFile for the contents)
109                 self.where_inner
110             }
111         });
112
113         Item::from_hir_id_and_parts(
114             self.id,
115             Some(self.name),
116             ModuleItem(Module { items, span }),
117             cx,
118         )
119     }
120 }
121
122 impl Clean<Attributes> for [ast::Attribute] {
123     fn clean(&self, _cx: &mut DocContext<'_>) -> Attributes {
124         Attributes::from_ast(self, None)
125     }
126 }
127
128 impl Clean<GenericBound> for hir::GenericBound<'_> {
129     fn clean(&self, cx: &mut DocContext<'_>) -> GenericBound {
130         match *self {
131             hir::GenericBound::Outlives(lt) => GenericBound::Outlives(lt.clean(cx)),
132             hir::GenericBound::LangItemTrait(lang_item, span, _, generic_args) => {
133                 let def_id = cx.tcx.require_lang_item(lang_item, Some(span));
134
135                 let trait_ref = ty::TraitRef::identity(cx.tcx, def_id).skip_binder();
136
137                 let generic_args = generic_args.clean(cx);
138                 let bindings = match generic_args {
139                     GenericArgs::AngleBracketed { bindings, .. } => bindings,
140                     _ => bug!("clean: parenthesized `GenericBound::LangItemTrait`"),
141                 };
142
143                 GenericBound::TraitBound(
144                     PolyTrait { trait_: (trait_ref, &*bindings).clean(cx), generic_params: vec![] },
145                     hir::TraitBoundModifier::None,
146                 )
147             }
148             hir::GenericBound::Trait(ref t, modifier) => {
149                 GenericBound::TraitBound(t.clean(cx), modifier)
150             }
151         }
152     }
153 }
154
155 impl Clean<Type> for (ty::TraitRef<'_>, &[TypeBinding]) {
156     fn clean(&self, cx: &mut DocContext<'_>) -> Type {
157         let (trait_ref, bounds) = *self;
158         let kind = cx.tcx.def_kind(trait_ref.def_id).into();
159         if !matches!(kind, ItemType::Trait | ItemType::TraitAlias) {
160             span_bug!(
161                 cx.tcx.def_span(trait_ref.def_id),
162                 "`TraitRef` had unexpected kind {:?}",
163                 kind
164             );
165         }
166         inline::record_extern_fqn(cx, trait_ref.def_id, kind);
167         let path = external_path(cx, trait_ref.def_id, true, bounds.to_vec(), trait_ref.substs);
168
169         debug!("ty::TraitRef\n  subst: {:?}\n", trait_ref.substs);
170
171         ResolvedPath { path, did: trait_ref.def_id, is_generic: false }
172     }
173 }
174
175 impl<'tcx> Clean<GenericBound> for ty::TraitRef<'tcx> {
176     fn clean(&self, cx: &mut DocContext<'_>) -> GenericBound {
177         GenericBound::TraitBound(
178             PolyTrait { trait_: (*self, &[][..]).clean(cx), generic_params: vec![] },
179             hir::TraitBoundModifier::None,
180         )
181     }
182 }
183
184 impl Clean<GenericBound> for (ty::PolyTraitRef<'_>, &[TypeBinding]) {
185     fn clean(&self, cx: &mut DocContext<'_>) -> GenericBound {
186         let (poly_trait_ref, bounds) = *self;
187         let poly_trait_ref = poly_trait_ref.lift_to_tcx(cx.tcx).unwrap();
188
189         // collect any late bound regions
190         let late_bound_regions: Vec<_> = cx
191             .tcx
192             .collect_referenced_late_bound_regions(&poly_trait_ref)
193             .into_iter()
194             .filter_map(|br| match br {
195                 ty::BrNamed(_, name) => Some(GenericParamDef {
196                     name,
197                     kind: GenericParamDefKind::Lifetime { outlives: vec![] },
198                 }),
199                 _ => None,
200             })
201             .collect();
202
203         GenericBound::TraitBound(
204             PolyTrait {
205                 trait_: (poly_trait_ref.skip_binder(), bounds).clean(cx),
206                 generic_params: late_bound_regions,
207             },
208             hir::TraitBoundModifier::None,
209         )
210     }
211 }
212
213 impl<'tcx> Clean<GenericBound> for ty::PolyTraitRef<'tcx> {
214     fn clean(&self, cx: &mut DocContext<'_>) -> GenericBound {
215         (*self, &[][..]).clean(cx)
216     }
217 }
218
219 impl Clean<Lifetime> for hir::Lifetime {
220     fn clean(&self, cx: &mut DocContext<'_>) -> Lifetime {
221         let def = cx.tcx.named_region(self.hir_id);
222         match def {
223             Some(
224                 rl::Region::EarlyBound(_, node_id, _)
225                 | rl::Region::LateBound(_, _, node_id, _)
226                 | rl::Region::Free(_, node_id),
227             ) => {
228                 if let Some(lt) = cx.lt_substs.get(&node_id).cloned() {
229                     return lt;
230                 }
231             }
232             _ => {}
233         }
234         Lifetime(self.name.ident().name)
235     }
236 }
237
238 impl Clean<Constant> for hir::ConstArg {
239     fn clean(&self, cx: &mut DocContext<'_>) -> Constant {
240         Constant {
241             type_: cx
242                 .tcx
243                 .type_of(cx.tcx.hir().body_owner_def_id(self.value.body).to_def_id())
244                 .clean(cx),
245             kind: ConstantKind::Anonymous { body: self.value.body },
246         }
247     }
248 }
249
250 impl Clean<Option<Lifetime>> for ty::RegionKind {
251     fn clean(&self, _cx: &mut DocContext<'_>) -> Option<Lifetime> {
252         match *self {
253             ty::ReStatic => Some(Lifetime::statik()),
254             ty::ReLateBound(_, ty::BoundRegion { kind: ty::BrNamed(_, name), .. }) => {
255                 Some(Lifetime(name))
256             }
257             ty::ReEarlyBound(ref data) => Some(Lifetime(data.name)),
258
259             ty::ReLateBound(..)
260             | ty::ReFree(..)
261             | ty::ReVar(..)
262             | ty::RePlaceholder(..)
263             | ty::ReEmpty(_)
264             | ty::ReErased => {
265                 debug!("cannot clean region {:?}", self);
266                 None
267             }
268         }
269     }
270 }
271
272 impl Clean<WherePredicate> for hir::WherePredicate<'_> {
273     fn clean(&self, cx: &mut DocContext<'_>) -> WherePredicate {
274         match *self {
275             hir::WherePredicate::BoundPredicate(ref wbp) => {
276                 let bound_params = wbp
277                     .bound_generic_params
278                     .into_iter()
279                     .map(|param| {
280                         // Higher-ranked params must be lifetimes.
281                         // Higher-ranked lifetimes can't have bounds.
282                         assert_matches!(
283                             param,
284                             hir::GenericParam {
285                                 kind: hir::GenericParamKind::Lifetime { .. },
286                                 bounds: [],
287                                 ..
288                             }
289                         );
290                         Lifetime(param.name.ident().name)
291                     })
292                     .collect();
293                 WherePredicate::BoundPredicate {
294                     ty: wbp.bounded_ty.clean(cx),
295                     bounds: wbp.bounds.clean(cx),
296                     bound_params,
297                 }
298             }
299
300             hir::WherePredicate::RegionPredicate(ref wrp) => WherePredicate::RegionPredicate {
301                 lifetime: wrp.lifetime.clean(cx),
302                 bounds: wrp.bounds.clean(cx),
303             },
304
305             hir::WherePredicate::EqPredicate(ref wrp) => {
306                 WherePredicate::EqPredicate { lhs: wrp.lhs_ty.clean(cx), rhs: wrp.rhs_ty.clean(cx) }
307             }
308         }
309     }
310 }
311
312 impl<'a> Clean<Option<WherePredicate>> for ty::Predicate<'a> {
313     fn clean(&self, cx: &mut DocContext<'_>) -> Option<WherePredicate> {
314         let bound_predicate = self.kind();
315         match bound_predicate.skip_binder() {
316             ty::PredicateKind::Trait(pred) => Some(bound_predicate.rebind(pred).clean(cx)),
317             ty::PredicateKind::RegionOutlives(pred) => pred.clean(cx),
318             ty::PredicateKind::TypeOutlives(pred) => pred.clean(cx),
319             ty::PredicateKind::Projection(pred) => Some(pred.clean(cx)),
320             ty::PredicateKind::ConstEvaluatable(..) => None,
321
322             ty::PredicateKind::Subtype(..)
323             | ty::PredicateKind::Coerce(..)
324             | ty::PredicateKind::WellFormed(..)
325             | ty::PredicateKind::ObjectSafe(..)
326             | ty::PredicateKind::ClosureKind(..)
327             | ty::PredicateKind::ConstEquate(..)
328             | ty::PredicateKind::TypeWellFormedFromEnv(..) => panic!("not user writable"),
329         }
330     }
331 }
332
333 impl<'a> Clean<WherePredicate> for ty::PolyTraitPredicate<'a> {
334     fn clean(&self, cx: &mut DocContext<'_>) -> WherePredicate {
335         let poly_trait_ref = self.map_bound(|pred| pred.trait_ref);
336         WherePredicate::BoundPredicate {
337             ty: poly_trait_ref.skip_binder().self_ty().clean(cx),
338             bounds: vec![poly_trait_ref.clean(cx)],
339             bound_params: Vec::new(),
340         }
341     }
342 }
343
344 impl<'tcx> Clean<Option<WherePredicate>>
345     for ty::OutlivesPredicate<ty::Region<'tcx>, ty::Region<'tcx>>
346 {
347     fn clean(&self, cx: &mut DocContext<'_>) -> Option<WherePredicate> {
348         let ty::OutlivesPredicate(a, b) = self;
349
350         if let (ty::ReEmpty(_), ty::ReEmpty(_)) = (a, b) {
351             return None;
352         }
353
354         Some(WherePredicate::RegionPredicate {
355             lifetime: a.clean(cx).expect("failed to clean lifetime"),
356             bounds: vec![GenericBound::Outlives(b.clean(cx).expect("failed to clean bounds"))],
357         })
358     }
359 }
360
361 impl<'tcx> Clean<Option<WherePredicate>> for ty::OutlivesPredicate<Ty<'tcx>, ty::Region<'tcx>> {
362     fn clean(&self, cx: &mut DocContext<'_>) -> Option<WherePredicate> {
363         let ty::OutlivesPredicate(ty, lt) = self;
364
365         if let ty::ReEmpty(_) = lt {
366             return None;
367         }
368
369         Some(WherePredicate::BoundPredicate {
370             ty: ty.clean(cx),
371             bounds: vec![GenericBound::Outlives(lt.clean(cx).expect("failed to clean lifetimes"))],
372             bound_params: Vec::new(),
373         })
374     }
375 }
376
377 impl<'tcx> Clean<WherePredicate> for ty::ProjectionPredicate<'tcx> {
378     fn clean(&self, cx: &mut DocContext<'_>) -> WherePredicate {
379         let ty::ProjectionPredicate { projection_ty, ty } = self;
380         WherePredicate::EqPredicate { lhs: projection_ty.clean(cx), rhs: ty.clean(cx) }
381     }
382 }
383
384 impl<'tcx> Clean<Type> for ty::ProjectionTy<'tcx> {
385     fn clean(&self, cx: &mut DocContext<'_>) -> Type {
386         let lifted = self.lift_to_tcx(cx.tcx).unwrap();
387         let trait_ = match lifted.trait_ref(cx.tcx).clean(cx) {
388             GenericBound::TraitBound(t, _) => t.trait_,
389             GenericBound::Outlives(_) => panic!("cleaning a trait got a lifetime"),
390         };
391         let self_type = self.self_ty().clean(cx);
392         Type::QPath {
393             name: cx.tcx.associated_item(self.item_def_id).ident.name,
394             self_def_id: self_type.def_id(),
395             self_type: box self_type,
396             trait_: box trait_,
397         }
398     }
399 }
400
401 impl Clean<GenericParamDef> for ty::GenericParamDef {
402     fn clean(&self, cx: &mut DocContext<'_>) -> GenericParamDef {
403         let (name, kind) = match self.kind {
404             ty::GenericParamDefKind::Lifetime => {
405                 (self.name, GenericParamDefKind::Lifetime { outlives: vec![] })
406             }
407             ty::GenericParamDefKind::Type { has_default, synthetic, .. } => {
408                 let default = if has_default {
409                     let mut default = cx.tcx.type_of(self.def_id).clean(cx);
410
411                     // We need to reassign the `self_def_id`, if there's a parent (which is the
412                     // `Self` type), so we can properly render `<Self as X>` casts, because the
413                     // information about which type `Self` is, is only present here, but not in
414                     // the cleaning process of the type itself. To resolve this and have the
415                     // `self_def_id` set, we override it here.
416                     // See https://github.com/rust-lang/rust/issues/85454
417                     if let QPath { ref mut self_def_id, .. } = default {
418                         *self_def_id = cx.tcx.parent(self.def_id);
419                     }
420
421                     Some(default)
422                 } else {
423                     None
424                 };
425                 (
426                     self.name,
427                     GenericParamDefKind::Type {
428                         did: self.def_id,
429                         bounds: vec![], // These are filled in from the where-clauses.
430                         default,
431                         synthetic,
432                     },
433                 )
434             }
435             ty::GenericParamDefKind::Const { has_default, .. } => (
436                 self.name,
437                 GenericParamDefKind::Const {
438                     did: self.def_id,
439                     ty: cx.tcx.type_of(self.def_id).clean(cx),
440                     default: match has_default {
441                         true => Some(cx.tcx.const_param_default(self.def_id).to_string()),
442                         false => None,
443                     },
444                 },
445             ),
446         };
447
448         GenericParamDef { name, kind }
449     }
450 }
451
452 impl Clean<GenericParamDef> for hir::GenericParam<'_> {
453     fn clean(&self, cx: &mut DocContext<'_>) -> GenericParamDef {
454         let (name, kind) = match self.kind {
455             hir::GenericParamKind::Lifetime { .. } => {
456                 let outlives = self
457                     .bounds
458                     .iter()
459                     .map(|bound| match bound {
460                         hir::GenericBound::Outlives(lt) => lt.clean(cx),
461                         _ => panic!(),
462                     })
463                     .collect();
464                 (self.name.ident().name, GenericParamDefKind::Lifetime { outlives })
465             }
466             hir::GenericParamKind::Type { ref default, synthetic } => (
467                 self.name.ident().name,
468                 GenericParamDefKind::Type {
469                     did: cx.tcx.hir().local_def_id(self.hir_id).to_def_id(),
470                     bounds: self.bounds.clean(cx),
471                     default: default.clean(cx),
472                     synthetic,
473                 },
474             ),
475             hir::GenericParamKind::Const { ref ty, default } => (
476                 self.name.ident().name,
477                 GenericParamDefKind::Const {
478                     did: cx.tcx.hir().local_def_id(self.hir_id).to_def_id(),
479                     ty: ty.clean(cx),
480                     default: default.map(|ct| {
481                         let def_id = cx.tcx.hir().local_def_id(ct.hir_id);
482                         ty::Const::from_anon_const(cx.tcx, def_id).to_string()
483                     }),
484                 },
485             ),
486         };
487
488         GenericParamDef { name, kind }
489     }
490 }
491
492 impl Clean<Generics> for hir::Generics<'_> {
493     fn clean(&self, cx: &mut DocContext<'_>) -> Generics {
494         // Synthetic type-parameters are inserted after normal ones.
495         // In order for normal parameters to be able to refer to synthetic ones,
496         // scans them first.
497         fn is_impl_trait(param: &hir::GenericParam<'_>) -> bool {
498             match param.kind {
499                 hir::GenericParamKind::Type { synthetic, .. } => {
500                     synthetic == Some(hir::SyntheticTyParamKind::ImplTrait)
501                 }
502                 _ => false,
503             }
504         }
505         /// This can happen for `async fn`, e.g. `async fn f<'_>(&'_ self)`.
506         ///
507         /// See [`lifetime_to_generic_param`] in [`rustc_ast_lowering`] for more information.
508         ///
509         /// [`lifetime_to_generic_param`]: rustc_ast_lowering::LoweringContext::lifetime_to_generic_param
510         fn is_elided_lifetime(param: &hir::GenericParam<'_>) -> bool {
511             matches!(
512                 param.kind,
513                 hir::GenericParamKind::Lifetime { kind: hir::LifetimeParamKind::Elided }
514             )
515         }
516
517         let impl_trait_params = self
518             .params
519             .iter()
520             .filter(|param| is_impl_trait(param))
521             .map(|param| {
522                 let param: GenericParamDef = param.clean(cx);
523                 match param.kind {
524                     GenericParamDefKind::Lifetime { .. } => unreachable!(),
525                     GenericParamDefKind::Type { did, ref bounds, .. } => {
526                         cx.impl_trait_bounds.insert(did.into(), bounds.clone());
527                     }
528                     GenericParamDefKind::Const { .. } => unreachable!(),
529                 }
530                 param
531             })
532             .collect::<Vec<_>>();
533
534         let mut params = Vec::with_capacity(self.params.len());
535         for p in self.params.iter().filter(|p| !is_impl_trait(p) && !is_elided_lifetime(p)) {
536             let p = p.clean(cx);
537             params.push(p);
538         }
539         params.extend(impl_trait_params);
540
541         let mut generics =
542             Generics { params, where_predicates: self.where_clause.predicates.clean(cx) };
543
544         // Some duplicates are generated for ?Sized bounds between type params and where
545         // predicates. The point in here is to move the bounds definitions from type params
546         // to where predicates when such cases occur.
547         for where_pred in &mut generics.where_predicates {
548             match *where_pred {
549                 WherePredicate::BoundPredicate {
550                     ty: Generic(ref name), ref mut bounds, ..
551                 } => {
552                     if bounds.is_empty() {
553                         for param in &mut generics.params {
554                             match param.kind {
555                                 GenericParamDefKind::Lifetime { .. } => {}
556                                 GenericParamDefKind::Type { bounds: ref mut ty_bounds, .. } => {
557                                     if &param.name == name {
558                                         mem::swap(bounds, ty_bounds);
559                                         break;
560                                     }
561                                 }
562                                 GenericParamDefKind::Const { .. } => {}
563                             }
564                         }
565                     }
566                 }
567                 _ => continue,
568             }
569         }
570         generics
571     }
572 }
573
574 impl<'a, 'tcx> Clean<Generics> for (&'a ty::Generics, ty::GenericPredicates<'tcx>) {
575     fn clean(&self, cx: &mut DocContext<'_>) -> Generics {
576         use self::WherePredicate as WP;
577         use std::collections::BTreeMap;
578
579         let (gens, preds) = *self;
580
581         // Don't populate `cx.impl_trait_bounds` before `clean`ning `where` clauses,
582         // since `Clean for ty::Predicate` would consume them.
583         let mut impl_trait = BTreeMap::<ImplTraitParam, Vec<GenericBound>>::default();
584
585         // Bounds in the type_params and lifetimes fields are repeated in the
586         // predicates field (see rustc_typeck::collect::ty_generics), so remove
587         // them.
588         let stripped_params = gens
589             .params
590             .iter()
591             .filter_map(|param| match param.kind {
592                 ty::GenericParamDefKind::Lifetime => Some(param.clean(cx)),
593                 ty::GenericParamDefKind::Type { synthetic, .. } => {
594                     if param.name == kw::SelfUpper {
595                         assert_eq!(param.index, 0);
596                         return None;
597                     }
598                     if synthetic == Some(hir::SyntheticTyParamKind::ImplTrait) {
599                         impl_trait.insert(param.index.into(), vec![]);
600                         return None;
601                     }
602                     Some(param.clean(cx))
603                 }
604                 ty::GenericParamDefKind::Const { .. } => Some(param.clean(cx)),
605             })
606             .collect::<Vec<GenericParamDef>>();
607
608         // param index -> [(DefId of trait, associated type name, type)]
609         let mut impl_trait_proj = FxHashMap::<u32, Vec<(DefId, Symbol, Ty<'tcx>)>>::default();
610
611         let where_predicates = preds
612             .predicates
613             .iter()
614             .flat_map(|(p, _)| {
615                 let mut projection = None;
616                 let param_idx = (|| {
617                     let bound_p = p.kind();
618                     match bound_p.skip_binder() {
619                         ty::PredicateKind::Trait(pred) => {
620                             if let ty::Param(param) = pred.self_ty().kind() {
621                                 return Some(param.index);
622                             }
623                         }
624                         ty::PredicateKind::TypeOutlives(ty::OutlivesPredicate(ty, _reg)) => {
625                             if let ty::Param(param) = ty.kind() {
626                                 return Some(param.index);
627                             }
628                         }
629                         ty::PredicateKind::Projection(p) => {
630                             if let ty::Param(param) = p.projection_ty.self_ty().kind() {
631                                 projection = Some(bound_p.rebind(p));
632                                 return Some(param.index);
633                             }
634                         }
635                         _ => (),
636                     }
637
638                     None
639                 })();
640
641                 if let Some(param_idx) = param_idx {
642                     if let Some(b) = impl_trait.get_mut(&param_idx.into()) {
643                         let p = p.clean(cx)?;
644
645                         b.extend(
646                             p.get_bounds()
647                                 .into_iter()
648                                 .flatten()
649                                 .cloned()
650                                 .filter(|b| !b.is_sized_bound(cx)),
651                         );
652
653                         let proj = projection
654                             .map(|p| (p.skip_binder().projection_ty.clean(cx), p.skip_binder().ty));
655                         if let Some(((_, trait_did, name), rhs)) =
656                             proj.as_ref().and_then(|(lhs, rhs)| Some((lhs.projection()?, rhs)))
657                         {
658                             impl_trait_proj
659                                 .entry(param_idx)
660                                 .or_default()
661                                 .push((trait_did, name, rhs));
662                         }
663
664                         return None;
665                     }
666                 }
667
668                 Some(p)
669             })
670             .collect::<Vec<_>>();
671
672         for (param, mut bounds) in impl_trait {
673             // Move trait bounds to the front.
674             bounds.sort_by_key(|b| !matches!(b, GenericBound::TraitBound(..)));
675
676             if let crate::core::ImplTraitParam::ParamIndex(idx) = param {
677                 if let Some(proj) = impl_trait_proj.remove(&idx) {
678                     for (trait_did, name, rhs) in proj {
679                         let rhs = rhs.clean(cx);
680                         simplify::merge_bounds(cx, &mut bounds, trait_did, name, &rhs);
681                     }
682                 }
683             } else {
684                 unreachable!();
685             }
686
687             cx.impl_trait_bounds.insert(param, bounds);
688         }
689
690         // Now that `cx.impl_trait_bounds` is populated, we can process
691         // remaining predicates which could contain `impl Trait`.
692         let mut where_predicates =
693             where_predicates.into_iter().flat_map(|p| p.clean(cx)).collect::<Vec<_>>();
694
695         // Type parameters have a Sized bound by default unless removed with
696         // ?Sized. Scan through the predicates and mark any type parameter with
697         // a Sized bound, removing the bounds as we find them.
698         //
699         // Note that associated types also have a sized bound by default, but we
700         // don't actually know the set of associated types right here so that's
701         // handled in cleaning associated types
702         let mut sized_params = FxHashSet::default();
703         where_predicates.retain(|pred| match *pred {
704             WP::BoundPredicate { ty: Generic(ref g), ref bounds, .. } => {
705                 if bounds.iter().any(|b| b.is_sized_bound(cx)) {
706                     sized_params.insert(*g);
707                     false
708                 } else {
709                     true
710                 }
711             }
712             _ => true,
713         });
714
715         // Run through the type parameters again and insert a ?Sized
716         // unbound for any we didn't find to be Sized.
717         for tp in &stripped_params {
718             if matches!(tp.kind, types::GenericParamDefKind::Type { .. })
719                 && !sized_params.contains(&tp.name)
720             {
721                 where_predicates.push(WP::BoundPredicate {
722                     ty: Type::Generic(tp.name),
723                     bounds: vec![GenericBound::maybe_sized(cx)],
724                     bound_params: Vec::new(),
725                 })
726             }
727         }
728
729         // It would be nice to collect all of the bounds on a type and recombine
730         // them if possible, to avoid e.g., `where T: Foo, T: Bar, T: Sized, T: 'a`
731         // and instead see `where T: Foo + Bar + Sized + 'a`
732
733         Generics {
734             params: stripped_params,
735             where_predicates: simplify::where_clauses(cx, where_predicates),
736         }
737     }
738 }
739
740 fn clean_fn_or_proc_macro(
741     item: &hir::Item<'_>,
742     sig: &'a hir::FnSig<'a>,
743     generics: &'a hir::Generics<'a>,
744     body_id: hir::BodyId,
745     name: &mut Symbol,
746     cx: &mut DocContext<'_>,
747 ) -> ItemKind {
748     let attrs = cx.tcx.hir().attrs(item.hir_id());
749     let macro_kind = attrs.iter().find_map(|a| {
750         if a.has_name(sym::proc_macro) {
751             Some(MacroKind::Bang)
752         } else if a.has_name(sym::proc_macro_derive) {
753             Some(MacroKind::Derive)
754         } else if a.has_name(sym::proc_macro_attribute) {
755             Some(MacroKind::Attr)
756         } else {
757             None
758         }
759     });
760     match macro_kind {
761         Some(kind) => {
762             if kind == MacroKind::Derive {
763                 *name = attrs
764                     .lists(sym::proc_macro_derive)
765                     .find_map(|mi| mi.ident())
766                     .expect("proc-macro derives require a name")
767                     .name;
768             }
769
770             let mut helpers = Vec::new();
771             for mi in attrs.lists(sym::proc_macro_derive) {
772                 if !mi.has_name(sym::attributes) {
773                     continue;
774                 }
775
776                 if let Some(list) = mi.meta_item_list() {
777                     for inner_mi in list {
778                         if let Some(ident) = inner_mi.ident() {
779                             helpers.push(ident.name);
780                         }
781                     }
782                 }
783             }
784             ProcMacroItem(ProcMacro { kind, helpers })
785         }
786         None => {
787             let mut func = (sig, generics, body_id).clean(cx);
788             let def_id = item.def_id.to_def_id();
789             func.header.constness =
790                 if is_const_fn(cx.tcx, def_id) && is_unstable_const_fn(cx.tcx, def_id).is_none() {
791                     hir::Constness::Const
792                 } else {
793                     hir::Constness::NotConst
794                 };
795             FunctionItem(func)
796         }
797     }
798 }
799
800 impl<'a> Clean<Function> for (&'a hir::FnSig<'a>, &'a hir::Generics<'a>, hir::BodyId) {
801     fn clean(&self, cx: &mut DocContext<'_>) -> Function {
802         let (generics, decl) =
803             enter_impl_trait(cx, |cx| (self.1.clean(cx), (&*self.0.decl, self.2).clean(cx)));
804         Function { decl, generics, header: self.0.header }
805     }
806 }
807
808 impl<'a> Clean<Arguments> for (&'a [hir::Ty<'a>], &'a [Ident]) {
809     fn clean(&self, cx: &mut DocContext<'_>) -> Arguments {
810         Arguments {
811             values: self
812                 .0
813                 .iter()
814                 .enumerate()
815                 .map(|(i, ty)| {
816                     let mut name = self.1.get(i).map_or(kw::Empty, |ident| ident.name);
817                     if name.is_empty() {
818                         name = kw::Underscore;
819                     }
820                     Argument { name, type_: ty.clean(cx) }
821                 })
822                 .collect(),
823         }
824     }
825 }
826
827 impl<'a> Clean<Arguments> for (&'a [hir::Ty<'a>], hir::BodyId) {
828     fn clean(&self, cx: &mut DocContext<'_>) -> Arguments {
829         let body = cx.tcx.hir().body(self.1);
830
831         Arguments {
832             values: self
833                 .0
834                 .iter()
835                 .enumerate()
836                 .map(|(i, ty)| Argument {
837                     name: name_from_pat(&body.params[i].pat),
838                     type_: ty.clean(cx),
839                 })
840                 .collect(),
841         }
842     }
843 }
844
845 impl<'a, A: Copy> Clean<FnDecl> for (&'a hir::FnDecl<'a>, A)
846 where
847     (&'a [hir::Ty<'a>], A): Clean<Arguments>,
848 {
849     fn clean(&self, cx: &mut DocContext<'_>) -> FnDecl {
850         FnDecl {
851             inputs: (self.0.inputs, self.1).clean(cx),
852             output: self.0.output.clean(cx),
853             c_variadic: self.0.c_variadic,
854         }
855     }
856 }
857
858 impl<'tcx> Clean<FnDecl> for (DefId, ty::PolyFnSig<'tcx>) {
859     fn clean(&self, cx: &mut DocContext<'_>) -> FnDecl {
860         let (did, sig) = *self;
861         let mut names = if did.is_local() { &[] } else { cx.tcx.fn_arg_names(did) }.iter();
862
863         FnDecl {
864             output: Return(sig.skip_binder().output().clean(cx)),
865             c_variadic: sig.skip_binder().c_variadic,
866             inputs: Arguments {
867                 values: sig
868                     .skip_binder()
869                     .inputs()
870                     .iter()
871                     .map(|t| Argument {
872                         type_: t.clean(cx),
873                         name: names.next().map_or(kw::Empty, |i| i.name),
874                     })
875                     .collect(),
876             },
877         }
878     }
879 }
880
881 impl Clean<FnRetTy> for hir::FnRetTy<'_> {
882     fn clean(&self, cx: &mut DocContext<'_>) -> FnRetTy {
883         match *self {
884             Self::Return(ref typ) => Return(typ.clean(cx)),
885             Self::DefaultReturn(..) => DefaultReturn,
886         }
887     }
888 }
889
890 impl Clean<bool> for hir::IsAuto {
891     fn clean(&self, _: &mut DocContext<'_>) -> bool {
892         match *self {
893             hir::IsAuto::Yes => true,
894             hir::IsAuto::No => false,
895         }
896     }
897 }
898
899 impl Clean<Type> for hir::TraitRef<'_> {
900     fn clean(&self, cx: &mut DocContext<'_>) -> Type {
901         let path = self.path.clean(cx);
902         resolve_type(cx, path)
903     }
904 }
905
906 impl Clean<PolyTrait> for hir::PolyTraitRef<'_> {
907     fn clean(&self, cx: &mut DocContext<'_>) -> PolyTrait {
908         PolyTrait {
909             trait_: self.trait_ref.clean(cx),
910             generic_params: self.bound_generic_params.clean(cx),
911         }
912     }
913 }
914
915 impl Clean<Item> for hir::TraitItem<'_> {
916     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
917         let local_did = self.def_id.to_def_id();
918         cx.with_param_env(local_did, |cx| {
919             let inner = match self.kind {
920                 hir::TraitItemKind::Const(ref ty, default) => {
921                     AssocConstItem(ty.clean(cx), default.map(|e| print_const_expr(cx.tcx, e)))
922                 }
923                 hir::TraitItemKind::Fn(ref sig, hir::TraitFn::Provided(body)) => {
924                     let mut m = (sig, &self.generics, body).clean(cx);
925                     if m.header.constness == hir::Constness::Const
926                         && is_unstable_const_fn(cx.tcx, local_did).is_some()
927                     {
928                         m.header.constness = hir::Constness::NotConst;
929                     }
930                     MethodItem(m, None)
931                 }
932                 hir::TraitItemKind::Fn(ref sig, hir::TraitFn::Required(ref names)) => {
933                     let (generics, decl) = enter_impl_trait(cx, |cx| {
934                         (self.generics.clean(cx), (&*sig.decl, &names[..]).clean(cx))
935                     });
936                     let mut t = Function { header: sig.header, decl, generics };
937                     if t.header.constness == hir::Constness::Const
938                         && is_unstable_const_fn(cx.tcx, local_did).is_some()
939                     {
940                         t.header.constness = hir::Constness::NotConst;
941                     }
942                     TyMethodItem(t)
943                 }
944                 hir::TraitItemKind::Type(ref bounds, ref default) => {
945                     AssocTypeItem(bounds.clean(cx), default.clean(cx))
946                 }
947             };
948             let what_rustc_thinks =
949                 Item::from_def_id_and_parts(local_did, Some(self.ident.name), inner, cx);
950             // Trait items always inherit the trait's visibility -- we don't want to show `pub`.
951             Item { visibility: Inherited, ..what_rustc_thinks }
952         })
953     }
954 }
955
956 impl Clean<Item> for hir::ImplItem<'_> {
957     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
958         let local_did = self.def_id.to_def_id();
959         cx.with_param_env(local_did, |cx| {
960             let inner = match self.kind {
961                 hir::ImplItemKind::Const(ref ty, expr) => {
962                     AssocConstItem(ty.clean(cx), Some(print_const_expr(cx.tcx, expr)))
963                 }
964                 hir::ImplItemKind::Fn(ref sig, body) => {
965                     let mut m = (sig, &self.generics, body).clean(cx);
966                     if m.header.constness == hir::Constness::Const
967                         && is_unstable_const_fn(cx.tcx, local_did).is_some()
968                     {
969                         m.header.constness = hir::Constness::NotConst;
970                     }
971                     MethodItem(m, Some(self.defaultness))
972                 }
973                 hir::ImplItemKind::TyAlias(ref hir_ty) => {
974                     let type_ = hir_ty.clean(cx);
975                     let item_type = hir_ty_to_ty(cx.tcx, hir_ty).clean(cx);
976                     TypedefItem(
977                         Typedef {
978                             type_,
979                             generics: Generics::default(),
980                             item_type: Some(item_type),
981                         },
982                         true,
983                     )
984                 }
985             };
986
987             let what_rustc_thinks =
988                 Item::from_def_id_and_parts(local_did, Some(self.ident.name), inner, cx);
989             let parent_item = cx.tcx.hir().expect_item(cx.tcx.hir().get_parent_item(self.hir_id()));
990             if let hir::ItemKind::Impl(impl_) = &parent_item.kind {
991                 if impl_.of_trait.is_some() {
992                     // Trait impl items always inherit the impl's visibility --
993                     // we don't want to show `pub`.
994                     Item { visibility: Inherited, ..what_rustc_thinks }
995                 } else {
996                     what_rustc_thinks
997                 }
998             } else {
999                 panic!("found impl item with non-impl parent {:?}", parent_item);
1000             }
1001         })
1002     }
1003 }
1004
1005 impl Clean<Item> for ty::AssocItem {
1006     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
1007         let tcx = cx.tcx;
1008         let kind = match self.kind {
1009             ty::AssocKind::Const => {
1010                 let ty = tcx.type_of(self.def_id);
1011                 let default = if self.defaultness.has_value() {
1012                     Some(inline::print_inlined_const(tcx, self.def_id))
1013                 } else {
1014                     None
1015                 };
1016                 AssocConstItem(ty.clean(cx), default)
1017             }
1018             ty::AssocKind::Fn => {
1019                 let generics =
1020                     (tcx.generics_of(self.def_id), tcx.explicit_predicates_of(self.def_id))
1021                         .clean(cx);
1022                 let sig = tcx.fn_sig(self.def_id);
1023                 let mut decl = (self.def_id, sig).clean(cx);
1024
1025                 if self.fn_has_self_parameter {
1026                     let self_ty = match self.container {
1027                         ty::ImplContainer(def_id) => tcx.type_of(def_id),
1028                         ty::TraitContainer(_) => tcx.types.self_param,
1029                     };
1030                     let self_arg_ty = sig.input(0).skip_binder();
1031                     if self_arg_ty == self_ty {
1032                         decl.inputs.values[0].type_ = Generic(kw::SelfUpper);
1033                     } else if let ty::Ref(_, ty, _) = *self_arg_ty.kind() {
1034                         if ty == self_ty {
1035                             match decl.inputs.values[0].type_ {
1036                                 BorrowedRef { ref mut type_, .. } => {
1037                                     **type_ = Generic(kw::SelfUpper)
1038                                 }
1039                                 _ => unreachable!(),
1040                             }
1041                         }
1042                     }
1043                 }
1044
1045                 let provided = match self.container {
1046                     ty::ImplContainer(_) => true,
1047                     ty::TraitContainer(_) => self.defaultness.has_value(),
1048                 };
1049                 if provided {
1050                     let constness = if tcx.is_const_fn_raw(self.def_id) {
1051                         hir::Constness::Const
1052                     } else {
1053                         hir::Constness::NotConst
1054                     };
1055                     let asyncness = tcx.asyncness(self.def_id);
1056                     let defaultness = match self.container {
1057                         ty::ImplContainer(_) => Some(self.defaultness),
1058                         ty::TraitContainer(_) => None,
1059                     };
1060                     MethodItem(
1061                         Function {
1062                             generics,
1063                             decl,
1064                             header: hir::FnHeader {
1065                                 unsafety: sig.unsafety(),
1066                                 abi: sig.abi(),
1067                                 constness,
1068                                 asyncness,
1069                             },
1070                         },
1071                         defaultness,
1072                     )
1073                 } else {
1074                     TyMethodItem(Function {
1075                         generics,
1076                         decl,
1077                         header: hir::FnHeader {
1078                             unsafety: sig.unsafety(),
1079                             abi: sig.abi(),
1080                             constness: hir::Constness::NotConst,
1081                             asyncness: hir::IsAsync::NotAsync,
1082                         },
1083                     })
1084                 }
1085             }
1086             ty::AssocKind::Type => {
1087                 let my_name = self.ident.name;
1088
1089                 if let ty::TraitContainer(_) = self.container {
1090                     let bounds = tcx.explicit_item_bounds(self.def_id);
1091                     let predicates = ty::GenericPredicates { parent: None, predicates: bounds };
1092                     let generics = (tcx.generics_of(self.def_id), predicates).clean(cx);
1093                     let mut bounds = generics
1094                         .where_predicates
1095                         .iter()
1096                         .filter_map(|pred| {
1097                             let (name, self_type, trait_, bounds) = match *pred {
1098                                 WherePredicate::BoundPredicate {
1099                                     ty: QPath { ref name, ref self_type, ref trait_, .. },
1100                                     ref bounds,
1101                                     ..
1102                                 } => (name, self_type, trait_, bounds),
1103                                 _ => return None,
1104                             };
1105                             if *name != my_name {
1106                                 return None;
1107                             }
1108                             match **trait_ {
1109                                 ResolvedPath { did, .. } if did == self.container.id() => {}
1110                                 _ => return None,
1111                             }
1112                             match **self_type {
1113                                 Generic(ref s) if *s == kw::SelfUpper => {}
1114                                 _ => return None,
1115                             }
1116                             Some(bounds)
1117                         })
1118                         .flat_map(|i| i.iter().cloned())
1119                         .collect::<Vec<_>>();
1120                     // Our Sized/?Sized bound didn't get handled when creating the generics
1121                     // because we didn't actually get our whole set of bounds until just now
1122                     // (some of them may have come from the trait). If we do have a sized
1123                     // bound, we remove it, and if we don't then we add the `?Sized` bound
1124                     // at the end.
1125                     match bounds.iter().position(|b| b.is_sized_bound(cx)) {
1126                         Some(i) => {
1127                             bounds.remove(i);
1128                         }
1129                         None => bounds.push(GenericBound::maybe_sized(cx)),
1130                     }
1131
1132                     let ty = if self.defaultness.has_value() {
1133                         Some(tcx.type_of(self.def_id))
1134                     } else {
1135                         None
1136                     };
1137
1138                     AssocTypeItem(bounds, ty.clean(cx))
1139                 } else {
1140                     // FIXME: when could this happen? Associated items in inherent impls?
1141                     let type_ = tcx.type_of(self.def_id).clean(cx);
1142                     TypedefItem(
1143                         Typedef {
1144                             type_,
1145                             generics: Generics { params: Vec::new(), where_predicates: Vec::new() },
1146                             item_type: None,
1147                         },
1148                         true,
1149                     )
1150                 }
1151             }
1152         };
1153
1154         Item::from_def_id_and_parts(self.def_id, Some(self.ident.name), kind, cx)
1155     }
1156 }
1157
1158 fn clean_qpath(hir_ty: &hir::Ty<'_>, cx: &mut DocContext<'_>) -> Type {
1159     use rustc_hir::GenericParamCount;
1160     let hir::Ty { hir_id: _, span, ref kind } = *hir_ty;
1161     let qpath = match kind {
1162         hir::TyKind::Path(qpath) => qpath,
1163         _ => unreachable!(),
1164     };
1165
1166     match qpath {
1167         hir::QPath::Resolved(None, ref path) => {
1168             if let Res::Def(DefKind::TyParam, did) = path.res {
1169                 if let Some(new_ty) = cx.ty_substs.get(&did).cloned() {
1170                     return new_ty;
1171                 }
1172                 if let Some(bounds) = cx.impl_trait_bounds.remove(&did.into()) {
1173                     return ImplTrait(bounds);
1174                 }
1175             }
1176
1177             let mut alias = None;
1178             if let Res::Def(DefKind::TyAlias, def_id) = path.res {
1179                 // Substitute private type aliases
1180                 if let Some(def_id) = def_id.as_local() {
1181                     let hir_id = cx.tcx.hir().local_def_id_to_hir_id(def_id);
1182                     if !cx.cache.access_levels.is_exported(def_id.to_def_id()) {
1183                         alias = Some(&cx.tcx.hir().expect_item(hir_id).kind);
1184                     }
1185                 }
1186             };
1187
1188             if let Some(&hir::ItemKind::TyAlias(ref ty, ref generics)) = alias {
1189                 let provided_params = &path.segments.last().expect("segments were empty");
1190                 let mut ty_substs = FxHashMap::default();
1191                 let mut lt_substs = FxHashMap::default();
1192                 let mut ct_substs = FxHashMap::default();
1193                 let generic_args = provided_params.args();
1194                 {
1195                     let mut indices: GenericParamCount = Default::default();
1196                     for param in generics.params.iter() {
1197                         match param.kind {
1198                             hir::GenericParamKind::Lifetime { .. } => {
1199                                 let mut j = 0;
1200                                 let lifetime = generic_args.args.iter().find_map(|arg| match arg {
1201                                     hir::GenericArg::Lifetime(lt) => {
1202                                         if indices.lifetimes == j {
1203                                             return Some(lt);
1204                                         }
1205                                         j += 1;
1206                                         None
1207                                     }
1208                                     _ => None,
1209                                 });
1210                                 if let Some(lt) = lifetime.cloned() {
1211                                     let lt_def_id = cx.tcx.hir().local_def_id(param.hir_id);
1212                                     let cleaned = if !lt.is_elided() {
1213                                         lt.clean(cx)
1214                                     } else {
1215                                         self::types::Lifetime::elided()
1216                                     };
1217                                     lt_substs.insert(lt_def_id.to_def_id(), cleaned);
1218                                 }
1219                                 indices.lifetimes += 1;
1220                             }
1221                             hir::GenericParamKind::Type { ref default, .. } => {
1222                                 let ty_param_def_id = cx.tcx.hir().local_def_id(param.hir_id);
1223                                 let mut j = 0;
1224                                 let type_ = generic_args.args.iter().find_map(|arg| match arg {
1225                                     hir::GenericArg::Type(ty) => {
1226                                         if indices.types == j {
1227                                             return Some(ty);
1228                                         }
1229                                         j += 1;
1230                                         None
1231                                     }
1232                                     _ => None,
1233                                 });
1234                                 if let Some(ty) = type_ {
1235                                     ty_substs.insert(ty_param_def_id.to_def_id(), ty.clean(cx));
1236                                 } else if let Some(default) = *default {
1237                                     ty_substs
1238                                         .insert(ty_param_def_id.to_def_id(), default.clean(cx));
1239                                 }
1240                                 indices.types += 1;
1241                             }
1242                             hir::GenericParamKind::Const { .. } => {
1243                                 let const_param_def_id = cx.tcx.hir().local_def_id(param.hir_id);
1244                                 let mut j = 0;
1245                                 let const_ = generic_args.args.iter().find_map(|arg| match arg {
1246                                     hir::GenericArg::Const(ct) => {
1247                                         if indices.consts == j {
1248                                             return Some(ct);
1249                                         }
1250                                         j += 1;
1251                                         None
1252                                     }
1253                                     _ => None,
1254                                 });
1255                                 if let Some(ct) = const_ {
1256                                     ct_substs.insert(const_param_def_id.to_def_id(), ct.clean(cx));
1257                                 }
1258                                 // FIXME(const_generics_defaults)
1259                                 indices.consts += 1;
1260                             }
1261                         }
1262                     }
1263                 }
1264                 return cx.enter_alias(ty_substs, lt_substs, ct_substs, |cx| ty.clean(cx));
1265             }
1266             let path = path.clean(cx);
1267             resolve_type(cx, path)
1268         }
1269         hir::QPath::Resolved(Some(ref qself), ref p) => {
1270             // Try to normalize `<X as Y>::T` to a type
1271             let ty = hir_ty_to_ty(cx.tcx, hir_ty);
1272             if let Some(normalized_value) = normalize(cx, ty) {
1273                 return normalized_value.clean(cx);
1274             }
1275
1276             let segments = if p.is_global() { &p.segments[1..] } else { &p.segments };
1277             let trait_segments = &segments[..segments.len() - 1];
1278             let trait_def = cx.tcx.associated_item(p.res.def_id()).container.id();
1279             let trait_path = self::Path {
1280                 global: p.is_global(),
1281                 res: Res::Def(DefKind::Trait, trait_def),
1282                 segments: trait_segments.clean(cx),
1283             };
1284             Type::QPath {
1285                 name: p.segments.last().expect("segments were empty").ident.name,
1286                 self_def_id: Some(DefId::local(qself.hir_id.owner.local_def_index)),
1287                 self_type: box qself.clean(cx),
1288                 trait_: box resolve_type(cx, trait_path),
1289             }
1290         }
1291         hir::QPath::TypeRelative(ref qself, ref segment) => {
1292             let ty = hir_ty_to_ty(cx.tcx, hir_ty);
1293             let res = match ty.kind() {
1294                 ty::Projection(proj) => Res::Def(DefKind::Trait, proj.trait_ref(cx.tcx).def_id),
1295                 // Rustdoc handles `ty::Error`s by turning them into `Type::Infer`s.
1296                 ty::Error(_) => return Type::Infer,
1297                 _ => bug!("clean: expected associated type, found `{:?}`", ty),
1298             };
1299             let trait_path = hir::Path { span, res, segments: &[] }.clean(cx);
1300             Type::QPath {
1301                 name: segment.ident.name,
1302                 self_def_id: res.opt_def_id(),
1303                 self_type: box qself.clean(cx),
1304                 trait_: box resolve_type(cx, trait_path),
1305             }
1306         }
1307         hir::QPath::LangItem(..) => bug!("clean: requiring documentation of lang item"),
1308     }
1309 }
1310
1311 impl Clean<Type> for hir::Ty<'_> {
1312     fn clean(&self, cx: &mut DocContext<'_>) -> Type {
1313         use rustc_hir::*;
1314
1315         match self.kind {
1316             TyKind::Never => Never,
1317             TyKind::Ptr(ref m) => RawPointer(m.mutbl, box m.ty.clean(cx)),
1318             TyKind::Rptr(ref l, ref m) => {
1319                 // There are two times a `Fresh` lifetime can be created:
1320                 // 1. For `&'_ x`, written by the user. This corresponds to `lower_lifetime` in `rustc_ast_lowering`.
1321                 // 2. For `&x` as a parameter to an `async fn`. This corresponds to `elided_ref_lifetime in `rustc_ast_lowering`.
1322                 //    See #59286 for more information.
1323                 // Ideally we would only hide the `'_` for case 2., but I don't know a way to distinguish it.
1324                 // Turning `fn f(&'_ self)` into `fn f(&self)` isn't the worst thing in the world, though;
1325                 // there's no case where it could cause the function to fail to compile.
1326                 let elided =
1327                     l.is_elided() || matches!(l.name, LifetimeName::Param(ParamName::Fresh(_)));
1328                 let lifetime = if elided { None } else { Some(l.clean(cx)) };
1329                 BorrowedRef { lifetime, mutability: m.mutbl, type_: box m.ty.clean(cx) }
1330             }
1331             TyKind::Slice(ref ty) => Slice(box ty.clean(cx)),
1332             TyKind::Array(ref ty, ref length) => {
1333                 let def_id = cx.tcx.hir().local_def_id(length.hir_id);
1334                 // NOTE(min_const_generics): We can't use `const_eval_poly` for constants
1335                 // as we currently do not supply the parent generics to anonymous constants
1336                 // but do allow `ConstKind::Param`.
1337                 //
1338                 // `const_eval_poly` tries to to first substitute generic parameters which
1339                 // results in an ICE while manually constructing the constant and using `eval`
1340                 // does nothing for `ConstKind::Param`.
1341                 let ct = ty::Const::from_anon_const(cx.tcx, def_id);
1342                 let param_env = cx.tcx.param_env(def_id);
1343                 let length = print_const(cx, ct.eval(cx.tcx, param_env));
1344                 Array(box ty.clean(cx), length)
1345             }
1346             TyKind::Tup(ref tys) => Tuple(tys.clean(cx)),
1347             TyKind::OpaqueDef(item_id, _) => {
1348                 let item = cx.tcx.hir().item(item_id);
1349                 if let hir::ItemKind::OpaqueTy(ref ty) = item.kind {
1350                     ImplTrait(ty.bounds.clean(cx))
1351                 } else {
1352                     unreachable!()
1353                 }
1354             }
1355             TyKind::Path(_) => clean_qpath(&self, cx),
1356             TyKind::TraitObject(ref bounds, ref lifetime, _) => {
1357                 let bounds = bounds.iter().map(|bound| bound.clean(cx)).collect();
1358                 let lifetime = if !lifetime.is_elided() { Some(lifetime.clean(cx)) } else { None };
1359                 DynTrait(bounds, lifetime)
1360             }
1361             TyKind::BareFn(ref barefn) => BareFunction(box barefn.clean(cx)),
1362             // Rustdoc handles `TyKind::Err`s by turning them into `Type::Infer`s.
1363             TyKind::Infer | TyKind::Err => Infer,
1364             TyKind::Typeof(..) => panic!("unimplemented type {:?}", self.kind),
1365         }
1366     }
1367 }
1368
1369 /// Returns `None` if the type could not be normalized
1370 fn normalize(cx: &mut DocContext<'tcx>, ty: Ty<'_>) -> Option<Ty<'tcx>> {
1371     // HACK: low-churn fix for #79459 while we wait for a trait normalization fix
1372     if !cx.tcx.sess.opts.debugging_opts.normalize_docs {
1373         return None;
1374     }
1375
1376     use crate::rustc_trait_selection::infer::TyCtxtInferExt;
1377     use crate::rustc_trait_selection::traits::query::normalize::AtExt;
1378     use rustc_middle::traits::ObligationCause;
1379
1380     // Try to normalize `<X as Y>::T` to a type
1381     let lifted = ty.lift_to_tcx(cx.tcx).unwrap();
1382     let normalized = cx.tcx.infer_ctxt().enter(|infcx| {
1383         infcx
1384             .at(&ObligationCause::dummy(), cx.param_env)
1385             .normalize(lifted)
1386             .map(|resolved| infcx.resolve_vars_if_possible(resolved.value))
1387     });
1388     match normalized {
1389         Ok(normalized_value) => {
1390             debug!("normalized {:?} to {:?}", ty, normalized_value);
1391             Some(normalized_value)
1392         }
1393         Err(err) => {
1394             debug!("failed to normalize {:?}: {:?}", ty, err);
1395             None
1396         }
1397     }
1398 }
1399
1400 impl<'tcx> Clean<Type> for Ty<'tcx> {
1401     fn clean(&self, cx: &mut DocContext<'_>) -> Type {
1402         trace!("cleaning type: {:?}", self);
1403         let ty = normalize(cx, self).unwrap_or(self);
1404         match *ty.kind() {
1405             ty::Never => Never,
1406             ty::Bool => Primitive(PrimitiveType::Bool),
1407             ty::Char => Primitive(PrimitiveType::Char),
1408             ty::Int(int_ty) => Primitive(int_ty.into()),
1409             ty::Uint(uint_ty) => Primitive(uint_ty.into()),
1410             ty::Float(float_ty) => Primitive(float_ty.into()),
1411             ty::Str => Primitive(PrimitiveType::Str),
1412             ty::Slice(ty) => Slice(box ty.clean(cx)),
1413             ty::Array(ty, n) => {
1414                 let mut n = cx.tcx.lift(n).expect("array lift failed");
1415                 n = n.eval(cx.tcx, ty::ParamEnv::reveal_all());
1416                 let n = print_const(cx, n);
1417                 Array(box ty.clean(cx), n)
1418             }
1419             ty::RawPtr(mt) => RawPointer(mt.mutbl, box mt.ty.clean(cx)),
1420             ty::Ref(r, ty, mutbl) => {
1421                 BorrowedRef { lifetime: r.clean(cx), mutability: mutbl, type_: box ty.clean(cx) }
1422             }
1423             ty::FnDef(..) | ty::FnPtr(_) => {
1424                 let ty = cx.tcx.lift(*self).expect("FnPtr lift failed");
1425                 let sig = ty.fn_sig(cx.tcx);
1426                 let def_id = DefId::local(CRATE_DEF_INDEX);
1427                 BareFunction(box BareFunctionDecl {
1428                     unsafety: sig.unsafety(),
1429                     generic_params: Vec::new(),
1430                     decl: (def_id, sig).clean(cx),
1431                     abi: sig.abi(),
1432                 })
1433             }
1434             ty::Adt(def, substs) => {
1435                 let did = def.did;
1436                 let kind = match def.adt_kind() {
1437                     AdtKind::Struct => ItemType::Struct,
1438                     AdtKind::Union => ItemType::Union,
1439                     AdtKind::Enum => ItemType::Enum,
1440                 };
1441                 inline::record_extern_fqn(cx, did, kind);
1442                 let path = external_path(cx, did, false, vec![], substs);
1443                 ResolvedPath { path, did, is_generic: false }
1444             }
1445             ty::Foreign(did) => {
1446                 inline::record_extern_fqn(cx, did, ItemType::ForeignType);
1447                 let path = external_path(cx, did, false, vec![], InternalSubsts::empty());
1448                 ResolvedPath { path, did, is_generic: false }
1449             }
1450             ty::Dynamic(ref obj, ref reg) => {
1451                 // HACK: pick the first `did` as the `did` of the trait object. Someone
1452                 // might want to implement "native" support for marker-trait-only
1453                 // trait objects.
1454                 let mut dids = obj.principal_def_id().into_iter().chain(obj.auto_traits());
1455                 let did = dids
1456                     .next()
1457                     .unwrap_or_else(|| panic!("found trait object `{:?}` with no traits?", self));
1458                 let substs = match obj.principal() {
1459                     Some(principal) => principal.skip_binder().substs,
1460                     // marker traits have no substs.
1461                     _ => cx.tcx.intern_substs(&[]),
1462                 };
1463
1464                 inline::record_extern_fqn(cx, did, ItemType::Trait);
1465
1466                 let lifetime = reg.clean(cx);
1467                 let mut bounds = vec![];
1468
1469                 for did in dids {
1470                     let empty = cx.tcx.intern_substs(&[]);
1471                     let path = external_path(cx, did, false, vec![], empty);
1472                     inline::record_extern_fqn(cx, did, ItemType::Trait);
1473                     let bound = PolyTrait {
1474                         trait_: ResolvedPath { path, did, is_generic: false },
1475                         generic_params: Vec::new(),
1476                     };
1477                     bounds.push(bound);
1478                 }
1479
1480                 let mut bindings = vec![];
1481                 for pb in obj.projection_bounds() {
1482                     bindings.push(TypeBinding {
1483                         name: cx.tcx.associated_item(pb.item_def_id()).ident.name,
1484                         kind: TypeBindingKind::Equality { ty: pb.skip_binder().ty.clean(cx) },
1485                     });
1486                 }
1487
1488                 let path = external_path(cx, did, false, bindings, substs);
1489                 bounds.insert(
1490                     0,
1491                     PolyTrait {
1492                         trait_: ResolvedPath { path, did, is_generic: false },
1493                         generic_params: Vec::new(),
1494                     },
1495                 );
1496
1497                 DynTrait(bounds, lifetime)
1498             }
1499             ty::Tuple(ref t) => {
1500                 Tuple(t.iter().map(|t| t.expect_ty()).collect::<Vec<_>>().clean(cx))
1501             }
1502
1503             ty::Projection(ref data) => data.clean(cx),
1504
1505             ty::Param(ref p) => {
1506                 if let Some(bounds) = cx.impl_trait_bounds.remove(&p.index.into()) {
1507                     ImplTrait(bounds)
1508                 } else {
1509                     Generic(p.name)
1510                 }
1511             }
1512
1513             ty::Opaque(def_id, substs) => {
1514                 // Grab the "TraitA + TraitB" from `impl TraitA + TraitB`,
1515                 // by looking up the bounds associated with the def_id.
1516                 let substs = cx.tcx.lift(substs).expect("Opaque lift failed");
1517                 let bounds = cx
1518                     .tcx
1519                     .explicit_item_bounds(def_id)
1520                     .iter()
1521                     .map(|(bound, _)| bound.subst(cx.tcx, substs))
1522                     .collect::<Vec<_>>();
1523                 let mut regions = vec![];
1524                 let mut has_sized = false;
1525                 let mut bounds = bounds
1526                     .iter()
1527                     .filter_map(|bound| {
1528                         let bound_predicate = bound.kind();
1529                         let trait_ref = match bound_predicate.skip_binder() {
1530                             ty::PredicateKind::Trait(tr) => bound_predicate.rebind(tr.trait_ref),
1531                             ty::PredicateKind::TypeOutlives(ty::OutlivesPredicate(_ty, reg)) => {
1532                                 if let Some(r) = reg.clean(cx) {
1533                                     regions.push(GenericBound::Outlives(r));
1534                                 }
1535                                 return None;
1536                             }
1537                             _ => return None,
1538                         };
1539
1540                         if let Some(sized) = cx.tcx.lang_items().sized_trait() {
1541                             if trait_ref.def_id() == sized {
1542                                 has_sized = true;
1543                                 return None;
1544                             }
1545                         }
1546
1547                         let bounds: Vec<_> = bounds
1548                             .iter()
1549                             .filter_map(|bound| {
1550                                 if let ty::PredicateKind::Projection(proj) =
1551                                     bound.kind().skip_binder()
1552                                 {
1553                                     if proj.projection_ty.trait_ref(cx.tcx)
1554                                         == trait_ref.skip_binder()
1555                                     {
1556                                         Some(TypeBinding {
1557                                             name: cx
1558                                                 .tcx
1559                                                 .associated_item(proj.projection_ty.item_def_id)
1560                                                 .ident
1561                                                 .name,
1562                                             kind: TypeBindingKind::Equality {
1563                                                 ty: proj.ty.clean(cx),
1564                                             },
1565                                         })
1566                                     } else {
1567                                         None
1568                                     }
1569                                 } else {
1570                                     None
1571                                 }
1572                             })
1573                             .collect();
1574
1575                         Some((trait_ref, &bounds[..]).clean(cx))
1576                     })
1577                     .collect::<Vec<_>>();
1578                 bounds.extend(regions);
1579                 if !has_sized && !bounds.is_empty() {
1580                     bounds.insert(0, GenericBound::maybe_sized(cx));
1581                 }
1582                 ImplTrait(bounds)
1583             }
1584
1585             ty::Closure(..) | ty::Generator(..) => Tuple(vec![]), // FIXME(pcwalton)
1586
1587             ty::Bound(..) => panic!("Bound"),
1588             ty::Placeholder(..) => panic!("Placeholder"),
1589             ty::GeneratorWitness(..) => panic!("GeneratorWitness"),
1590             ty::Infer(..) => panic!("Infer"),
1591             ty::Error(_) => panic!("Error"),
1592         }
1593     }
1594 }
1595
1596 impl<'tcx> Clean<Constant> for ty::Const<'tcx> {
1597     fn clean(&self, cx: &mut DocContext<'_>) -> Constant {
1598         // FIXME: instead of storing the stringified expression, store `self` directly instead.
1599         Constant {
1600             type_: self.ty.clean(cx),
1601             kind: ConstantKind::TyConst { expr: self.to_string() },
1602         }
1603     }
1604 }
1605
1606 impl Clean<Item> for hir::FieldDef<'_> {
1607     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
1608         let what_rustc_thinks = Item::from_hir_id_and_parts(
1609             self.hir_id,
1610             Some(self.ident.name),
1611             StructFieldItem(self.ty.clean(cx)),
1612             cx,
1613         );
1614         // Don't show `pub` for fields on enum variants; they are always public
1615         Item { visibility: self.vis.clean(cx), ..what_rustc_thinks }
1616     }
1617 }
1618
1619 impl Clean<Item> for ty::FieldDef {
1620     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
1621         let what_rustc_thinks = Item::from_def_id_and_parts(
1622             self.did,
1623             Some(self.ident.name),
1624             StructFieldItem(cx.tcx.type_of(self.did).clean(cx)),
1625             cx,
1626         );
1627         // Don't show `pub` for fields on enum variants; they are always public
1628         Item { visibility: self.vis.clean(cx), ..what_rustc_thinks }
1629     }
1630 }
1631
1632 impl Clean<Visibility> for hir::Visibility<'_> {
1633     fn clean(&self, cx: &mut DocContext<'_>) -> Visibility {
1634         match self.node {
1635             hir::VisibilityKind::Public => Visibility::Public,
1636             hir::VisibilityKind::Inherited => Visibility::Inherited,
1637             hir::VisibilityKind::Crate(_) => {
1638                 let krate = DefId::local(CRATE_DEF_INDEX);
1639                 Visibility::Restricted(krate)
1640             }
1641             hir::VisibilityKind::Restricted { ref path, .. } => {
1642                 let path = path.clean(cx);
1643                 let did = register_res(cx, path.res);
1644                 Visibility::Restricted(did)
1645             }
1646         }
1647     }
1648 }
1649
1650 impl Clean<Visibility> for ty::Visibility {
1651     fn clean(&self, _cx: &mut DocContext<'_>) -> Visibility {
1652         match *self {
1653             ty::Visibility::Public => Visibility::Public,
1654             // NOTE: this is not quite right: `ty` uses `Invisible` to mean 'private',
1655             // while rustdoc really does mean inherited. That means that for enum variants, such as
1656             // `pub enum E { V }`, `V` will be marked as `Public` by `ty`, but as `Inherited` by rustdoc.
1657             // This is the main reason `impl Clean for hir::Visibility` still exists; various parts of clean
1658             // override `tcx.visibility` explicitly to make sure this distinction is captured.
1659             ty::Visibility::Invisible => Visibility::Inherited,
1660             ty::Visibility::Restricted(module) => Visibility::Restricted(module),
1661         }
1662     }
1663 }
1664
1665 impl Clean<VariantStruct> for rustc_hir::VariantData<'_> {
1666     fn clean(&self, cx: &mut DocContext<'_>) -> VariantStruct {
1667         VariantStruct {
1668             struct_type: CtorKind::from_hir(self),
1669             fields: self.fields().iter().map(|x| x.clean(cx)).collect(),
1670             fields_stripped: false,
1671         }
1672     }
1673 }
1674
1675 impl Clean<Vec<Item>> for hir::VariantData<'_> {
1676     fn clean(&self, cx: &mut DocContext<'_>) -> Vec<Item> {
1677         self.fields().iter().map(|x| x.clean(cx)).collect()
1678     }
1679 }
1680
1681 impl Clean<Item> for ty::VariantDef {
1682     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
1683         let kind = match self.ctor_kind {
1684             CtorKind::Const => Variant::CLike,
1685             CtorKind::Fn => Variant::Tuple(
1686                 self.fields
1687                     .iter()
1688                     .map(|field| {
1689                         let name = Some(field.ident.name);
1690                         let kind = StructFieldItem(cx.tcx.type_of(field.did).clean(cx));
1691                         let what_rustc_thinks =
1692                             Item::from_def_id_and_parts(field.did, name, kind, cx);
1693                         // don't show `pub` for fields, which are always public
1694                         Item { visibility: Visibility::Inherited, ..what_rustc_thinks }
1695                     })
1696                     .collect(),
1697             ),
1698             CtorKind::Fictive => Variant::Struct(VariantStruct {
1699                 struct_type: CtorKind::Fictive,
1700                 fields_stripped: false,
1701                 fields: self
1702                     .fields
1703                     .iter()
1704                     .map(|field| {
1705                         let name = Some(field.ident.name);
1706                         let kind = StructFieldItem(cx.tcx.type_of(field.did).clean(cx));
1707                         let what_rustc_thinks =
1708                             Item::from_def_id_and_parts(field.did, name, kind, cx);
1709                         // don't show `pub` for fields, which are always public
1710                         Item { visibility: Visibility::Inherited, ..what_rustc_thinks }
1711                     })
1712                     .collect(),
1713             }),
1714         };
1715         let what_rustc_thinks =
1716             Item::from_def_id_and_parts(self.def_id, Some(self.ident.name), VariantItem(kind), cx);
1717         // don't show `pub` for fields, which are always public
1718         Item { visibility: Inherited, ..what_rustc_thinks }
1719     }
1720 }
1721
1722 impl Clean<Variant> for hir::VariantData<'_> {
1723     fn clean(&self, cx: &mut DocContext<'_>) -> Variant {
1724         match self {
1725             hir::VariantData::Struct(..) => Variant::Struct(self.clean(cx)),
1726             hir::VariantData::Tuple(..) => Variant::Tuple(self.clean(cx)),
1727             hir::VariantData::Unit(..) => Variant::CLike,
1728         }
1729     }
1730 }
1731
1732 impl Clean<Path> for hir::Path<'_> {
1733     fn clean(&self, cx: &mut DocContext<'_>) -> Path {
1734         Path {
1735             global: self.is_global(),
1736             res: self.res,
1737             segments: if self.is_global() { &self.segments[1..] } else { &self.segments }.clean(cx),
1738         }
1739     }
1740 }
1741
1742 impl Clean<GenericArgs> for hir::GenericArgs<'_> {
1743     fn clean(&self, cx: &mut DocContext<'_>) -> GenericArgs {
1744         if self.parenthesized {
1745             let output = self.bindings[0].ty().clean(cx);
1746             let output =
1747                 if output != Type::Tuple(Vec::new()) { Some(Box::new(output)) } else { None };
1748             GenericArgs::Parenthesized { inputs: self.inputs().clean(cx), output }
1749         } else {
1750             GenericArgs::AngleBracketed {
1751                 args: self
1752                     .args
1753                     .iter()
1754                     .map(|arg| match arg {
1755                         hir::GenericArg::Lifetime(lt) if !lt.is_elided() => {
1756                             GenericArg::Lifetime(lt.clean(cx))
1757                         }
1758                         hir::GenericArg::Lifetime(_) => GenericArg::Lifetime(Lifetime::elided()),
1759                         hir::GenericArg::Type(ty) => GenericArg::Type(ty.clean(cx)),
1760                         hir::GenericArg::Const(ct) => GenericArg::Const(Box::new(ct.clean(cx))),
1761                         hir::GenericArg::Infer(_inf) => GenericArg::Infer,
1762                     })
1763                     .collect(),
1764                 bindings: self.bindings.clean(cx),
1765             }
1766         }
1767     }
1768 }
1769
1770 impl Clean<PathSegment> for hir::PathSegment<'_> {
1771     fn clean(&self, cx: &mut DocContext<'_>) -> PathSegment {
1772         PathSegment { name: self.ident.name, args: self.args().clean(cx) }
1773     }
1774 }
1775
1776 impl Clean<BareFunctionDecl> for hir::BareFnTy<'_> {
1777     fn clean(&self, cx: &mut DocContext<'_>) -> BareFunctionDecl {
1778         let (generic_params, decl) = enter_impl_trait(cx, |cx| {
1779             (self.generic_params.clean(cx), (&*self.decl, self.param_names).clean(cx))
1780         });
1781         BareFunctionDecl { unsafety: self.unsafety, abi: self.abi, decl, generic_params }
1782     }
1783 }
1784
1785 impl Clean<Vec<Item>> for (&hir::Item<'_>, Option<Symbol>) {
1786     fn clean(&self, cx: &mut DocContext<'_>) -> Vec<Item> {
1787         use hir::ItemKind;
1788
1789         let (item, renamed) = self;
1790         let def_id = item.def_id.to_def_id();
1791         let mut name = renamed.unwrap_or_else(|| cx.tcx.hir().name(item.hir_id()));
1792         cx.with_param_env(def_id, |cx| {
1793             let kind = match item.kind {
1794                 ItemKind::Static(ty, mutability, body_id) => {
1795                     StaticItem(Static { type_: ty.clean(cx), mutability, expr: Some(body_id) })
1796                 }
1797                 ItemKind::Const(ty, body_id) => ConstantItem(Constant {
1798                     type_: ty.clean(cx),
1799                     kind: ConstantKind::Local { body: body_id, def_id },
1800                 }),
1801                 ItemKind::OpaqueTy(ref ty) => OpaqueTyItem(OpaqueTy {
1802                     bounds: ty.bounds.clean(cx),
1803                     generics: ty.generics.clean(cx),
1804                 }),
1805                 ItemKind::TyAlias(hir_ty, ref generics) => {
1806                     let rustdoc_ty = hir_ty.clean(cx);
1807                     let ty = hir_ty_to_ty(cx.tcx, hir_ty).clean(cx);
1808                     TypedefItem(
1809                         Typedef {
1810                             type_: rustdoc_ty,
1811                             generics: generics.clean(cx),
1812                             item_type: Some(ty),
1813                         },
1814                         false,
1815                     )
1816                 }
1817                 ItemKind::Enum(ref def, ref generics) => EnumItem(Enum {
1818                     variants: def.variants.iter().map(|v| v.clean(cx)).collect(),
1819                     generics: generics.clean(cx),
1820                     variants_stripped: false,
1821                 }),
1822                 ItemKind::TraitAlias(ref generics, bounds) => TraitAliasItem(TraitAlias {
1823                     generics: generics.clean(cx),
1824                     bounds: bounds.clean(cx),
1825                 }),
1826                 ItemKind::Union(ref variant_data, ref generics) => UnionItem(Union {
1827                     generics: generics.clean(cx),
1828                     fields: variant_data.fields().clean(cx),
1829                     fields_stripped: false,
1830                 }),
1831                 ItemKind::Struct(ref variant_data, ref generics) => StructItem(Struct {
1832                     struct_type: CtorKind::from_hir(variant_data),
1833                     generics: generics.clean(cx),
1834                     fields: variant_data.fields().clean(cx),
1835                     fields_stripped: false,
1836                 }),
1837                 ItemKind::Impl(ref impl_) => return clean_impl(impl_, item.hir_id(), cx),
1838                 // proc macros can have a name set by attributes
1839                 ItemKind::Fn(ref sig, ref generics, body_id) => {
1840                     clean_fn_or_proc_macro(item, sig, generics, body_id, &mut name, cx)
1841                 }
1842                 ItemKind::Macro(ref macro_def) => MacroItem(Macro {
1843                     source: display_macro_source(cx, name, &macro_def, def_id, &item.vis),
1844                 }),
1845                 ItemKind::Trait(is_auto, unsafety, ref generics, ref bounds, ref item_ids) => {
1846                     let items = item_ids
1847                         .iter()
1848                         .map(|ti| cx.tcx.hir().trait_item(ti.id).clean(cx))
1849                         .collect();
1850                     TraitItem(Trait {
1851                         unsafety,
1852                         items,
1853                         generics: generics.clean(cx),
1854                         bounds: bounds.clean(cx),
1855                         is_auto: is_auto.clean(cx),
1856                     })
1857                 }
1858                 ItemKind::ExternCrate(orig_name) => {
1859                     return clean_extern_crate(item, name, orig_name, cx);
1860                 }
1861                 ItemKind::Use(path, kind) => {
1862                     return clean_use_statement(item, name, path, kind, cx);
1863                 }
1864                 _ => unreachable!("not yet converted"),
1865             };
1866
1867             vec![Item::from_def_id_and_parts(def_id, Some(name), kind, cx)]
1868         })
1869     }
1870 }
1871
1872 impl Clean<Item> for hir::Variant<'_> {
1873     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
1874         let kind = VariantItem(self.data.clean(cx));
1875         let what_rustc_thinks =
1876             Item::from_hir_id_and_parts(self.id, Some(self.ident.name), kind, cx);
1877         // don't show `pub` for variants, which are always public
1878         Item { visibility: Inherited, ..what_rustc_thinks }
1879     }
1880 }
1881
1882 impl Clean<bool> for ty::ImplPolarity {
1883     /// Returns whether the impl has negative polarity.
1884     fn clean(&self, _: &mut DocContext<'_>) -> bool {
1885         match self {
1886             &ty::ImplPolarity::Positive |
1887             // FIXME: do we want to do something else here?
1888             &ty::ImplPolarity::Reservation => false,
1889             &ty::ImplPolarity::Negative => true,
1890         }
1891     }
1892 }
1893
1894 fn clean_impl(impl_: &hir::Impl<'_>, hir_id: hir::HirId, cx: &mut DocContext<'_>) -> Vec<Item> {
1895     let tcx = cx.tcx;
1896     let mut ret = Vec::new();
1897     let trait_ = impl_.of_trait.clean(cx);
1898     let items =
1899         impl_.items.iter().map(|ii| tcx.hir().impl_item(ii.id).clean(cx)).collect::<Vec<_>>();
1900     let def_id = tcx.hir().local_def_id(hir_id);
1901
1902     // If this impl block is an implementation of the Deref trait, then we
1903     // need to try inlining the target's inherent impl blocks as well.
1904     if trait_.def_id() == tcx.lang_items().deref_trait() {
1905         build_deref_target_impls(cx, &items, &mut ret);
1906     }
1907
1908     let for_ = impl_.self_ty.clean(cx);
1909     let type_alias = for_.def_id().and_then(|did| match tcx.def_kind(did) {
1910         DefKind::TyAlias => Some(tcx.type_of(did).clean(cx)),
1911         _ => None,
1912     });
1913     let mut make_item = |trait_: Option<Type>, for_: Type, items: Vec<Item>| {
1914         let kind = ImplItem(Impl {
1915             span: types::rustc_span(tcx.hir().local_def_id(hir_id).to_def_id(), tcx),
1916             unsafety: impl_.unsafety,
1917             generics: impl_.generics.clean(cx),
1918             trait_,
1919             for_,
1920             items,
1921             negative_polarity: tcx.impl_polarity(def_id).clean(cx),
1922             synthetic: false,
1923             blanket_impl: None,
1924         });
1925         Item::from_hir_id_and_parts(hir_id, None, kind, cx)
1926     };
1927     if let Some(type_alias) = type_alias {
1928         ret.push(make_item(trait_.clone(), type_alias, items.clone()));
1929     }
1930     ret.push(make_item(trait_, for_, items));
1931     ret
1932 }
1933
1934 fn clean_extern_crate(
1935     krate: &hir::Item<'_>,
1936     name: Symbol,
1937     orig_name: Option<Symbol>,
1938     cx: &mut DocContext<'_>,
1939 ) -> Vec<Item> {
1940     // this is the ID of the `extern crate` statement
1941     let cnum = cx.tcx.extern_mod_stmt_cnum(krate.def_id).unwrap_or(LOCAL_CRATE);
1942     // this is the ID of the crate itself
1943     let crate_def_id = DefId { krate: cnum, index: CRATE_DEF_INDEX };
1944     let attrs = cx.tcx.hir().attrs(krate.hir_id());
1945     let please_inline = krate.vis.node.is_pub()
1946         && attrs.iter().any(|a| {
1947             a.has_name(sym::doc)
1948                 && match a.meta_item_list() {
1949                     Some(l) => attr::list_contains_name(&l, sym::inline),
1950                     None => false,
1951                 }
1952         });
1953
1954     if please_inline {
1955         let mut visited = FxHashSet::default();
1956
1957         let res = Res::Def(DefKind::Mod, crate_def_id);
1958
1959         if let Some(items) = inline::try_inline(
1960             cx,
1961             cx.tcx.parent_module(krate.hir_id()).to_def_id(),
1962             Some(krate.def_id.to_def_id()),
1963             res,
1964             name,
1965             Some(attrs),
1966             &mut visited,
1967         ) {
1968             return items;
1969         }
1970     }
1971
1972     // FIXME: using `from_def_id_and_kind` breaks `rustdoc/masked` for some reason
1973     vec![Item {
1974         name: Some(name),
1975         attrs: box attrs.clean(cx),
1976         def_id: crate_def_id.into(),
1977         visibility: krate.vis.clean(cx),
1978         kind: box ExternCrateItem { src: orig_name },
1979         cfg: attrs.cfg(cx.sess()),
1980     }]
1981 }
1982
1983 fn clean_use_statement(
1984     import: &hir::Item<'_>,
1985     name: Symbol,
1986     path: &hir::Path<'_>,
1987     kind: hir::UseKind,
1988     cx: &mut DocContext<'_>,
1989 ) -> Vec<Item> {
1990     // We need this comparison because some imports (for std types for example)
1991     // are "inserted" as well but directly by the compiler and they should not be
1992     // taken into account.
1993     if import.span.ctxt().outer_expn_data().kind == ExpnKind::AstPass(AstPass::StdImports) {
1994         return Vec::new();
1995     }
1996
1997     let attrs = cx.tcx.hir().attrs(import.hir_id());
1998     let inline_attr = attrs.lists(sym::doc).get_word_attr(sym::inline);
1999     let pub_underscore = import.vis.node.is_pub() && name == kw::Underscore;
2000
2001     if pub_underscore {
2002         if let Some(ref inline) = inline_attr {
2003             rustc_errors::struct_span_err!(
2004                 cx.tcx.sess,
2005                 inline.span(),
2006                 E0780,
2007                 "anonymous imports cannot be inlined"
2008             )
2009             .span_label(import.span, "anonymous import")
2010             .emit();
2011         }
2012     }
2013
2014     // We consider inlining the documentation of `pub use` statements, but we
2015     // forcefully don't inline if this is not public or if the
2016     // #[doc(no_inline)] attribute is present.
2017     // Don't inline doc(hidden) imports so they can be stripped at a later stage.
2018     let mut denied = !(import.vis.node.is_pub()
2019         || (cx.render_options.document_private && import.vis.node.is_pub_restricted()))
2020         || pub_underscore
2021         || attrs.iter().any(|a| {
2022             a.has_name(sym::doc)
2023                 && match a.meta_item_list() {
2024                     Some(l) => {
2025                         attr::list_contains_name(&l, sym::no_inline)
2026                             || attr::list_contains_name(&l, sym::hidden)
2027                     }
2028                     None => false,
2029                 }
2030         });
2031
2032     // Also check whether imports were asked to be inlined, in case we're trying to re-export a
2033     // crate in Rust 2018+
2034     let path = path.clean(cx);
2035     let inner = if kind == hir::UseKind::Glob {
2036         if !denied {
2037             let mut visited = FxHashSet::default();
2038             if let Some(items) = inline::try_inline_glob(cx, path.res, &mut visited) {
2039                 return items;
2040             }
2041         }
2042         Import::new_glob(resolve_use_source(cx, path), true)
2043     } else {
2044         if inline_attr.is_none() {
2045             if let Res::Def(DefKind::Mod, did) = path.res {
2046                 if !did.is_local() && did.index == CRATE_DEF_INDEX {
2047                     // if we're `pub use`ing an extern crate root, don't inline it unless we
2048                     // were specifically asked for it
2049                     denied = true;
2050                 }
2051             }
2052         }
2053         if !denied {
2054             let mut visited = FxHashSet::default();
2055             let import_def_id = import.def_id.to_def_id();
2056
2057             if let Some(mut items) = inline::try_inline(
2058                 cx,
2059                 cx.tcx.parent_module(import.hir_id()).to_def_id(),
2060                 Some(import_def_id),
2061                 path.res,
2062                 name,
2063                 Some(attrs),
2064                 &mut visited,
2065             ) {
2066                 items.push(Item::from_def_id_and_parts(
2067                     import_def_id,
2068                     None,
2069                     ImportItem(Import::new_simple(name, resolve_use_source(cx, path), false)),
2070                     cx,
2071                 ));
2072                 return items;
2073             }
2074         }
2075         Import::new_simple(name, resolve_use_source(cx, path), true)
2076     };
2077
2078     vec![Item::from_def_id_and_parts(import.def_id.to_def_id(), None, ImportItem(inner), cx)]
2079 }
2080
2081 impl Clean<Item> for (&hir::ForeignItem<'_>, Option<Symbol>) {
2082     fn clean(&self, cx: &mut DocContext<'_>) -> Item {
2083         let (item, renamed) = self;
2084         cx.with_param_env(item.def_id.to_def_id(), |cx| {
2085             let kind = match item.kind {
2086                 hir::ForeignItemKind::Fn(ref decl, ref names, ref generics) => {
2087                     let abi = cx.tcx.hir().get_foreign_abi(item.hir_id());
2088                     let (generics, decl) = enter_impl_trait(cx, |cx| {
2089                         (generics.clean(cx), (&**decl, &names[..]).clean(cx))
2090                     });
2091                     ForeignFunctionItem(Function {
2092                         decl,
2093                         generics,
2094                         header: hir::FnHeader {
2095                             unsafety: if abi == Abi::RustIntrinsic {
2096                                 intrinsic_operation_unsafety(item.ident.name)
2097                             } else {
2098                                 hir::Unsafety::Unsafe
2099                             },
2100                             abi,
2101                             constness: hir::Constness::NotConst,
2102                             asyncness: hir::IsAsync::NotAsync,
2103                         },
2104                     })
2105                 }
2106                 hir::ForeignItemKind::Static(ref ty, mutability) => {
2107                     ForeignStaticItem(Static { type_: ty.clean(cx), mutability, expr: None })
2108                 }
2109                 hir::ForeignItemKind::Type => ForeignTypeItem,
2110             };
2111
2112             Item::from_hir_id_and_parts(
2113                 item.hir_id(),
2114                 Some(renamed.unwrap_or(item.ident.name)),
2115                 kind,
2116                 cx,
2117             )
2118         })
2119     }
2120 }
2121
2122 impl Clean<TypeBinding> for hir::TypeBinding<'_> {
2123     fn clean(&self, cx: &mut DocContext<'_>) -> TypeBinding {
2124         TypeBinding { name: self.ident.name, kind: self.kind.clean(cx) }
2125     }
2126 }
2127
2128 impl Clean<TypeBindingKind> for hir::TypeBindingKind<'_> {
2129     fn clean(&self, cx: &mut DocContext<'_>) -> TypeBindingKind {
2130         match *self {
2131             hir::TypeBindingKind::Equality { ref ty } => {
2132                 TypeBindingKind::Equality { ty: ty.clean(cx) }
2133             }
2134             hir::TypeBindingKind::Constraint { ref bounds } => {
2135                 TypeBindingKind::Constraint { bounds: bounds.iter().map(|b| b.clean(cx)).collect() }
2136             }
2137         }
2138     }
2139 }