]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/clean/utils.rs
Auto merge of #75137 - Aaron1011:fix/hygiene-skip-expndata, r=petrochenkov
[rust.git] / src / librustdoc / clean / utils.rs
1 use crate::clean::auto_trait::AutoTraitFinder;
2 use crate::clean::blanket_impl::BlanketImplFinder;
3 use crate::clean::{
4     inline, Clean, Crate, Deprecation, ExternalCrate, FnDecl, FnRetTy, Generic, GenericArg,
5     GenericArgs, GenericBound, Generics, GetDefId, ImportSource, Item, ItemEnum, Lifetime,
6     MacroKind, Path, PathSegment, Primitive, PrimitiveType, ResolvedPath, Span, Stability, Type,
7     TypeBinding, TypeKind, Visibility, WherePredicate,
8 };
9 use crate::core::DocContext;
10
11 use itertools::Itertools;
12 use rustc_data_structures::fx::FxHashSet;
13 use rustc_hir as hir;
14 use rustc_hir::def::{DefKind, Res};
15 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
16 use rustc_middle::mir::interpret::{sign_extend, ConstValue, Scalar};
17 use rustc_middle::ty::subst::{GenericArgKind, SubstsRef};
18 use rustc_middle::ty::{self, DefIdTree, Ty};
19 use rustc_span::symbol::{kw, sym, Symbol};
20 use std::mem;
21
22 pub fn krate(mut cx: &mut DocContext<'_>) -> Crate {
23     use crate::visit_lib::LibEmbargoVisitor;
24
25     let krate = cx.tcx.hir().krate();
26     let module = crate::visit_ast::RustdocVisitor::new(&mut cx).visit(krate);
27
28     let mut r = cx.renderinfo.get_mut();
29     r.deref_trait_did = cx.tcx.lang_items().deref_trait();
30     r.deref_mut_trait_did = cx.tcx.lang_items().deref_mut_trait();
31     r.owned_box_did = cx.tcx.lang_items().owned_box();
32
33     let mut externs = Vec::new();
34     for &cnum in cx.tcx.crates().iter() {
35         externs.push((cnum, cnum.clean(cx)));
36         // Analyze doc-reachability for extern items
37         LibEmbargoVisitor::new(&mut cx).visit_lib(cnum);
38     }
39     externs.sort_by(|&(a, _), &(b, _)| a.cmp(&b));
40
41     // Clean the crate, translating the entire librustc_ast AST to one that is
42     // understood by rustdoc.
43     let mut module = module.clean(cx);
44     let mut masked_crates = FxHashSet::default();
45
46     match module.inner {
47         ItemEnum::ModuleItem(ref module) => {
48             for it in &module.items {
49                 // `compiler_builtins` should be masked too, but we can't apply
50                 // `#[doc(masked)]` to the injected `extern crate` because it's unstable.
51                 if it.is_extern_crate()
52                     && (it.attrs.has_doc_flag(sym::masked)
53                         || cx.tcx.is_compiler_builtins(it.def_id.krate))
54                 {
55                     masked_crates.insert(it.def_id.krate);
56                 }
57             }
58         }
59         _ => unreachable!(),
60     }
61
62     let ExternalCrate { name, src, primitives, keywords, .. } = LOCAL_CRATE.clean(cx);
63     {
64         let m = match module.inner {
65             ItemEnum::ModuleItem(ref mut m) => m,
66             _ => unreachable!(),
67         };
68         m.items.extend(primitives.iter().map(|&(def_id, prim, ref attrs)| Item {
69             source: Span::empty(),
70             name: Some(prim.to_url_str().to_string()),
71             attrs: attrs.clone(),
72             visibility: Visibility::Public,
73             stability: get_stability(cx, def_id),
74             deprecation: get_deprecation(cx, def_id),
75             def_id,
76             inner: ItemEnum::PrimitiveItem(prim),
77         }));
78         m.items.extend(keywords.into_iter().map(|(def_id, kw, attrs)| Item {
79             source: Span::empty(),
80             name: Some(kw.clone()),
81             attrs,
82             visibility: Visibility::Public,
83             stability: get_stability(cx, def_id),
84             deprecation: get_deprecation(cx, def_id),
85             def_id,
86             inner: ItemEnum::KeywordItem(kw),
87         }));
88     }
89
90     Crate {
91         name,
92         version: None,
93         src,
94         module: Some(module),
95         externs,
96         primitives,
97         external_traits: cx.external_traits.clone(),
98         masked_crates,
99         collapsed: false,
100     }
101 }
102
103 // extract the stability index for a node from tcx, if possible
104 pub fn get_stability(cx: &DocContext<'_>, def_id: DefId) -> Option<Stability> {
105     cx.tcx.lookup_stability(def_id).clean(cx)
106 }
107
108 pub fn get_deprecation(cx: &DocContext<'_>, def_id: DefId) -> Option<Deprecation> {
109     cx.tcx.lookup_deprecation(def_id).clean(cx)
110 }
111
112 pub fn external_generic_args(
113     cx: &DocContext<'_>,
114     trait_did: Option<DefId>,
115     has_self: bool,
116     bindings: Vec<TypeBinding>,
117     substs: SubstsRef<'_>,
118 ) -> GenericArgs {
119     let mut skip_self = has_self;
120     let mut ty_kind = None;
121     let args: Vec<_> = substs
122         .iter()
123         .filter_map(|kind| match kind.unpack() {
124             GenericArgKind::Lifetime(lt) => match lt {
125                 ty::ReLateBound(_, ty::BrAnon(_)) => Some(GenericArg::Lifetime(Lifetime::elided())),
126                 _ => lt.clean(cx).map(GenericArg::Lifetime),
127             },
128             GenericArgKind::Type(_) if skip_self => {
129                 skip_self = false;
130                 None
131             }
132             GenericArgKind::Type(ty) => {
133                 ty_kind = Some(&ty.kind);
134                 Some(GenericArg::Type(ty.clean(cx)))
135             }
136             GenericArgKind::Const(ct) => Some(GenericArg::Const(ct.clean(cx))),
137         })
138         .collect();
139
140     match trait_did {
141         // Attempt to sugar an external path like Fn<(A, B,), C> to Fn(A, B) -> C
142         Some(did) if cx.tcx.fn_trait_kind_from_lang_item(did).is_some() => {
143             assert!(ty_kind.is_some());
144             let inputs = match ty_kind {
145                 Some(ty::Tuple(ref tys)) => tys.iter().map(|t| t.expect_ty().clean(cx)).collect(),
146                 _ => return GenericArgs::AngleBracketed { args, bindings },
147             };
148             let output = None;
149             // FIXME(#20299) return type comes from a projection now
150             // match types[1].kind {
151             //     ty::Tuple(ref v) if v.is_empty() => None, // -> ()
152             //     _ => Some(types[1].clean(cx))
153             // };
154             GenericArgs::Parenthesized { inputs, output }
155         }
156         _ => GenericArgs::AngleBracketed { args, bindings },
157     }
158 }
159
160 // trait_did should be set to a trait's DefId if called on a TraitRef, in order to sugar
161 // from Fn<(A, B,), C> to Fn(A, B) -> C
162 pub fn external_path(
163     cx: &DocContext<'_>,
164     name: Symbol,
165     trait_did: Option<DefId>,
166     has_self: bool,
167     bindings: Vec<TypeBinding>,
168     substs: SubstsRef<'_>,
169 ) -> Path {
170     Path {
171         global: false,
172         res: Res::Err,
173         segments: vec![PathSegment {
174             name: name.to_string(),
175             args: external_generic_args(cx, trait_did, has_self, bindings, substs),
176         }],
177     }
178 }
179
180 /// The point of this function is to replace bounds with types.
181 ///
182 /// i.e. `[T, U]` when you have the following bounds: `T: Display, U: Option<T>` will return
183 /// `[Display, Option]` (we just returns the list of the types, we don't care about the
184 /// wrapped types in here).
185 pub fn get_real_types(
186     generics: &Generics,
187     arg: &Type,
188     cx: &DocContext<'_>,
189     recurse: i32,
190 ) -> FxHashSet<(Type, TypeKind)> {
191     let arg_s = arg.print().to_string();
192     let mut res = FxHashSet::default();
193     if recurse >= 10 {
194         // FIXME: remove this whole recurse thing when the recursion bug is fixed
195         return res;
196     }
197     if arg.is_full_generic() {
198         if let Some(where_pred) = generics.where_predicates.iter().find(|g| match g {
199             &WherePredicate::BoundPredicate { ref ty, .. } => ty.def_id() == arg.def_id(),
200             _ => false,
201         }) {
202             let bounds = where_pred.get_bounds().unwrap_or_else(|| &[]);
203             for bound in bounds.iter() {
204                 if let GenericBound::TraitBound(ref poly_trait, _) = *bound {
205                     for x in poly_trait.generic_params.iter() {
206                         if !x.is_type() {
207                             continue;
208                         }
209                         if let Some(ty) = x.get_type() {
210                             let adds = get_real_types(generics, &ty, cx, recurse + 1);
211                             if !adds.is_empty() {
212                                 res.extend(adds);
213                             } else if !ty.is_full_generic() {
214                                 if let Some(kind) =
215                                     ty.def_id().map(|did| cx.tcx.def_kind(did).clean(cx))
216                                 {
217                                     res.insert((ty, kind));
218                                 }
219                             }
220                         }
221                     }
222                 }
223             }
224         }
225         if let Some(bound) = generics.params.iter().find(|g| g.is_type() && g.name == arg_s) {
226             for bound in bound.get_bounds().unwrap_or_else(|| &[]) {
227                 if let Some(ty) = bound.get_trait_type() {
228                     let adds = get_real_types(generics, &ty, cx, recurse + 1);
229                     if !adds.is_empty() {
230                         res.extend(adds);
231                     } else if !ty.is_full_generic() {
232                         if let Some(kind) = ty.def_id().map(|did| cx.tcx.def_kind(did).clean(cx)) {
233                             res.insert((ty.clone(), kind));
234                         }
235                     }
236                 }
237             }
238         }
239     } else {
240         if let Some(kind) = arg.def_id().map(|did| cx.tcx.def_kind(did).clean(cx)) {
241             res.insert((arg.clone(), kind));
242         }
243         if let Some(gens) = arg.generics() {
244             for gen in gens.iter() {
245                 if gen.is_full_generic() {
246                     let adds = get_real_types(generics, gen, cx, recurse + 1);
247                     if !adds.is_empty() {
248                         res.extend(adds);
249                     }
250                 } else if let Some(kind) = gen.def_id().map(|did| cx.tcx.def_kind(did).clean(cx)) {
251                     res.insert((gen.clone(), kind));
252                 }
253             }
254         }
255     }
256     res
257 }
258
259 /// Return the full list of types when bounds have been resolved.
260 ///
261 /// i.e. `fn foo<A: Display, B: Option<A>>(x: u32, y: B)` will return
262 /// `[u32, Display, Option]`.
263 pub fn get_all_types(
264     generics: &Generics,
265     decl: &FnDecl,
266     cx: &DocContext<'_>,
267 ) -> (Vec<(Type, TypeKind)>, Vec<(Type, TypeKind)>) {
268     let mut all_types = FxHashSet::default();
269     for arg in decl.inputs.values.iter() {
270         if arg.type_.is_self_type() {
271             continue;
272         }
273         let args = get_real_types(generics, &arg.type_, cx, 0);
274         if !args.is_empty() {
275             all_types.extend(args);
276         } else {
277             if let Some(kind) = arg.type_.def_id().map(|did| cx.tcx.def_kind(did).clean(cx)) {
278                 all_types.insert((arg.type_.clone(), kind));
279             }
280         }
281     }
282
283     let ret_types = match decl.output {
284         FnRetTy::Return(ref return_type) => {
285             let mut ret = get_real_types(generics, &return_type, cx, 0);
286             if ret.is_empty() {
287                 if let Some(kind) = return_type.def_id().map(|did| cx.tcx.def_kind(did).clean(cx)) {
288                     ret.insert((return_type.clone(), kind));
289                 }
290             }
291             ret.into_iter().collect()
292         }
293         _ => Vec::new(),
294     };
295     (all_types.into_iter().collect(), ret_types)
296 }
297
298 pub fn strip_type(ty: Type) -> Type {
299     match ty {
300         Type::ResolvedPath { path, param_names, did, is_generic } => {
301             Type::ResolvedPath { path: strip_path(&path), param_names, did, is_generic }
302         }
303         Type::Tuple(inner_tys) => {
304             Type::Tuple(inner_tys.iter().map(|t| strip_type(t.clone())).collect())
305         }
306         Type::Slice(inner_ty) => Type::Slice(Box::new(strip_type(*inner_ty))),
307         Type::Array(inner_ty, s) => Type::Array(Box::new(strip_type(*inner_ty)), s),
308         Type::RawPointer(m, inner_ty) => Type::RawPointer(m, Box::new(strip_type(*inner_ty))),
309         Type::BorrowedRef { lifetime, mutability, type_ } => {
310             Type::BorrowedRef { lifetime, mutability, type_: Box::new(strip_type(*type_)) }
311         }
312         Type::QPath { name, self_type, trait_ } => Type::QPath {
313             name,
314             self_type: Box::new(strip_type(*self_type)),
315             trait_: Box::new(strip_type(*trait_)),
316         },
317         _ => ty,
318     }
319 }
320
321 pub fn strip_path(path: &Path) -> Path {
322     let segments = path
323         .segments
324         .iter()
325         .map(|s| PathSegment {
326             name: s.name.clone(),
327             args: GenericArgs::AngleBracketed { args: vec![], bindings: vec![] },
328         })
329         .collect();
330
331     Path { global: path.global, res: path.res, segments }
332 }
333
334 pub fn qpath_to_string(p: &hir::QPath<'_>) -> String {
335     let segments = match *p {
336         hir::QPath::Resolved(_, ref path) => &path.segments,
337         hir::QPath::TypeRelative(_, ref segment) => return segment.ident.to_string(),
338     };
339
340     let mut s = String::new();
341     for (i, seg) in segments.iter().enumerate() {
342         if i > 0 {
343             s.push_str("::");
344         }
345         if seg.ident.name != kw::PathRoot {
346             s.push_str(&seg.ident.as_str());
347         }
348     }
349     s
350 }
351
352 pub fn build_deref_target_impls(cx: &DocContext<'_>, items: &[Item], ret: &mut Vec<Item>) {
353     use self::PrimitiveType::*;
354     let tcx = cx.tcx;
355
356     for item in items {
357         let target = match item.inner {
358             ItemEnum::TypedefItem(ref t, true) => &t.type_,
359             _ => continue,
360         };
361         let primitive = match *target {
362             ResolvedPath { did, .. } if did.is_local() => continue,
363             ResolvedPath { did, .. } => {
364                 ret.extend(inline::build_impls(cx, did, None));
365                 continue;
366             }
367             _ => match target.primitive_type() {
368                 Some(prim) => prim,
369                 None => continue,
370             },
371         };
372         let did = match primitive {
373             Isize => tcx.lang_items().isize_impl(),
374             I8 => tcx.lang_items().i8_impl(),
375             I16 => tcx.lang_items().i16_impl(),
376             I32 => tcx.lang_items().i32_impl(),
377             I64 => tcx.lang_items().i64_impl(),
378             I128 => tcx.lang_items().i128_impl(),
379             Usize => tcx.lang_items().usize_impl(),
380             U8 => tcx.lang_items().u8_impl(),
381             U16 => tcx.lang_items().u16_impl(),
382             U32 => tcx.lang_items().u32_impl(),
383             U64 => tcx.lang_items().u64_impl(),
384             U128 => tcx.lang_items().u128_impl(),
385             F32 => tcx.lang_items().f32_impl(),
386             F64 => tcx.lang_items().f64_impl(),
387             Char => tcx.lang_items().char_impl(),
388             Bool => tcx.lang_items().bool_impl(),
389             Str => tcx.lang_items().str_impl(),
390             Slice => tcx.lang_items().slice_impl(),
391             Array => tcx.lang_items().slice_impl(),
392             Tuple => None,
393             Unit => None,
394             RawPointer => tcx.lang_items().const_ptr_impl(),
395             Reference => None,
396             Fn => None,
397             Never => None,
398         };
399         if let Some(did) = did {
400             if !did.is_local() {
401                 inline::build_impl(cx, did, None, ret);
402             }
403         }
404     }
405 }
406
407 pub trait ToSource {
408     fn to_src(&self, cx: &DocContext<'_>) -> String;
409 }
410
411 impl ToSource for rustc_span::Span {
412     fn to_src(&self, cx: &DocContext<'_>) -> String {
413         debug!("converting span {:?} to snippet", self.clean(cx));
414         let sn = match cx.sess().source_map().span_to_snippet(*self) {
415             Ok(x) => x,
416             Err(_) => String::new(),
417         };
418         debug!("got snippet {}", sn);
419         sn
420     }
421 }
422
423 pub fn name_from_pat(p: &hir::Pat<'_>) -> String {
424     use rustc_hir::*;
425     debug!("trying to get a name from pattern: {:?}", p);
426
427     match p.kind {
428         PatKind::Wild => "_".to_string(),
429         PatKind::Binding(_, _, ident, _) => ident.to_string(),
430         PatKind::TupleStruct(ref p, ..) | PatKind::Path(ref p) => qpath_to_string(p),
431         PatKind::Struct(ref name, ref fields, etc) => format!(
432             "{} {{ {}{} }}",
433             qpath_to_string(name),
434             fields
435                 .iter()
436                 .map(|fp| format!("{}: {}", fp.ident, name_from_pat(&fp.pat)))
437                 .collect::<Vec<String>>()
438                 .join(", "),
439             if etc { ", .." } else { "" }
440         ),
441         PatKind::Or(ref pats) => {
442             pats.iter().map(|p| name_from_pat(&**p)).collect::<Vec<String>>().join(" | ")
443         }
444         PatKind::Tuple(ref elts, _) => format!(
445             "({})",
446             elts.iter().map(|p| name_from_pat(&**p)).collect::<Vec<String>>().join(", ")
447         ),
448         PatKind::Box(ref p) => name_from_pat(&**p),
449         PatKind::Ref(ref p, _) => name_from_pat(&**p),
450         PatKind::Lit(..) => {
451             warn!(
452                 "tried to get argument name from PatKind::Lit, \
453                   which is silly in function arguments"
454             );
455             "()".to_string()
456         }
457         PatKind::Range(..) => panic!(
458             "tried to get argument name from PatKind::Range, \
459                               which is not allowed in function arguments"
460         ),
461         PatKind::Slice(ref begin, ref mid, ref end) => {
462             let begin = begin.iter().map(|p| name_from_pat(&**p));
463             let mid = mid.as_ref().map(|p| format!("..{}", name_from_pat(&**p))).into_iter();
464             let end = end.iter().map(|p| name_from_pat(&**p));
465             format!("[{}]", begin.chain(mid).chain(end).collect::<Vec<_>>().join(", "))
466         }
467     }
468 }
469
470 pub fn print_const(cx: &DocContext<'_>, n: &'tcx ty::Const<'_>) -> String {
471     match n.val {
472         ty::ConstKind::Unevaluated(def, _, promoted) => {
473             let mut s = if let Some(def) = def.as_local() {
474                 let hir_id = cx.tcx.hir().as_local_hir_id(def.did);
475                 print_const_expr(cx, cx.tcx.hir().body_owned_by(hir_id))
476             } else {
477                 inline::print_inlined_const(cx, def.did)
478             };
479             if let Some(promoted) = promoted {
480                 s.push_str(&format!("::{:?}", promoted))
481             }
482             s
483         }
484         _ => {
485             let mut s = n.to_string();
486             // array lengths are obviously usize
487             if s.ends_with("_usize") {
488                 let n = s.len() - "_usize".len();
489                 s.truncate(n);
490                 if s.ends_with(": ") {
491                     let n = s.len() - ": ".len();
492                     s.truncate(n);
493                 }
494             }
495             s
496         }
497     }
498 }
499
500 pub fn print_evaluated_const(cx: &DocContext<'_>, def_id: DefId) -> Option<String> {
501     cx.tcx.const_eval_poly(def_id).ok().and_then(|val| {
502         let ty = cx.tcx.type_of(def_id);
503         match (val, &ty.kind) {
504             (_, &ty::Ref(..)) => None,
505             (ConstValue::Scalar(_), &ty::Adt(_, _)) => None,
506             (ConstValue::Scalar(_), _) => {
507                 let const_ = ty::Const::from_value(cx.tcx, val, ty);
508                 Some(print_const_with_custom_print_scalar(cx, const_))
509             }
510             _ => None,
511         }
512     })
513 }
514
515 fn format_integer_with_underscore_sep(num: &str) -> String {
516     let num_chars: Vec<_> = num.chars().collect();
517     let num_start_index = if num_chars.get(0) == Some(&'-') { 1 } else { 0 };
518
519     num_chars[..num_start_index]
520         .iter()
521         .chain(num_chars[num_start_index..].rchunks(3).rev().intersperse(&['_']).flatten())
522         .collect()
523 }
524
525 fn print_const_with_custom_print_scalar(cx: &DocContext<'_>, ct: &'tcx ty::Const<'tcx>) -> String {
526     // Use a slightly different format for integer types which always shows the actual value.
527     // For all other types, fallback to the original `pretty_print_const`.
528     match (ct.val, &ct.ty.kind) {
529         (ty::ConstKind::Value(ConstValue::Scalar(Scalar::Raw { data, .. })), ty::Uint(ui)) => {
530             format!("{}{}", format_integer_with_underscore_sep(&data.to_string()), ui.name_str())
531         }
532         (ty::ConstKind::Value(ConstValue::Scalar(Scalar::Raw { data, .. })), ty::Int(i)) => {
533             let ty = cx.tcx.lift(&ct.ty).unwrap();
534             let size = cx.tcx.layout_of(ty::ParamEnv::empty().and(ty)).unwrap().size;
535             let sign_extended_data = sign_extend(data, size) as i128;
536
537             format!(
538                 "{}{}",
539                 format_integer_with_underscore_sep(&sign_extended_data.to_string()),
540                 i.name_str()
541             )
542         }
543         _ => ct.to_string(),
544     }
545 }
546
547 pub fn is_literal_expr(cx: &DocContext<'_>, hir_id: hir::HirId) -> bool {
548     if let hir::Node::Expr(expr) = cx.tcx.hir().get(hir_id) {
549         if let hir::ExprKind::Lit(_) = &expr.kind {
550             return true;
551         }
552
553         if let hir::ExprKind::Unary(hir::UnOp::UnNeg, expr) = &expr.kind {
554             if let hir::ExprKind::Lit(_) = &expr.kind {
555                 return true;
556             }
557         }
558     }
559
560     false
561 }
562
563 pub fn print_const_expr(cx: &DocContext<'_>, body: hir::BodyId) -> String {
564     let value = &cx.tcx.hir().body(body).value;
565
566     let snippet = if !value.span.from_expansion() {
567         cx.sess().source_map().span_to_snippet(value.span).ok()
568     } else {
569         None
570     };
571
572     snippet.unwrap_or_else(|| rustc_hir_pretty::id_to_string(&cx.tcx.hir(), body.hir_id))
573 }
574
575 /// Given a type Path, resolve it to a Type using the TyCtxt
576 pub fn resolve_type(cx: &DocContext<'_>, path: Path, id: hir::HirId) -> Type {
577     debug!("resolve_type({:?},{:?})", path, id);
578
579     let is_generic = match path.res {
580         Res::PrimTy(p) => return Primitive(PrimitiveType::from(p)),
581         Res::SelfTy(..) if path.segments.len() == 1 => {
582             return Generic(kw::SelfUpper.to_string());
583         }
584         Res::Def(DefKind::TyParam, _) if path.segments.len() == 1 => {
585             return Generic(format!("{:#}", path.print()));
586         }
587         Res::SelfTy(..) | Res::Def(DefKind::TyParam | DefKind::AssocTy, _) => true,
588         _ => false,
589     };
590     let did = register_res(&*cx, path.res);
591     ResolvedPath { path, param_names: None, did, is_generic }
592 }
593
594 pub fn get_auto_trait_and_blanket_impls(
595     cx: &DocContext<'tcx>,
596     ty: Ty<'tcx>,
597     param_env_def_id: DefId,
598 ) -> impl Iterator<Item = Item> {
599     AutoTraitFinder::new(cx)
600         .get_auto_trait_impls(ty, param_env_def_id)
601         .into_iter()
602         .chain(BlanketImplFinder::new(cx).get_blanket_impls(ty, param_env_def_id))
603 }
604
605 pub fn register_res(cx: &DocContext<'_>, res: Res) -> DefId {
606     debug!("register_res({:?})", res);
607
608     let (did, kind) = match res {
609         Res::Def(DefKind::Fn, i) => (i, TypeKind::Function),
610         Res::Def(DefKind::TyAlias, i) => (i, TypeKind::Typedef),
611         Res::Def(DefKind::Enum, i) => (i, TypeKind::Enum),
612         Res::Def(DefKind::Trait, i) => (i, TypeKind::Trait),
613         Res::Def(DefKind::AssocTy | DefKind::AssocFn | DefKind::AssocConst, i) => {
614             (cx.tcx.parent(i).unwrap(), TypeKind::Trait)
615         }
616         Res::Def(DefKind::Struct, i) => (i, TypeKind::Struct),
617         Res::Def(DefKind::Union, i) => (i, TypeKind::Union),
618         Res::Def(DefKind::Mod, i) => (i, TypeKind::Module),
619         Res::Def(DefKind::ForeignTy, i) => (i, TypeKind::Foreign),
620         Res::Def(DefKind::Const, i) => (i, TypeKind::Const),
621         Res::Def(DefKind::Static, i) => (i, TypeKind::Static),
622         Res::Def(DefKind::Variant, i) => {
623             (cx.tcx.parent(i).expect("cannot get parent def id"), TypeKind::Enum)
624         }
625         Res::Def(DefKind::Macro(mac_kind), i) => match mac_kind {
626             MacroKind::Bang => (i, TypeKind::Macro),
627             MacroKind::Attr => (i, TypeKind::Attr),
628             MacroKind::Derive => (i, TypeKind::Derive),
629         },
630         Res::Def(DefKind::TraitAlias, i) => (i, TypeKind::TraitAlias),
631         Res::SelfTy(Some(def_id), _) => (def_id, TypeKind::Trait),
632         Res::SelfTy(_, Some(impl_def_id)) => return impl_def_id,
633         _ => return res.def_id(),
634     };
635     if did.is_local() {
636         return did;
637     }
638     inline::record_extern_fqn(cx, did, kind);
639     if let TypeKind::Trait = kind {
640         inline::record_extern_trait(cx, did);
641     }
642     did
643 }
644
645 pub fn resolve_use_source(cx: &DocContext<'_>, path: Path) -> ImportSource {
646     ImportSource {
647         did: if path.res.opt_def_id().is_none() { None } else { Some(register_res(cx, path.res)) },
648         path,
649     }
650 }
651
652 pub fn enter_impl_trait<F, R>(cx: &DocContext<'_>, f: F) -> R
653 where
654     F: FnOnce() -> R,
655 {
656     let old_bounds = mem::take(&mut *cx.impl_trait_bounds.borrow_mut());
657     let r = f();
658     assert!(cx.impl_trait_bounds.borrow().is_empty());
659     *cx.impl_trait_bounds.borrow_mut() = old_bounds;
660     r
661 }