forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move statically defined builtin default costs map from sola…
…na-cost-model to its own crate. Makes sharing builtin costs between crates easier, and provide space to future refactoring; Issue #2351
- Loading branch information
1 parent
2fce82b
commit 76d99c8
Showing
12 changed files
with
131 additions
and
52 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[package] | ||
name = "solana-builtins-default-costs" | ||
description = "Solana builtins default costs" | ||
documentation = "https://docs.rs/solana-builtins-default-costs" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
ahash = { workspace = true } | ||
lazy_static = { workspace = true } | ||
log = { workspace = true } | ||
solana-address-lookup-table-program = { workspace = true } | ||
solana-bpf-loader-program = { workspace = true } | ||
solana-compute-budget-program = { workspace = true } | ||
solana-config-program = { workspace = true } | ||
solana-frozen-abi = { workspace = true, optional = true } | ||
solana-loader-v4-program = { workspace = true } | ||
solana-sdk = { workspace = true } | ||
solana-stake-program = { workspace = true } | ||
solana-system-program = { workspace = true } | ||
solana-vote-program = { workspace = true } | ||
# Add additional builtin programs here | ||
|
||
[lib] | ||
crate-type = ["lib"] | ||
name = "solana_builtins_default_costs" | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[build-dependencies] | ||
rustc_version = { workspace = true } | ||
|
||
[features] | ||
frozen-abi = [ | ||
"dep:solana-frozen-abi", | ||
"solana-vote-program/frozen-abi", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../frozen-abi/build.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(min_specialization))] | ||
#![allow(clippy::arithmetic_side_effects)] | ||
use { | ||
ahash::AHashMap, | ||
lazy_static::lazy_static, | ||
solana_sdk::{ | ||
address_lookup_table, bpf_loader, bpf_loader_deprecated, bpf_loader_upgradeable, | ||
compute_budget, ed25519_program, loader_v4, pubkey::Pubkey, secp256k1_program, | ||
}, | ||
}; | ||
|
||
// Number of compute units for each built-in programs | ||
lazy_static! { | ||
/// Number of compute units for each built-in programs | ||
pub static ref BUILTIN_INSTRUCTION_COSTS: AHashMap<Pubkey, u64> = [ | ||
(solana_stake_program::id(), solana_stake_program::stake_instruction::DEFAULT_COMPUTE_UNITS), | ||
(solana_config_program::id(), solana_config_program::config_processor::DEFAULT_COMPUTE_UNITS), | ||
(solana_vote_program::id(), solana_vote_program::vote_processor::DEFAULT_COMPUTE_UNITS), | ||
(solana_system_program::id(), solana_system_program::system_processor::DEFAULT_COMPUTE_UNITS), | ||
(compute_budget::id(), solana_compute_budget_program::DEFAULT_COMPUTE_UNITS), | ||
(address_lookup_table::program::id(), solana_address_lookup_table_program::processor::DEFAULT_COMPUTE_UNITS), | ||
(bpf_loader_upgradeable::id(), solana_bpf_loader_program::UPGRADEABLE_LOADER_COMPUTE_UNITS), | ||
(bpf_loader_deprecated::id(), solana_bpf_loader_program::DEPRECATED_LOADER_COMPUTE_UNITS), | ||
(bpf_loader::id(), solana_bpf_loader_program::DEFAULT_LOADER_COMPUTE_UNITS), | ||
(loader_v4::id(), solana_loader_v4_program::DEFAULT_COMPUTE_UNITS), | ||
// Note: These are precompile, run directly in bank during sanitizing; | ||
(secp256k1_program::id(), 0), | ||
(ed25519_program::id(), 0), | ||
] | ||
.iter() | ||
.cloned() | ||
.collect(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.