SVM: remove dependency on bank and bank_forks (#35084)

This commit is contained in:
Pankaj Garg 2024-02-05 11:48:42 -08:00 committed by GitHub
parent 785dd2132e
commit 65701820f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 67 additions and 22 deletions

View File

@ -804,7 +804,7 @@ pub struct Bank {
epoch_reward_status: EpochRewardStatus,
transaction_processor: TransactionBatchProcessor,
transaction_processor: TransactionBatchProcessor<BankForks>,
}
struct VoteWithStakeDelegations {
@ -996,7 +996,14 @@ impl Bank {
transaction_processor: TransactionBatchProcessor::default(),
};
bank.transaction_processor = TransactionBatchProcessor::new(&bank);
bank.transaction_processor = TransactionBatchProcessor::new(
bank.slot,
bank.epoch,
bank.epoch_schedule.clone(),
bank.fee_structure.clone(),
bank.runtime_config.clone(),
bank.loaded_programs_cache.clone(),
);
let accounts_data_size_initial = bank.get_total_accounts_stats().unwrap().data_len as u64;
bank.accounts_data_size_initial = accounts_data_size_initial;
@ -1307,7 +1314,14 @@ impl Bank {
transaction_processor: TransactionBatchProcessor::default(),
};
new.transaction_processor = TransactionBatchProcessor::new(&new);
new.transaction_processor = TransactionBatchProcessor::new(
new.slot,
new.epoch,
new.epoch_schedule.clone(),
new.fee_structure.clone(),
new.runtime_config.clone(),
new.loaded_programs_cache.clone(),
);
let (_, ancestors_time_us) = measure_us!({
let mut ancestors = Vec::with_capacity(1 + new.parents().len());
@ -1815,7 +1829,14 @@ impl Bank {
transaction_processor: TransactionBatchProcessor::default(),
};
bank.transaction_processor = TransactionBatchProcessor::new(&bank);
bank.transaction_processor = TransactionBatchProcessor::new(
bank.slot,
bank.epoch,
bank.epoch_schedule.clone(),
bank.fee_structure.clone(),
bank.runtime_config.clone(),
bank.loaded_programs_cache.clone(),
);
bank.finish_init(
genesis_config,

View File

@ -13749,7 +13749,7 @@ fn test_filter_executable_program_accounts() {
let sanitized_tx2 = SanitizedTransaction::from_transaction_for_tests(tx2);
let owners = &[program1_pubkey, program2_pubkey];
let programs = TransactionBatchProcessor::filter_executable_program_accounts(
let programs = TransactionBatchProcessor::<BankForks>::filter_executable_program_accounts(
&bank,
&[sanitized_tx1, sanitized_tx2],
&mut [(Ok(()), None, Some(0)), (Ok(()), None, Some(0))],
@ -13844,7 +13844,7 @@ fn test_filter_executable_program_accounts_invalid_blockhash() {
let owners = &[program1_pubkey, program2_pubkey];
let mut lock_results = vec![(Ok(()), None, Some(0)), (Ok(()), None, None)];
let programs = TransactionBatchProcessor::filter_executable_program_accounts(
let programs = TransactionBatchProcessor::<BankForks>::filter_executable_program_accounts(
&bank,
&[sanitized_tx1, sanitized_tx2],
&mut lock_results,

View File

@ -1,7 +1,5 @@
use {
crate::{
bank::Bank,
bank_forks::BankForks,
runtime_config::RuntimeConfig,
svm::{
account_loader::load_accounts,
@ -25,8 +23,8 @@ use {
solana_program_runtime::{
compute_budget::ComputeBudget,
loaded_programs::{
LoadProgramMetrics, LoadedProgram, LoadedProgramMatchCriteria, LoadedProgramType,
LoadedPrograms, LoadedProgramsForTxBatch, ProgramRuntimeEnvironment,
ForkGraph, LoadProgramMetrics, LoadedProgram, LoadedProgramMatchCriteria,
LoadedProgramType, LoadedPrograms, LoadedProgramsForTxBatch, ProgramRuntimeEnvironment,
ProgramRuntimeEnvironments, DELAY_VISIBILITY_SLOT_OFFSET,
},
log_collector::LogCollector,
@ -55,6 +53,7 @@ use {
std::{
cell::RefCell,
collections::{hash_map::Entry, HashMap},
fmt::{Debug, Formatter},
rc::Rc,
sync::{
atomic::{AtomicU64, Ordering},
@ -107,8 +106,8 @@ enum ProgramAccountLoadResult {
ProgramOfLoaderV4(AccountSharedData, Slot),
}
#[derive(AbiExample, Debug)]
pub struct TransactionBatchProcessor {
#[derive(AbiExample)]
pub struct TransactionBatchProcessor<FG: ForkGraph> {
/// Bank slot (i.e. block)
slot: Slot,
@ -128,10 +127,28 @@ pub struct TransactionBatchProcessor {
pub sysvar_cache: RwLock<SysvarCache>,
pub loaded_programs_cache: Arc<RwLock<LoadedPrograms<BankForks>>>,
pub loaded_programs_cache: Arc<RwLock<LoadedPrograms<FG>>>,
}
impl Default for TransactionBatchProcessor {
impl<FG: ForkGraph> Debug for TransactionBatchProcessor<FG> {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
f.debug_struct("TransactionBatchProcessor")
.field("slot", &self.slot)
.field("epoch", &self.epoch)
.field("epoch_schedule", &self.epoch_schedule)
.field("fee_structure", &self.fee_structure)
.field(
"check_program_modification_slot",
&self.check_program_modification_slot,
)
.field("runtime_config", &self.runtime_config)
.field("sysvar_cache", &self.sysvar_cache)
.field("loaded_programs_cache", &self.loaded_programs_cache)
.finish()
}
}
impl<FG: ForkGraph> Default for TransactionBatchProcessor<FG> {
fn default() -> Self {
Self {
slot: Slot::default(),
@ -149,17 +166,24 @@ impl Default for TransactionBatchProcessor {
}
}
impl TransactionBatchProcessor {
pub fn new(bank: &Bank) -> Self {
impl<FG: ForkGraph> TransactionBatchProcessor<FG> {
pub fn new(
slot: Slot,
epoch: Epoch,
epoch_schedule: EpochSchedule,
fee_structure: FeeStructure,
runtime_config: Arc<RuntimeConfig>,
loaded_programs_cache: Arc<RwLock<LoadedPrograms<FG>>>,
) -> Self {
Self {
slot: bank.slot(),
epoch: bank.epoch(),
epoch_schedule: bank.epoch_schedule.clone(),
fee_structure: bank.fee_structure.clone(),
slot,
epoch,
epoch_schedule,
fee_structure,
check_program_modification_slot: false,
runtime_config: bank.runtime_config.clone(),
runtime_config,
sysvar_cache: RwLock::<SysvarCache>::default(),
loaded_programs_cache: bank.loaded_programs_cache.clone(),
loaded_programs_cache,
}
}