@@ -811,7 +811,7 @@ fn analyze_attr(attr: &Attribute, state: &mut AnalyzeAttrState) -> bool {
811
811
should_encode
812
812
}
813
813
814
- fn should_encode_visibility ( def_kind : DefKind ) -> bool {
814
+ fn should_encode_span ( def_kind : DefKind ) -> bool {
815
815
match def_kind {
816
816
DefKind :: Mod
817
817
| DefKind :: Struct
@@ -823,25 +823,136 @@ fn should_encode_visibility(def_kind: DefKind) -> bool {
823
823
| DefKind :: ForeignTy
824
824
| DefKind :: TraitAlias
825
825
| DefKind :: AssocTy
826
+ | DefKind :: TyParam
826
827
| DefKind :: Fn
827
828
| DefKind :: Const
828
- | DefKind :: Static ( .. )
829
+ | DefKind :: Static ( _ )
829
830
| DefKind :: Ctor ( ..)
830
831
| DefKind :: AssocFn
831
832
| DefKind :: AssocConst
832
- | DefKind :: Macro ( ..)
833
+ | DefKind :: Macro ( _)
834
+ | DefKind :: AnonConst
835
+ | DefKind :: InlineConst
836
+ | DefKind :: OpaqueTy
837
+ | DefKind :: Field
838
+ | DefKind :: Impl { .. }
839
+ | DefKind :: Closure
840
+ | DefKind :: Generator => true ,
841
+ DefKind :: ConstParam
842
+ | DefKind :: ExternCrate
833
843
| DefKind :: Use
834
844
| DefKind :: ForeignMod
845
+ | DefKind :: ImplTraitPlaceholder
846
+ | DefKind :: LifetimeParam
847
+ | DefKind :: GlobalAsm => false ,
848
+ }
849
+ }
850
+
851
+ fn should_encode_attrs ( def_kind : DefKind ) -> bool {
852
+ match def_kind {
853
+ DefKind :: Mod
854
+ | DefKind :: Struct
855
+ | DefKind :: Union
856
+ | DefKind :: Enum
857
+ | DefKind :: Variant
858
+ | DefKind :: Trait
859
+ | DefKind :: TyAlias
860
+ | DefKind :: ForeignTy
861
+ | DefKind :: TraitAlias
862
+ | DefKind :: AssocTy
863
+ | DefKind :: Fn
864
+ | DefKind :: Const
865
+ | DefKind :: Static ( _)
866
+ | DefKind :: AssocFn
867
+ | DefKind :: AssocConst
868
+ | DefKind :: Macro ( _)
869
+ | DefKind :: Field
870
+ | DefKind :: Impl { .. } => true ,
871
+ DefKind :: TyParam
872
+ | DefKind :: ConstParam
873
+ | DefKind :: Ctor ( ..)
874
+ | DefKind :: ExternCrate
875
+ | DefKind :: Use
876
+ | DefKind :: ForeignMod
877
+ | DefKind :: AnonConst
878
+ | DefKind :: InlineConst
835
879
| DefKind :: OpaqueTy
836
880
| DefKind :: ImplTraitPlaceholder
837
- | DefKind :: Impl { .. }
881
+ | DefKind :: LifetimeParam
882
+ | DefKind :: GlobalAsm
883
+ | DefKind :: Closure
884
+ | DefKind :: Generator => false ,
885
+ }
886
+ }
887
+
888
+ fn should_encode_expn_that_defined ( def_kind : DefKind ) -> bool {
889
+ match def_kind {
890
+ DefKind :: Mod
891
+ | DefKind :: Struct
892
+ | DefKind :: Union
893
+ | DefKind :: Enum
894
+ | DefKind :: Variant
895
+ | DefKind :: Trait
896
+ | DefKind :: Impl { .. } => true ,
897
+ DefKind :: TyAlias
898
+ | DefKind :: ForeignTy
899
+ | DefKind :: TraitAlias
900
+ | DefKind :: AssocTy
901
+ | DefKind :: TyParam
902
+ | DefKind :: Fn
903
+ | DefKind :: Const
904
+ | DefKind :: ConstParam
905
+ | DefKind :: Static ( _)
906
+ | DefKind :: Ctor ( ..)
907
+ | DefKind :: AssocFn
908
+ | DefKind :: AssocConst
909
+ | DefKind :: Macro ( _)
910
+ | DefKind :: ExternCrate
911
+ | DefKind :: Use
912
+ | DefKind :: ForeignMod
913
+ | DefKind :: AnonConst
914
+ | DefKind :: InlineConst
915
+ | DefKind :: OpaqueTy
916
+ | DefKind :: ImplTraitPlaceholder
917
+ | DefKind :: Field
918
+ | DefKind :: LifetimeParam
919
+ | DefKind :: GlobalAsm
920
+ | DefKind :: Closure
921
+ | DefKind :: Generator => false ,
922
+ }
923
+ }
924
+
925
+ fn should_encode_visibility ( def_kind : DefKind ) -> bool {
926
+ match def_kind {
927
+ DefKind :: Mod
928
+ | DefKind :: Struct
929
+ | DefKind :: Union
930
+ | DefKind :: Enum
931
+ | DefKind :: Variant
932
+ | DefKind :: Trait
933
+ | DefKind :: TyAlias
934
+ | DefKind :: ForeignTy
935
+ | DefKind :: TraitAlias
936
+ | DefKind :: AssocTy
937
+ | DefKind :: Fn
938
+ | DefKind :: Const
939
+ | DefKind :: Static ( ..)
940
+ | DefKind :: Ctor ( ..)
941
+ | DefKind :: AssocFn
942
+ | DefKind :: AssocConst
943
+ | DefKind :: Macro ( ..)
838
944
| DefKind :: Field => true ,
839
- DefKind :: TyParam
945
+ DefKind :: Use
946
+ | DefKind :: ForeignMod
947
+ | DefKind :: TyParam
840
948
| DefKind :: ConstParam
841
949
| DefKind :: LifetimeParam
842
950
| DefKind :: AnonConst
843
951
| DefKind :: InlineConst
952
+ | DefKind :: OpaqueTy
953
+ | DefKind :: ImplTraitPlaceholder
844
954
| DefKind :: GlobalAsm
955
+ | DefKind :: Impl { .. }
845
956
| DefKind :: Closure
846
957
| DefKind :: Generator
847
958
| DefKind :: ExternCrate => false ,
@@ -1160,11 +1271,17 @@ impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
1160
1271
let def_kind = tcx. opt_def_kind ( local_id) ;
1161
1272
let Some ( def_kind) = def_kind else { continue } ;
1162
1273
self . tables . opt_def_kind . set_some ( def_id. index , def_kind) ;
1163
- let def_span = tcx. def_span ( local_id) ;
1164
- record ! ( self . tables. def_span[ def_id] <- def_span) ;
1165
- self . encode_attrs ( local_id) ;
1166
- record ! ( self . tables. expn_that_defined[ def_id] <- self . tcx. expn_that_defined( def_id) ) ;
1167
- if let Some ( ident_span) = tcx. def_ident_span ( def_id) {
1274
+ if should_encode_span ( def_kind) {
1275
+ let def_span = tcx. def_span ( local_id) ;
1276
+ record ! ( self . tables. def_span[ def_id] <- def_span) ;
1277
+ }
1278
+ if should_encode_attrs ( def_kind) {
1279
+ self . encode_attrs ( local_id) ;
1280
+ }
1281
+ if should_encode_expn_that_defined ( def_kind) {
1282
+ record ! ( self . tables. expn_that_defined[ def_id] <- self . tcx. expn_that_defined( def_id) ) ;
1283
+ }
1284
+ if should_encode_span ( def_kind) && let Some ( ident_span) = tcx. def_ident_span ( def_id) {
1168
1285
record ! ( self . tables. def_ident_span[ def_id] <- ident_span) ;
1169
1286
}
1170
1287
if def_kind. has_codegen_attrs ( ) {
0 commit comments