@@ -865,20 +865,6 @@ fn encode_inherent_implementations(ecx: &EncodeContext,
865
865
}
866
866
}
867
867
868
- // Encodes the implementations of a trait defined in this crate.
869
- fn encode_extension_implementations ( ecx : & EncodeContext ,
870
- rbml_w : & mut Encoder ,
871
- trait_def_id : DefId ) {
872
- assert ! ( trait_def_id. is_local( ) ) ;
873
- let def = ecx. tcx . lookup_trait_def ( trait_def_id) ;
874
-
875
- def. for_each_impl ( ecx. tcx , |impl_def_id| {
876
- rbml_w. start_tag ( tag_items_data_item_extension_impl) ;
877
- encode_def_id ( rbml_w, impl_def_id) ;
878
- rbml_w. end_tag ( ) ;
879
- } ) ;
880
- }
881
-
882
868
fn encode_stability ( rbml_w : & mut Encoder , stab_opt : Option < & attr:: Stability > ) {
883
869
stab_opt. map ( |stab| {
884
870
rbml_w. start_tag ( tag_items_data_item_stability) ;
@@ -1256,9 +1242,6 @@ fn encode_info_for_item<'a, 'tcx>(ecx: &EncodeContext<'a, 'tcx>,
1256
1242
}
1257
1243
encode_path ( rbml_w, path. clone ( ) ) ;
1258
1244
1259
- // Encode the implementations of this trait.
1260
- encode_extension_implementations ( ecx, rbml_w, def_id) ;
1261
-
1262
1245
// Encode inherent implementations for this trait.
1263
1246
encode_inherent_implementations ( ecx, rbml_w, def_id) ;
1264
1247
@@ -1763,53 +1746,44 @@ fn encode_struct_field_attrs(ecx: &EncodeContext,
1763
1746
1764
1747
1765
1748
1766
- struct ImplVisitor < ' a , ' b : ' a , ' c : ' a , ' tcx : ' b > {
1767
- ecx : & ' a EncodeContext < ' b , ' tcx > ,
1768
- rbml_w : & ' a mut Encoder < ' c > ,
1749
+ struct ImplVisitor < ' a , ' tcx : ' a > {
1750
+ tcx : & ' a ty :: ctxt < ' tcx > ,
1751
+ impls : FnvHashMap < DefId , Vec < DefId > >
1769
1752
}
1770
1753
1771
- impl < ' a , ' b , ' c , ' tcx , ' v > Visitor < ' v > for ImplVisitor < ' a , ' b , ' c , ' tcx > {
1754
+ impl < ' a , ' tcx , ' v > Visitor < ' v > for ImplVisitor < ' a , ' tcx > {
1772
1755
fn visit_item ( & mut self , item : & hir:: Item ) {
1773
- if let hir:: ItemImpl ( _, _, _, Some ( ref trait_ref) , _, _) = item. node {
1774
- let def_id = self . ecx . tcx . def_map . borrow ( ) . get ( & trait_ref. ref_id ) . unwrap ( ) . def_id ( ) ;
1775
-
1776
- // Load eagerly if this is an implementation of the Drop trait
1777
- // or if the trait is not defined in this crate.
1778
- if Some ( def_id) == self . ecx . tcx . lang_items . drop_trait ( ) ||
1779
- def_id. krate != LOCAL_CRATE {
1780
- self . rbml_w . start_tag ( tag_impls_impl) ;
1781
- encode_def_id ( self . rbml_w , self . ecx . tcx . map . local_def_id ( item. id ) ) ;
1782
- self . rbml_w . wr_tagged_u64 ( tag_impls_impl_trait_def_id, def_to_u64 ( def_id) ) ;
1783
- self . rbml_w . end_tag ( ) ;
1756
+ if let hir:: ItemImpl ( ..) = item. node {
1757
+ let impl_id = self . tcx . map . local_def_id ( item. id ) ;
1758
+ if let Some ( trait_ref) = self . tcx . impl_trait_ref ( impl_id) {
1759
+ self . impls . entry ( trait_ref. def_id )
1760
+ . or_insert ( vec ! [ ] )
1761
+ . push ( impl_id) ;
1784
1762
}
1785
1763
}
1786
1764
visit:: walk_item ( self , item) ;
1787
1765
}
1788
1766
}
1789
1767
1790
- /// Encodes implementations that are eagerly loaded.
1791
- ///
1792
- /// None of this is necessary in theory; we can load all implementations
1793
- /// lazily. However, in two cases the optimizations to lazily load
1794
- /// implementations are not yet implemented. These two cases, which require us
1795
- /// to load implementations eagerly, are:
1796
- ///
1797
- /// * Destructors (implementations of the Drop trait).
1798
- ///
1799
- /// * Implementations of traits not defined in this crate.
1768
+ /// Encodes an index, mapping each trait to its (local) implementations.
1800
1769
fn encode_impls < ' a > ( ecx : & ' a EncodeContext ,
1801
1770
krate : & hir:: Crate ,
1802
1771
rbml_w : & ' a mut Encoder ) {
1803
- rbml_w. start_tag ( tag_impls) ;
1772
+ let mut visitor = ImplVisitor {
1773
+ tcx : ecx. tcx ,
1774
+ impls : FnvHashMap ( )
1775
+ } ;
1776
+ visit:: walk_crate ( & mut visitor, krate) ;
1804
1777
1805
- {
1806
- let mut visitor = ImplVisitor {
1807
- ecx : ecx,
1808
- rbml_w : rbml_w,
1809
- } ;
1810
- visit:: walk_crate ( & mut visitor, krate) ;
1778
+ rbml_w. start_tag ( tag_impls) ;
1779
+ for ( trait_, trait_impls) in visitor. impls {
1780
+ rbml_w. start_tag ( tag_impls_trait) ;
1781
+ encode_def_id ( rbml_w, trait_) ;
1782
+ for impl_ in trait_impls {
1783
+ rbml_w. wr_tagged_u64 ( tag_impls_trait_impl, def_to_u64 ( impl_) ) ;
1784
+ }
1785
+ rbml_w. end_tag ( ) ;
1811
1786
}
1812
-
1813
1787
rbml_w. end_tag ( ) ;
1814
1788
}
1815
1789
0 commit comments