Home
last modified time | relevance | path

Searched defs:OnDiskCache (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/rust/compiler/rustc_middle/src/query/
Don_disk_cache.rs51 pub struct OnDiskCache<'sess> { struct
53 serialized_data: RwLock<Option<Mmap>>,
57 current_side_effects: Lock<FxHashMap<DepNodeIndex, QuerySideEffects>>,
59 source_map: &'sess SourceMap,
60 file_index_to_stable_id: FxHashMap<SourceFileIndex, EncodedSourceFileId>,
63 file_index_to_file: Lock<FxHashMap<SourceFileIndex, Lrc<SourceFile>>>,
89 // but it seemed easier to have `OnDiskCache` be independent of the `CStore`. argument
108 // See `OnDiskCache.syntax_contexts` argument
163 impl<'sess> OnDiskCache<'sess> { impl