@@ -96,29 +96,27 @@ pub struct CStore {
96
96
impl CStore {
97
97
pub fn new ( metadata_loader : Box < MetadataLoader + Sync > ) -> CStore {
98
98
CStore {
99
- metas : RwLock :: new ( IndexVec :: new ( ) ) ,
99
+ metas : RwLock :: new ( IndexVec :: from_elem_n ( None , 1 ) ) ,
100
100
extern_mod_crate_map : Lock :: new ( FxHashMap ( ) ) ,
101
101
metadata_loader,
102
102
}
103
103
}
104
104
105
- /// You cannot use this function to allocate a CrateNum in a thread-safe manner.
106
- /// It is currently only used in CrateLoader which is single-threaded code.
107
- pub ( super ) fn next_crate_num ( & self ) -> CrateNum {
108
- CrateNum :: new ( self . metas . borrow ( ) . len ( ) + 1 )
105
+ pub ( super ) fn alloc_new_crate_num ( & self ) -> CrateNum {
106
+ let mut metas = self . metas . borrow_mut ( ) ;
107
+ let cnum = CrateNum :: new ( metas. len ( ) ) ;
108
+ metas. push ( None ) ;
109
+ cnum
109
110
}
110
111
111
112
pub ( super ) fn get_crate_data ( & self , cnum : CrateNum ) -> Lrc < CrateMetadata > {
112
113
self . metas . borrow ( ) [ cnum] . clone ( ) . unwrap ( )
113
114
}
114
115
115
116
pub ( super ) fn set_crate_data ( & self , cnum : CrateNum , data : Lrc < CrateMetadata > ) {
116
- use rustc_data_structures:: indexed_vec:: Idx ;
117
- let mut met = self . metas . borrow_mut ( ) ;
118
- while met. len ( ) <= cnum. index ( ) {
119
- met. push ( None ) ;
120
- }
121
- met[ cnum] = Some ( data) ;
117
+ let mut metas = self . metas . borrow_mut ( ) ;
118
+ assert ! ( metas[ cnum] . is_none( ) , "Overwriting crate metadata entry" ) ;
119
+ metas[ cnum] = Some ( data) ;
122
120
}
123
121
124
122
pub ( super ) fn iter_crate_data < I > ( & self , mut i : I )
0 commit comments