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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
// This file is part of Parity.

// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Parity.  If not, see <http://www.gnu.org/licenses/>.

// Copyright 2019 Conflux Foundation. All rights reserved.
// Conflux is free software and distributed under GNU General Public License.
// See http://www.gnu.org/licenses/

use cfx_types::{Address, Space, H256, U256};
use cfx_vm_types::{self as vm, Spec};
use std::{cmp, sync::Arc};
use vm::{BlockHashSource, CODE_PREFIX_7702};

use super::{
    instructions::{self, Instruction, InstructionInfo},
    stack::Stack,
    u256_to_address,
};
use crate::CostType;

macro_rules! overflowing {
    ($x:expr) => {{
        let (v, overflow) = $x;
        if overflow {
            return Err(vm::Error::OutOfGas);
        }
        v
    }};
}

enum Request<Cost: CostType> {
    Gas(Cost),
    GasMem(Cost, Cost),
    GasMemProvide(Cost, Cost, Option<U256>),
    GasMemCopy(Cost, Cost, Cost),
}

pub struct InstructionRequirements<Cost> {
    pub gas_cost: Cost,
    pub provide_gas: Option<Cost>,
    pub memory_total_gas: Cost,
    pub memory_required_size: usize,
    pub gas_refund: i64,
}

pub struct Gasometer<Gas> {
    pub current_gas: Gas,
    pub current_mem_gas: Gas,
}

impl<Gas: CostType> Gasometer<Gas> {
    pub fn new(current_gas: Gas) -> Self {
        Gasometer {
            current_gas,
            current_mem_gas: Gas::from(0),
        }
    }

    pub fn verify_gas(&self, gas_cost: &Gas) -> vm::Result<()> {
        match &self.current_gas < gas_cost {
            true => Err(vm::Error::OutOfGas),
            false => Ok(()),
        }
    }

    /// How much gas is provided to a CALL/CREATE, given that we need to deduct
    /// `needed` for this operation and that we `requested` some.
    pub fn gas_provided(
        &self, spec: &Spec, needed: Gas, requested: Option<U256>,
    ) -> vm::Result<Gas> {
        // Try converting requested gas to `Gas` (`U256/u64`)
        let requested = requested.map(Gas::from_u256);

        match spec.sub_gas_cap_divisor {
            Some(cap_divisor) if self.current_gas >= needed => {
                let gas_remaining = self.current_gas - needed;
                let max_gas_provided = match cap_divisor {
                    64 => gas_remaining - (gas_remaining >> 6),
                    cap_divisor => {
                        gas_remaining - gas_remaining / Gas::from(cap_divisor)
                    }
                };

                if let Some(Ok(r)) = requested {
                    Ok(cmp::min(r, max_gas_provided))
                } else {
                    Ok(max_gas_provided)
                }
            }
            _ => {
                if let Some(r) = requested {
                    r
                } else if self.current_gas >= needed {
                    Ok(self.current_gas - needed)
                } else {
                    Ok(0.into())
                }
            }
        }
    }

    /// Determine how much gas is used by the given instruction, given the
    /// machine's state.
    ///
    /// We guarantee that the final element of the returned tuple (`provided`)
    /// will be `Some` iff the `instruction` is one of `CREATE`, or any of
    /// the `CALL` variants. In this case, it will be the amount of gas
    /// that the current context
    /// provides to the child context.
    pub fn requirements(
        &mut self, context: &dyn vm::Context, instruction: Instruction,
        info: &InstructionInfo, stack: &dyn Stack<U256>,
        current_mem_size: usize,
    ) -> vm::Result<InstructionRequirements<Gas>> {
        let spec = context.spec();
        let tier = info.tier.idx();
        let default_gas = Gas::from(spec.tier_step_gas[tier]);

        let account_access_gas = |idx: usize| {
            let address = u256_to_address(stack.peek(idx));
            if context.is_warm_account(address) {
                spec.warm_access_gas
            } else {
                spec.cold_account_access_cost
            }
        };

        let mut gas_refund = 0;

        let cost = match instruction {
            instructions::JUMPDEST => Request::Gas(Gas::from(1)),
            instructions::SSTORE => {
                let (to_charge_gas, to_refund_gas) =
                    calc_sstore_gas(context, stack, self.current_gas)?;
                gas_refund += to_refund_gas;
                Request::Gas(Gas::from(to_charge_gas))
            }
            instructions::SLOAD => {
                let gas = if spec.cip645.eip_cold_warm_access {
                    let mut key = H256::zero();
                    stack.peek(0).to_big_endian(&mut key.0);
                    if context.is_warm_storage_entry(&key)? {
                        spec.warm_access_gas
                    } else {
                        spec.cold_sload_gas
                    }
                } else {
                    spec.sload_gas()
                };
                Request::Gas(Gas::from(gas))
            }
            instructions::BALANCE => {
                let gas = if spec.cip645.eip_cold_warm_access {
                    account_access_gas(0)
                } else {
                    spec.balance_gas
                };
                Request::Gas(Gas::from(gas))
            }
            instructions::EXTCODESIZE => {
                let gas = if spec.cip645.eip_cold_warm_access {
                    account_access_gas(0)
                } else {
                    spec.extcodesize_gas
                };
                Request::Gas(Gas::from(gas))
            }
            instructions::EXTCODEHASH => {
                let gas = if spec.cip645.eip_cold_warm_access {
                    account_access_gas(0)
                } else {
                    spec.extcodehash_gas
                };
                Request::Gas(Gas::from(gas))
            }
            instructions::SUICIDE => {
                let mut gas = Gas::from(spec.suicide_gas);

                let is_value_transfer = !context.origin_balance()?.is_zero();
                let address = u256_to_address(stack.peek(0));
                if spec.cip645.eip_cold_warm_access
                    && !context.is_warm_account(address)
                {
                    gas += Gas::from(spec.cold_account_access_cost);
                }
                if is_value_transfer
                    && !context.exists_and_not_null(&address)?
                {
                    let ratio = if context.space() == Space::Ethereum {
                        spec.evm_gas_ratio
                    } else {
                        1
                    };
                    gas = overflowing!(gas.overflow_add(
                        (spec.suicide_to_new_account_cost * ratio).into()
                    ));
                }

                Request::Gas(gas)
            }
            instructions::MSTORE | instructions::MLOAD => Request::GasMem(
                default_gas,
                mem_needed_const(stack.peek(0), 32)?,
            ),
            instructions::MSTORE8 => Request::GasMem(
                default_gas,
                mem_needed_const(stack.peek(0), 1)?,
            ),
            instructions::RETURN | instructions::REVERT => Request::GasMem(
                default_gas,
                mem_needed(stack.peek(0), stack.peek(1))?,
            ),
            instructions::SHA3 => {
                let words =
                    overflowing!(to_word_size(Gas::from_u256(*stack.peek(1))?));
                let gas = overflowing!(Gas::from(spec.sha3_gas).overflow_add(
                    overflowing!(
                        Gas::from(spec.sha3_word_gas).overflow_mul(words)
                    )
                ));
                Request::GasMem(gas, mem_needed(stack.peek(0), stack.peek(1))?)
            }
            instructions::CALLDATACOPY
            | instructions::CODECOPY
            | instructions::RETURNDATACOPY => Request::GasMemCopy(
                default_gas,
                mem_needed(stack.peek(0), stack.peek(2))?,
                Gas::from_u256(*stack.peek(2))?,
            ),
            instructions::JUMPSUB_MCOPY if spec.cancun_opcodes => {
                let dst_mem_needed = mem_needed(stack.peek(0), stack.peek(2))?;
                let src_mem_needed = mem_needed(stack.peek(1), stack.peek(2))?;
                let copy_mem_needed = if spec.cip645.fix_eip5656 {
                    std::cmp::max(dst_mem_needed, src_mem_needed)
                } else {
                    dst_mem_needed
                };
                Request::GasMemCopy(
                    default_gas,
                    copy_mem_needed,
                    Gas::from_u256(*stack.peek(2))?,
                )
            }
            instructions::BEGINSUB_TLOAD if spec.cancun_opcodes => {
                Request::Gas(Gas::from(spec.warm_access_gas))
            }
            instructions::RETURNSUB_TSTORE if spec.cancun_opcodes => {
                Request::Gas(Gas::from(spec.warm_access_gas))
            }
            instructions::EXTCODECOPY => {
                let base_gas = if spec.cip645.eip_cold_warm_access {
                    account_access_gas(0)
                } else {
                    spec.extcodecopy_base_gas
                };
                Request::GasMemCopy(
                    base_gas.into(),
                    mem_needed(stack.peek(1), stack.peek(3))?,
                    Gas::from_u256(*stack.peek(3))?,
                )
            }
            instructions::LOG0
            | instructions::LOG1
            | instructions::LOG2
            | instructions::LOG3
            | instructions::LOG4 => {
                let no_of_topics = instruction.log_topics().expect(
                    "log_topics always return some for LOG* instructions; qed",
                );
                let log_gas = spec.log_gas + spec.log_topic_gas * no_of_topics;

                let data_gas = overflowing!(Gas::from_u256(*stack.peek(1))?
                    .overflow_mul(Gas::from(spec.log_data_gas)));
                let gas =
                    overflowing!(data_gas.overflow_add(Gas::from(log_gas)));
                Request::GasMem(gas, mem_needed(stack.peek(0), stack.peek(1))?)
            }
            instructions::CALL | instructions::CALLCODE => {
                let mut gas =
                    Gas::from(calc_call_gas(context, stack, self.current_gas)?);
                let mem = cmp::max(
                    mem_needed(stack.peek(5), stack.peek(6))?,
                    mem_needed(stack.peek(3), stack.peek(4))?,
                );

                let address = u256_to_address(stack.peek(1));
                let is_value_transfer = !stack.peek(2).is_zero();

                if instruction == instructions::CALL
                    && is_value_transfer
                    && !context.exists_and_not_null(&address)?
                {
                    let ratio = if context.space() == Space::Ethereum {
                        spec.evm_gas_ratio
                    } else {
                        1
                    };
                    gas = overflowing!(gas.overflow_add(
                        (spec.call_new_account_gas * ratio).into()
                    ));
                }

                if is_value_transfer {
                    gas =
                        overflowing!(gas
                            .overflow_add(spec.call_value_transfer_gas.into()));
                }

                let requested = *stack.peek(0);

                Request::GasMemProvide(gas, mem, Some(requested))
            }
            instructions::DELEGATECALL | instructions::STATICCALL => {
                let gas =
                    Gas::from(calc_call_gas(context, stack, self.current_gas)?);
                let mem = cmp::max(
                    mem_needed(stack.peek(4), stack.peek(5))?,
                    mem_needed(stack.peek(2), stack.peek(3))?,
                );
                let requested = *stack.peek(0);

                Request::GasMemProvide(gas, mem, Some(requested))
            }
            instructions::CREATE | instructions::CREATE2 => {
                let start = stack.peek(1);
                let len = stack.peek(2);
                let base = Gas::from(spec.create_gas);
                let word = overflowing!(to_word_size(Gas::from_u256(*len)?));

                let sha3_word_price = if instruction == instructions::CREATE
                    && context.space() == Space::Ethereum
                {
                    // CREATE operation in espace doesn't compute code_hash
                    0
                } else {
                    spec.sha3_word_gas
                };
                let init_code_word_price = if spec.cip645.eip3860 {
                    spec.init_code_word_gas
                } else {
                    0
                };
                let word_price = sha3_word_price + init_code_word_price;
                let word_gas =
                    overflowing!(Gas::from(word_price).overflow_mul(word));

                let gas = overflowing!(base.overflow_add(word_gas));
                let mem = mem_needed(start, len)?;

                Request::GasMemProvide(gas, mem, None)
            }
            instructions::EXP => {
                let expon = stack.peek(1);
                let bytes = ((expon.bits() + 7) / 8) as usize;
                let gas = Gas::from(spec.exp_gas + spec.exp_byte_gas * bytes);
                Request::Gas(gas)
            }
            instructions::BLOCKHASH => {
                let block_number = stack.peek(0);
                let gas = if context.space() == Space::Ethereum
                    && spec.align_evm
                {
                    spec.blockhash_gas
                } else if !spec.cip645.blockhash_gas {
                    match context.blockhash_source() {
                        BlockHashSource::Env => spec.blockhash_gas,
                        BlockHashSource::State => spec.sload_gas(),
                    }
                } else if block_number > &U256::from(u64::MAX) {
                    spec.warm_access_gas
                } else {
                    let block_number = block_number.as_u64();
                    let env = context.env();

                    let diff = match context.space() {
                        Space::Native => env.number.checked_sub(block_number),
                        Space::Ethereum => {
                            env.epoch_height.checked_sub(block_number)
                        }
                    };
                    if diff.map_or(false, |x| x > 256 && x < 65536) {
                        spec.cold_sload_gas
                    } else {
                        spec.warm_access_gas
                    }
                };

                Request::Gas(Gas::from(gas))
            }
            _ => Request::Gas(default_gas),
        };

        Ok(match cost {
            Request::Gas(gas) => InstructionRequirements {
                gas_cost: gas,
                provide_gas: None,
                memory_required_size: 0,
                memory_total_gas: self.current_mem_gas,
                gas_refund,
            },
            Request::GasMem(gas, mem_size) => {
                let (mem_gas_cost, new_mem_gas, new_mem_size) =
                    self.mem_gas_cost(spec, current_mem_size, &mem_size)?;
                let gas = overflowing!(gas.overflow_add(mem_gas_cost));
                InstructionRequirements {
                    gas_cost: gas,
                    provide_gas: None,
                    memory_required_size: new_mem_size,
                    memory_total_gas: new_mem_gas,
                    gas_refund,
                }
            }
            Request::GasMemProvide(gas, mem_size, requested) => {
                let (mem_gas_cost, new_mem_gas, new_mem_size) =
                    self.mem_gas_cost(spec, current_mem_size, &mem_size)?;
                let gas = overflowing!(gas.overflow_add(mem_gas_cost));
                let provided = self.gas_provided(spec, gas, requested)?;
                let total_gas = overflowing!(gas.overflow_add(provided));

                InstructionRequirements {
                    gas_cost: total_gas,
                    provide_gas: Some(provided),
                    memory_required_size: new_mem_size,
                    memory_total_gas: new_mem_gas,
                    gas_refund,
                }
            }
            Request::GasMemCopy(gas, mem_size, copy) => {
                let (mem_gas_cost, new_mem_gas, new_mem_size) =
                    self.mem_gas_cost(spec, current_mem_size, &mem_size)?;
                let copy = overflowing!(to_word_size(copy));
                let copy_gas =
                    overflowing!(Gas::from(spec.copy_gas).overflow_mul(copy));
                let gas = overflowing!(gas.overflow_add(copy_gas));
                let gas = overflowing!(gas.overflow_add(mem_gas_cost));

                InstructionRequirements {
                    gas_cost: gas,
                    provide_gas: None,
                    memory_required_size: new_mem_size,
                    memory_total_gas: new_mem_gas,
                    gas_refund,
                }
            }
        })
    }

    fn mem_gas_cost(
        &self, spec: &Spec, current_mem_size: usize, mem_size: &Gas,
    ) -> vm::Result<(Gas, Gas, usize)> {
        let gas_for_mem = |mem_size: Gas| {
            let s = mem_size >> 5;
            // s * memory_gas + s * s / quad_coeff_div
            let a = overflowing!(s.overflow_mul(Gas::from(spec.memory_gas)));

            // Calculate s*s/quad_coeff_div
            assert_eq!(spec.quad_coeff_div, 512);
            let b = overflowing!(s.overflow_mul_shr(s, 9));
            Ok(overflowing!(a.overflow_add(b)))
        };

        let current_mem_size = Gas::from(current_mem_size);
        let req_mem_size_rounded = overflowing!(to_word_size(*mem_size)) << 5;

        let (mem_gas_cost, new_mem_gas) =
            if req_mem_size_rounded > current_mem_size {
                let new_mem_gas = gas_for_mem(req_mem_size_rounded)?;
                (new_mem_gas - self.current_mem_gas, new_mem_gas)
            } else {
                (Gas::from(0), self.current_mem_gas)
            };

        Ok((mem_gas_cost, new_mem_gas, req_mem_size_rounded.as_usize()))
    }
}

#[inline]
fn mem_needed_const<Gas: CostType>(mem: &U256, add: usize) -> vm::Result<Gas> {
    Gas::from_u256(overflowing!(mem.overflowing_add(U256::from(add))))
}

#[inline]
fn mem_needed<Gas: CostType>(offset: &U256, size: &U256) -> vm::Result<Gas> {
    if size.is_zero() {
        return Ok(Gas::from(0));
    }

    Gas::from_u256(overflowing!(offset.overflowing_add(*size)))
}

#[inline]
fn add_gas_usize<Gas: CostType>(value: Gas, num: usize) -> (Gas, bool) {
    value.overflow_add(Gas::from(num))
}

#[inline]
fn to_word_size<Gas: CostType>(value: Gas) -> (Gas, bool) {
    let (gas, overflow) = add_gas_usize(value, 31);
    if overflow {
        return (gas, overflow);
    }

    (gas >> 5, false)
}

fn calc_sstore_gas<Gas: CostType>(
    context: &dyn vm::Context, stack: &dyn Stack<U256>, current_gas: Gas,
) -> vm::Result<(usize, i64)> {
    let spec = context.spec();
    let space = context.space();

    if space == Space::Native && !spec.cip645.eip_sstore_and_refund_gas {
        // The only simple case without checking values
        return Ok((spec.sstore_reset_gas, 0));
    }

    if current_gas <= spec.call_stipend.into() {
        // Enough to trigger the OutOfGas, no need for further checks
        return Ok((spec.call_stipend + 1, 0));
    }

    let mut key = H256::zero();
    stack.peek(0).to_big_endian(&mut key.0);

    let new_val = *stack.peek(1);
    let warm_val = context.is_warm_storage_entry(&key)?;
    let cur_val = context.storage_at(&key[..])?;

    if !spec.cip645.eip_sstore_and_refund_gas {
        // For eSpace only, the core space before cip645 has been filtted out.
        return Ok(if cur_val.is_zero() && !new_val.is_zero() {
            (spec.sstore_set_gas * spec.evm_gas_ratio, 0)
        } else {
            (spec.sstore_reset_gas, 0)
        });
    }

    let ori_val = context.origin_storage_at(&key[..])?.unwrap();

    let is_noop = new_val == cur_val;
    let is_clean = ori_val == cur_val;

    // CIP-645(d, f): EIP-2200 + EIP-2929
    let charge_gas = if is_noop {
        // no storage op, just load cost for checking
        spec.warm_access_gas
    } else if is_clean && ori_val.is_zero() && space == Space::Ethereum {
        // charge storage write gas + storage occupation gas
        spec.sstore_set_gas * spec.evm_gas_ratio
    } else if is_clean {
        spec.sstore_reset_gas
    } else {
        // other operations has paid for storage write cost
        spec.warm_access_gas
    };

    // CIP-645f: EIP-2929
    let cold_warm_gas = if warm_val { 0 } else { spec.cold_sload_gas };

    let sstore_clear_refund_gas = if space == Space::Ethereum && !is_noop {
        // CIP-645g (EIP-3529) updates the value defined in CIP-645d (EIP-2200)
        let sstore_clears_schedule =
            (spec.sstore_reset_gas + spec.access_list_storage_key_gas) as i64;
        match (ori_val.is_zero(), cur_val.is_zero(), new_val.is_zero()) {
            (false, false, true) => {
                // First time release this entry
                sstore_clears_schedule
            }
            (false, true, false) => {
                // Used to release but occupy again, undo refund
                -sstore_clears_schedule
            }
            _ => 0,
        }
    } else {
        0
    };

    let not_write_db_refund_gas = if ori_val == new_val && !is_clean {
        if ori_val.is_zero() && space == Space::Ethereum {
            // charge storage write gas + storage occupation gas
            spec.sstore_set_gas * spec.evm_gas_ratio - spec.warm_access_gas
        } else {
            spec.sstore_reset_gas - spec.warm_access_gas
        }
    } else {
        0
    };

    Ok((
        charge_gas + cold_warm_gas,
        sstore_clear_refund_gas + not_write_db_refund_gas as i64,
    ))
}

fn calc_call_gas<Gas: CostType>(
    context: &dyn vm::Context, stack: &dyn Stack<U256>, current_gas: Gas,
) -> vm::Result<usize> {
    let spec = context.spec();
    if !spec.cip645.eip_cold_warm_access {
        return Ok(spec.call_gas);
    }

    let address = u256_to_address(stack.peek(1));
    let call_gas = if context.is_warm_account(address) {
        spec.warm_access_gas
    } else {
        spec.cold_account_access_cost
    };

    if current_gas < call_gas.into() {
        // Enough to trigger the out-of-gas
        return Ok(call_gas);
    }

    let Some(delegated_address) = delegated_address(context.extcode(&address)?)
    else {
        return Ok(call_gas);
    };

    Ok(call_gas
        + if context.is_warm_account(delegated_address) {
            spec.warm_access_gas
        } else {
            spec.cold_account_access_cost
        })
}

fn delegated_address(extcode: Option<Arc<Vec<u8>>>) -> Option<Address> {
    let code = extcode?;
    if !code.starts_with(CODE_PREFIX_7702) {
        return None;
    }

    let (_prefix, payload) = code.split_at(CODE_PREFIX_7702.len());

    if payload.len() == Address::len_bytes() {
        Some(Address::from_slice(payload))
    } else {
        None
    }
}

#[test]
fn test_mem_gas_cost() {
    // given
    let gasometer = Gasometer::<U256>::new(U256::zero());
    let spec = Spec::default();
    let current_mem_size = 5;
    let mem_size = !U256::zero();

    // when
    let result = gasometer.mem_gas_cost(&spec, current_mem_size, &mem_size);

    // then
    if result.is_ok() {
        assert!(false, "Should fail with OutOfGas");
    }
}

#[test]
fn test_calculate_mem_cost() {
    // given
    let gasometer = Gasometer::<usize>::new(0);
    let spec = Spec::default();
    let current_mem_size = 0;
    let mem_size = 5;

    // when
    let (mem_cost, new_mem_gas, mem_size) = gasometer
        .mem_gas_cost(&spec, current_mem_size, &mem_size)
        .unwrap();

    // then
    assert_eq!(mem_cost, 3);
    assert_eq!(new_mem_gas, 3);
    assert_eq!(mem_size, 32);
}