Struct rustc_query_impl::OnDiskCache
source · [−]pub struct OnDiskCache<'sess> {
serialized_data: RwLock<Option<Mmap>>,
current_side_effects: Lock<FxHashMap<DepNodeIndex, QuerySideEffects>>,
source_map: &'sess SourceMap,
file_index_to_stable_id: FxHashMap<SourceFileIndex, EncodedSourceFileId>,
file_index_to_file: Lock<FxHashMap<SourceFileIndex, Lrc<SourceFile>>>,
query_result_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>,
prev_side_effects_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>,
alloc_decoding_state: AllocDecodingState,
syntax_contexts: FxHashMap<u32, AbsoluteBytePos>,
expn_data: UnhashMap<ExpnHash, AbsoluteBytePos>,
hygiene_context: HygieneDecodeContext,
foreign_expn_data: UnhashMap<ExpnHash, u32>,
}
Expand description
Provides an interface to incremental compilation data cached from the
previous compilation session. This data will eventually include the results
of a few selected queries (like typeck
and mir_optimized
) and
any side effects that have been emitted during a query.
Fields
serialized_data: RwLock<Option<Mmap>>
current_side_effects: Lock<FxHashMap<DepNodeIndex, QuerySideEffects>>
source_map: &'sess SourceMap
file_index_to_stable_id: FxHashMap<SourceFileIndex, EncodedSourceFileId>
file_index_to_file: Lock<FxHashMap<SourceFileIndex, Lrc<SourceFile>>>
query_result_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>
prev_side_effects_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>
alloc_decoding_state: AllocDecodingState
syntax_contexts: FxHashMap<u32, AbsoluteBytePos>
expn_data: UnhashMap<ExpnHash, AbsoluteBytePos>
hygiene_context: HygieneDecodeContext
foreign_expn_data: UnhashMap<ExpnHash, u32>
Implementations
sourceimpl<'sess> OnDiskCache<'sess>
impl<'sess> OnDiskCache<'sess>
pub fn as_dyn(&self) -> &dyn OnDiskCache<'sess>
sourcepub fn load_side_effects(
&self,
tcx: TyCtxt<'_>,
dep_node_index: SerializedDepNodeIndex
) -> QuerySideEffects
pub fn load_side_effects(
&self,
tcx: TyCtxt<'_>,
dep_node_index: SerializedDepNodeIndex
) -> QuerySideEffects
Loads a QuerySideEffects
created during the previous compilation session.
sourcepub fn store_side_effects(
&self,
dep_node_index: DepNodeIndex,
side_effects: QuerySideEffects
)
pub fn store_side_effects(
&self,
dep_node_index: DepNodeIndex,
side_effects: QuerySideEffects
)
Stores a QuerySideEffects
emitted during the current compilation session.
Anything stored like this will be available via load_side_effects
in
the next compilation session.
sourcepub fn try_load_query_result<'tcx, T>(
&self,
tcx: TyCtxt<'tcx>,
dep_node_index: SerializedDepNodeIndex
) -> Option<T>where
T: for<'a> Decodable<CacheDecoder<'a, 'tcx>>,
pub fn try_load_query_result<'tcx, T>(
&self,
tcx: TyCtxt<'tcx>,
dep_node_index: SerializedDepNodeIndex
) -> Option<T>where
T: for<'a> Decodable<CacheDecoder<'a, 'tcx>>,
Returns the cached query result if there is something in the cache for
the given SerializedDepNodeIndex
; otherwise returns None
.
sourcepub fn store_side_effects_for_anon_node(
&self,
dep_node_index: DepNodeIndex,
side_effects: QuerySideEffects
)
pub fn store_side_effects_for_anon_node(
&self,
dep_node_index: DepNodeIndex,
side_effects: QuerySideEffects
)
Stores side effect emitted during computation of an anonymous query.
Since many anonymous queries can share the same DepNode
, we aggregate
them – as opposed to regular queries where we assume that there is a
1:1 relationship between query-key and DepNode
.
fn load_indexed<'tcx, T>(
&self,
tcx: TyCtxt<'tcx>,
dep_node_index: SerializedDepNodeIndex,
index: &FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>
) -> Option<T>where
T: for<'a> Decodable<CacheDecoder<'a, 'tcx>>,
fn with_decoder<'a, 'tcx, T, F: for<'s> FnOnce(&mut CacheDecoder<'s, 'tcx>) -> T>(
&'sess self,
tcx: TyCtxt<'tcx>,
pos: AbsoluteBytePos,
f: F
) -> Twhere
T: Decodable<CacheDecoder<'a, 'tcx>>,
Trait Implementations
sourceimpl<'sess> OnDiskCache<'sess> for OnDiskCache<'sess>
impl<'sess> OnDiskCache<'sess> for OnDiskCache<'sess>
sourcefn new(sess: &'sess Session, data: Mmap, start_pos: usize) -> Self
fn new(sess: &'sess Session, data: Mmap, start_pos: usize) -> Self
Creates a new OnDiskCache
instance from the serialized data in data
.
sourcefn drop_serialized_data(&self, tcx: TyCtxt<'_>)
fn drop_serialized_data(&self, tcx: TyCtxt<'_>)
Execute all cache promotions and release the serialized backing Mmap.
Cache promotions require invoking queries, which needs to read the serialized data. In order to serialize the new on-disk cache, the former on-disk cache file needs to be deleted, hence we won’t be able to refer to its memmapped data.
fn new_empty(source_map: &'sess SourceMap) -> Self
fn serialize<'tcx>(
&self,
tcx: TyCtxt<'tcx>,
encoder: FileEncoder
) -> FileEncodeResult
Auto Trait Implementations
impl<'sess> !RefUnwindSafe for OnDiskCache<'sess>
impl<'sess> !Send for OnDiskCache<'sess>
impl<'sess> !Sync for OnDiskCache<'sess>
impl<'sess> Unpin for OnDiskCache<'sess>
impl<'sess> !UnwindSafe for OnDiskCache<'sess>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
impl<CTX, T> Value<CTX> for Twhere
CTX: DepContext,
default fn from_cycle_error(tcx: CTX) -> T
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 392 bytes