pub struct OnDiskCache {
serialized_data: RwLock<Option<Mmap>>,
file_index_to_stable_id: FxHashMap<SourceFileIndex, EncodedSourceFileId>,
file_index_to_file: Lock<FxHashMap<SourceFileIndex, Arc<SourceFile>>>,
query_values_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>,
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>>§file_index_to_stable_id: FxHashMap<SourceFileIndex, EncodedSourceFileId>§file_index_to_file: Lock<FxHashMap<SourceFileIndex, Arc<SourceFile>>>§query_values_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>For query dep nodes that have a disk-cached return value, maps the node
index to the position of its serialized value in serialized_data.
side_effects_index: FxHashMap<SerializedDepNodeIndex, AbsoluteBytePos>For DepKind::SideEffect dep nodes, maps the node index to the position
of its serialized QuerySideEffect in serialized_data.
alloc_decoding_state: AllocDecodingState§syntax_contexts: FxHashMap<u32, AbsoluteBytePos>§expn_data: UnhashMap<ExpnHash, AbsoluteBytePos>§hygiene_context: HygieneDecodeContext§foreign_expn_data: UnhashMap<ExpnHash, u32>Implementations§
Source§impl OnDiskCache
impl OnDiskCache
Sourcepub fn new(sess: &Session, data: Mmap, start_pos: usize) -> Result<Self, ()>
pub fn new(sess: &Session, data: Mmap, start_pos: usize) -> Result<Self, ()>
Creates a new OnDiskCache instance from the serialized data in data.
The serialized cache has some basic integrity checks, if those checks indicate that the on-disk data is corrupt, an error is returned.
pub fn new_empty() -> Self
Sourcepub fn close_serialized_data_mmap(&self)
pub fn close_serialized_data_mmap(&self)
Release the serialized backing Mmap.
Sourcepub fn serialize(tcx: TyCtxt<'_>, encoder: FileEncoder) -> FileEncodeResult
pub fn serialize(tcx: TyCtxt<'_>, encoder: FileEncoder) -> FileEncodeResult
Serialize the current-session data that will be loaded by OnDiskCache
in a subsequent incremental compilation session.
Sourcepub(crate) fn load_side_effect(
&self,
tcx: TyCtxt<'_>,
dep_node_index: SerializedDepNodeIndex,
) -> Option<QuerySideEffect>
pub(crate) fn load_side_effect( &self, tcx: TyCtxt<'_>, dep_node_index: SerializedDepNodeIndex, ) -> Option<QuerySideEffect>
Loads a QuerySideEffect created during the previous compilation session.
Sourcepub fn loadable_from_disk(&self, dep_node_index: SerializedDepNodeIndex) -> bool
pub fn loadable_from_disk(&self, dep_node_index: SerializedDepNodeIndex) -> bool
Returns true if there is a disk-cached query return value for the given node.
Sourcepub fn try_load_query_value<'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_value<'tcx, T>(
&self,
tcx: TyCtxt<'tcx>,
dep_node_index: SerializedDepNodeIndex,
) -> Option<T>where
T: for<'a> Decodable<CacheDecoder<'a, 'tcx>>,
Returns the disk-cached query return value for the given node, if there is one.
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>(
&self,
tcx: TyCtxt<'tcx>,
pos: AbsoluteBytePos,
f: F,
) -> Twhere
T: Decodable<CacheDecoder<'a, 'tcx>>,
Auto Trait Implementations§
impl DynSend for OnDiskCache
impl DynSync for OnDiskCache
impl !Freeze for OnDiskCache
impl !RefUnwindSafe for OnDiskCache
impl !Send for OnDiskCache
impl !Sync for OnDiskCache
impl Unpin for OnDiskCache
impl UnsafeUnpin for OnDiskCache
impl !UnwindSafe for OnDiskCache
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<K> IntoQueryKey<K> for K
impl<K> IntoQueryKey<K> for K
Source§fn into_query_key(self) -> K
fn into_query_key(self) -> K
Self to K.
This should always be a very cheap conversion, e.g. LocalDefId::to_def_id.Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
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: 344 bytes