revm_interpreter/gas.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
//! EVM gas calculation utilities.
mod calc;
mod constants;
pub use calc::*;
pub use constants::*;
/// Represents the state of gas during execution.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Gas {
/// The initial gas limit. This is constant throughout execution.
limit: u64,
/// The remaining gas.
remaining: u64,
/// Refunded gas. This is used only at the end of execution.
refunded: i64,
/// Memoisation of values for memory expansion cost.
memory: MemoryGas,
}
impl Gas {
/// Creates a new `Gas` struct with the given gas limit.
#[inline]
pub const fn new(limit: u64) -> Self {
Self {
limit,
remaining: limit,
refunded: 0,
memory: MemoryGas::new(),
}
}
/// Creates a new `Gas` struct with the given gas limit, but without any gas remaining.
#[inline]
pub const fn new_spent(limit: u64) -> Self {
Self {
limit,
remaining: 0,
refunded: 0,
memory: MemoryGas::new(),
}
}
/// Returns the gas limit.
#[inline]
pub const fn limit(&self) -> u64 {
self.limit
}
/// Returns the **last** memory expansion cost.
#[inline]
#[deprecated = "memory expansion cost is not tracked anymore; \
calculate it using `SharedMemory::current_expansion_cost` instead"]
#[doc(hidden)]
pub const fn memory(&self) -> u64 {
0
}
/// Returns the total amount of gas that was refunded.
#[inline]
pub const fn refunded(&self) -> i64 {
self.refunded
}
/// Returns the total amount of gas spent.
#[inline]
pub const fn spent(&self) -> u64 {
self.limit - self.remaining
}
/// Returns the amount of gas remaining.
#[inline]
pub const fn remaining(&self) -> u64 {
self.remaining
}
/// Return remaining gas after subtracting 63/64 parts.
pub const fn remaining_63_of_64_parts(&self) -> u64 {
self.remaining - self.remaining / 64
}
/// Erases a gas cost from the totals.
#[inline]
pub fn erase_cost(&mut self, returned: u64) {
self.remaining += returned;
}
/// Spends all remaining gas.
#[inline]
pub fn spend_all(&mut self) {
self.remaining = 0;
}
/// Records a refund value.
///
/// `refund` can be negative but `self.refunded` should always be positive
/// at the end of transact.
#[inline]
pub fn record_refund(&mut self, refund: i64) {
self.refunded += refund;
}
/// Set a refund value for final refund.
///
/// Max refund value is limited to Nth part (depending of fork) of gas spend.
///
/// Related to EIP-3529: Reduction in refunds
#[inline]
pub fn set_final_refund(&mut self, is_london: bool) {
let max_refund_quotient = if is_london { 5 } else { 2 };
self.refunded = (self.refunded() as u64).min(self.spent() / max_refund_quotient) as i64;
}
/// Set a refund value. This overrides the current refund value.
#[inline]
pub fn set_refund(&mut self, refund: i64) {
self.refunded = refund;
}
/// Records an explicit cost.
///
/// Returns `false` if the gas limit is exceeded.
#[inline]
#[must_use = "prefer using `gas!` instead to return an out-of-gas error on failure"]
pub fn record_cost(&mut self, cost: u64) -> bool {
let (remaining, overflow) = self.remaining.overflowing_sub(cost);
let success = !overflow;
if success {
self.remaining = remaining;
}
success
}
/// Record memory expansion
#[inline]
#[must_use = "internally uses record_cost that flags out of gas error"]
pub fn record_memory_expansion(&mut self, new_len: usize) -> MemoryExtensionResult {
let Some(additional_cost) = self.memory.record_new_len(new_len) else {
return MemoryExtensionResult::Same;
};
if !self.record_cost(additional_cost) {
return MemoryExtensionResult::OutOfGas;
}
MemoryExtensionResult::Extended
}
}
pub enum MemoryExtensionResult {
/// Memory was extended.
Extended,
/// Memory size stayed the same.
Same,
/// Not enough gas to extend memory.s
OutOfGas,
}
/// Utility struct that speeds up calculation of memory expansion
/// It contains the current memory length and its memory expansion cost.
///
/// It allows us to split gas accounting from memory structure.
#[derive(Clone, Copy, Default, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct MemoryGas {
/// Current memory length
pub words_num: usize,
/// Current memory expansion cost
pub expansion_cost: u64,
}
impl MemoryGas {
pub const fn new() -> Self {
Self {
words_num: 0,
expansion_cost: 0,
}
}
#[inline]
pub fn record_new_len(&mut self, new_num: usize) -> Option<u64> {
if new_num <= self.words_num {
return None;
}
self.words_num = new_num;
let mut cost = crate::gas::calc::memory_gas(new_num);
core::mem::swap(&mut self.expansion_cost, &mut cost);
// safe to subtract because we know that new_len > length
// notice the swap above.
Some(self.expansion_cost - cost)
}
}