@@ -132,9 +132,6 @@ pub struct SemanticsImpl<'db> {
132
132
s2d_cache : RefCell < SourceToDefCache > ,
133
133
/// Rootnode to HirFileId cache
134
134
root_to_file_cache : RefCell < FxHashMap < SyntaxNode , HirFileId > > ,
135
- /// HirFileId to Rootnode cache (this adds a layer over the database LRU cache to prevent
136
- /// possibly frequent invalidation)
137
- parse_cache : RefCell < FxHashMap < HirFileId , SyntaxNode > > ,
138
135
/// MacroCall to its expansion's MacroFileId cache
139
136
macro_call_cache : RefCell < FxHashMap < InFile < ast:: MacroCall > , MacroFileId > > ,
140
137
}
@@ -295,7 +292,6 @@ impl<'db> SemanticsImpl<'db> {
295
292
db,
296
293
s2d_cache : Default :: default ( ) ,
297
294
root_to_file_cache : Default :: default ( ) ,
298
- parse_cache : Default :: default ( ) ,
299
295
macro_call_cache : Default :: default ( ) ,
300
296
}
301
297
}
@@ -307,9 +303,6 @@ impl<'db> SemanticsImpl<'db> {
307
303
}
308
304
309
305
pub fn parse_or_expand ( & self , file_id : HirFileId ) -> SyntaxNode {
310
- if let Some ( root) = self . parse_cache . borrow ( ) . get ( & file_id) {
311
- return root. clone ( ) ;
312
- }
313
306
let node = self . db . parse_or_expand ( file_id) ;
314
307
self . cache ( node. clone ( ) , file_id) ;
315
308
node
@@ -1490,9 +1483,8 @@ impl<'db> SemanticsImpl<'db> {
1490
1483
fn cache ( & self , root_node : SyntaxNode , file_id : HirFileId ) {
1491
1484
assert ! ( root_node. parent( ) . is_none( ) ) ;
1492
1485
let mut cache = self . root_to_file_cache . borrow_mut ( ) ;
1493
- let prev = cache. insert ( root_node. clone ( ) , file_id) ;
1486
+ let prev = cache. insert ( root_node, file_id) ;
1494
1487
assert ! ( prev. is_none( ) || prev == Some ( file_id) ) ;
1495
- self . parse_cache . borrow_mut ( ) . insert ( file_id, root_node) ;
1496
1488
}
1497
1489
1498
1490
pub fn assert_contains_node ( & self , node : & SyntaxNode ) {
0 commit comments