@@ -3,7 +3,6 @@ use crate::rmeta::def_path_hash_map::DefPathHashMapRef;
3
3
use crate :: rmeta:: table:: TableBuilder ;
4
4
use crate :: rmeta:: * ;
5
5
6
- use rustc_ast:: util:: comments;
7
6
use rustc_ast:: Attribute ;
8
7
use rustc_data_structures:: fingerprint:: Fingerprint ;
9
8
use rustc_data_structures:: fx:: { FxHashMap , FxIndexSet } ;
@@ -772,7 +771,6 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
772
771
773
772
struct AnalyzeAttrState {
774
773
is_exported : bool ,
775
- may_have_doc_links : bool ,
776
774
is_doc_hidden : bool ,
777
775
}
778
776
@@ -790,15 +788,12 @@ fn analyze_attr(attr: &Attribute, state: &mut AnalyzeAttrState) -> bool {
790
788
let mut should_encode = false ;
791
789
if rustc_feature:: is_builtin_only_local ( attr. name_or_empty ( ) ) {
792
790
// Attributes marked local-only don't need to be encoded for downstream crates.
793
- } else if let Some ( s ) = attr. doc_str ( ) {
791
+ } else if attr. doc_str ( ) . is_some ( ) {
794
792
// We keep all doc comments reachable to rustdoc because they might be "imported" into
795
793
// downstream crates if they use `#[doc(inline)]` to copy an item's documentation into
796
794
// their own.
797
795
if state. is_exported {
798
796
should_encode = true ;
799
- if comments:: may_have_doc_links ( s. as_str ( ) ) {
800
- state. may_have_doc_links = true ;
801
- }
802
797
}
803
798
} else if attr. has_name ( sym:: doc) {
804
799
// If this is a `doc` attribute that doesn't have anything except maybe `inline` (as in
@@ -1139,7 +1134,6 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
1139
1134
let tcx = self . tcx ;
1140
1135
let mut state = AnalyzeAttrState {
1141
1136
is_exported : tcx. effective_visibilities ( ( ) ) . is_exported ( def_id) ,
1142
- may_have_doc_links : false ,
1143
1137
is_doc_hidden : false ,
1144
1138
} ;
1145
1139
let attr_iter = tcx
@@ -1151,9 +1145,6 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
1151
1145
record_array ! ( self . tables. attributes[ def_id. to_def_id( ) ] <- attr_iter) ;
1152
1146
1153
1147
let mut attr_flags = AttrFlags :: empty ( ) ;
1154
- if state. may_have_doc_links {
1155
- attr_flags |= AttrFlags :: MAY_HAVE_DOC_LINKS ;
1156
- }
1157
1148
if state. is_doc_hidden {
1158
1149
attr_flags |= AttrFlags :: IS_DOC_HIDDEN ;
1159
1150
}
@@ -1231,6 +1222,14 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
1231
1222
def_id. index
1232
1223
} ) ) ;
1233
1224
}
1225
+
1226
+ for ( def_id, res_map) in & tcx. resolutions ( ( ) ) . doc_link_resolutions {
1227
+ record ! ( self . tables. doc_link_resolutions[ def_id. to_def_id( ) ] <- res_map) ;
1228
+ }
1229
+
1230
+ for ( def_id, traits) in & tcx. resolutions ( ( ) ) . doc_link_traits_in_scope {
1231
+ record_array ! ( self . tables. doc_link_traits_in_scope[ def_id. to_def_id( ) ] <- traits) ;
1232
+ }
1234
1233
}
1235
1234
1236
1235
#[ instrument( level = "trace" , skip( self ) ) ]
@@ -1715,6 +1714,12 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
1715
1714
record ! ( self . tables. lookup_stability[ LOCAL_CRATE . as_def_id( ) ] <- stability) ;
1716
1715
}
1717
1716
self . encode_deprecation ( LOCAL_CRATE . as_def_id ( ) ) ;
1717
+ if let Some ( res_map) = tcx. resolutions ( ( ) ) . doc_link_resolutions . get ( & CRATE_DEF_ID ) {
1718
+ record ! ( self . tables. doc_link_resolutions[ LOCAL_CRATE . as_def_id( ) ] <- res_map) ;
1719
+ }
1720
+ if let Some ( traits) = tcx. resolutions ( ( ) ) . doc_link_traits_in_scope . get ( & CRATE_DEF_ID ) {
1721
+ record_array ! ( self . tables. doc_link_traits_in_scope[ LOCAL_CRATE . as_def_id( ) ] <- traits) ;
1722
+ }
1718
1723
1719
1724
// Normally, this information is encoded when we walk the items
1720
1725
// defined in this crate. However, we skip doing that for proc-macro crates,
@@ -2225,6 +2230,18 @@ fn encode_metadata_impl(tcx: TyCtxt<'_>, path: &Path) {
2225
2230
2226
2231
pub fn provide ( providers : & mut Providers ) {
2227
2232
* providers = Providers {
2233
+ doc_link_resolutions : |tcx, def_id| {
2234
+ tcx. resolutions ( ( ) )
2235
+ . doc_link_resolutions
2236
+ . get ( & def_id. expect_local ( ) )
2237
+ . expect ( "no resolutions for a doc link" )
2238
+ } ,
2239
+ doc_link_traits_in_scope : |tcx, def_id| {
2240
+ tcx. resolutions ( ( ) )
2241
+ . doc_link_traits_in_scope
2242
+ . get ( & def_id. expect_local ( ) )
2243
+ . expect ( "no traits in scope for a doc link" )
2244
+ } ,
2228
2245
traits_in_crate : |tcx, cnum| {
2229
2246
assert_eq ! ( cnum, LOCAL_CRATE ) ;
2230
2247
0 commit comments