solana_program_runtime::loaded_programs

Struct ProgramCache

Source
pub struct ProgramCache<FG: ForkGraph> {
    pub latest_root_slot: Slot,
    pub latest_root_epoch: Epoch,
    pub environments: ProgramRuntimeEnvironments,
    pub upcoming_environments: Option<ProgramRuntimeEnvironments>,
    pub programs_to_recompile: Vec<(Pubkey, Arc<ProgramCacheEntry>)>,
    pub stats: ProgramCacheStats,
    pub fork_graph: Option<Weak<RwLock<FG>>>,
    pub loading_task_waiter: Arc<LoadingTaskWaiter>,
    /* private fields */
}
Expand description

This structure is the global cache of loaded, verified and compiled programs.

It …

  • is validator global and fork graph aware, so it can optimize the commonalities across banks.
  • handles the visibility rules of un/re/deployments.
  • stores the usage statistics and verification status of each program.
  • is elastic and uses a probabilistic eviction stragety based on the usage statistics.
  • also keeps the compiled executables around, but only for the most used programs.
  • supports various kinds of tombstones to avoid loading programs which can not be loaded.
  • cleans up entries on orphan branches when the block store is rerooted.
  • supports the cache preparation phase before feature activations which can change cached programs.
  • manages the environments of the programs and upcoming environments for the next epoch.
  • allows for cooperative loading of TX batches which hit the same missing programs simultaneously.
  • enforces that all programs used in a batch are eagerly loaded ahead of execution.
  • is not persisted to disk or a snapshot, so it needs to cold start and warm up first.

Fields§

§latest_root_slot: Slot

The slot of the last rerooting

§latest_root_epoch: Epoch

The epoch of the last rerooting

§environments: ProgramRuntimeEnvironments

Environments of the current epoch

§upcoming_environments: Option<ProgramRuntimeEnvironments>

Anticipated replacement for environments at the next epoch

This is None during most of an epoch, and only Some around the boundaries (at the end and beginning of an epoch). More precisely, it starts with the cache preparation phase a few hundred slots before the epoch boundary, and it ends with the first rerooting after the epoch boundary.

§programs_to_recompile: Vec<(Pubkey, Arc<ProgramCacheEntry>)>

List of loaded programs which should be recompiled before the next epoch (but don’t have to).

§stats: ProgramCacheStats

Statistics counters

§fork_graph: Option<Weak<RwLock<FG>>>

Reference to the block store

§loading_task_waiter: Arc<LoadingTaskWaiter>

Coordinates TX batches waiting for others to complete their task during cooperative loading

Implementations§

Source§

impl<FG: ForkGraph> ProgramCache<FG>

Source

pub fn new(root_slot: Slot, root_epoch: Epoch) -> Self

Source

pub fn set_fork_graph(&mut self, fork_graph: Weak<RwLock<FG>>)

Source

pub fn get_environments_for_epoch( &self, epoch: Epoch, ) -> ProgramRuntimeEnvironments

Returns the current environments depending on the given epoch

Source

pub fn get_upcoming_environments_for_epoch( &self, epoch: Epoch, ) -> Option<ProgramRuntimeEnvironments>

Returns the upcoming environments depending on the given epoch

Source

pub fn assign_program( &mut self, key: Pubkey, entry: Arc<ProgramCacheEntry>, ) -> bool

Insert a single entry. It’s typically called during transaction loading, when the cache doesn’t contain the entry corresponding to program key.

Source

pub fn prune_by_deployment_slot(&mut self, slot: Slot)

Source

pub fn prune(&mut self, new_root_slot: Slot, new_root_epoch: Epoch)

Before rerooting the blockstore this removes all superfluous entries

Source

pub fn extract( &self, search_for: &mut Vec<(Pubkey, (ProgramCacheMatchCriteria, u64))>, loaded_programs_for_tx_batch: &mut ProgramCacheForTxBatch, is_first_round: bool, ) -> Option<(Pubkey, u64)>

Extracts a subset of the programs relevant to a transaction batch and returns which program accounts the accounts DB needs to load.

Source

pub fn finish_cooperative_loading_task( &mut self, slot: Slot, key: Pubkey, loaded_program: Arc<ProgramCacheEntry>, ) -> bool

Called by Bank::replenish_program_cache() for each program that is done loading.

Source

pub fn merge( &mut self, modified_entries: &HashMap<Pubkey, Arc<ProgramCacheEntry>>, )

Source

pub fn get_flattened_entries( &self, include_program_runtime_v1: bool, _include_program_runtime_v2: bool, ) -> Vec<(Pubkey, Arc<ProgramCacheEntry>)>

Returns the list of entries which are verified and compiled.

Source

pub fn get_flattened_entries_for_tests( &self, ) -> Vec<(Pubkey, Arc<ProgramCacheEntry>)>

Returns the list of all entries in the cache.

Source

pub fn get_slot_versions_for_tests( &self, key: &Pubkey, ) -> &[Arc<ProgramCacheEntry>]

Returns the slot versions for the given program id.

Source

pub fn sort_and_unload(&mut self, shrink_to: PercentageInteger)

Unloads programs which were used infrequently

Source

pub fn evict_using_2s_random_selection( &mut self, shrink_to: PercentageInteger, now: Slot, )

Evicts programs using 2’s random selection, choosing the least used program out of the two entries. The eviction is performed enough number of times to reduce the cache usage to the given percentage.

Source

pub fn remove_programs(&mut self, keys: impl Iterator<Item = Pubkey>)

Removes all the entries at the given keys, if they exist

Trait Implementations§

Source§

impl<FG: ForkGraph> Debug for ProgramCache<FG>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<FG> !Freeze for ProgramCache<FG>

§

impl<FG> RefUnwindSafe for ProgramCache<FG>

§

impl<FG> Send for ProgramCache<FG>
where FG: Send + Sync,

§

impl<FG> Sync for ProgramCache<FG>
where FG: Send + Sync,

§

impl<FG> Unpin for ProgramCache<FG>

§

impl<FG> UnwindSafe for ProgramCache<FG>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T