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
use crate::{
    circuit_input_builder::{CircuitInputStateRef, ExecStep},
    Error,
};

use eth_types::GethExecStep;

use super::Opcode;

#[derive(Clone, Copy, Debug)]
pub(crate) struct Codesize;

impl Opcode for Codesize {
    fn gen_associated_ops(
        state: &mut CircuitInputStateRef,
        geth_steps: &[GethExecStep],
    ) -> Result<Vec<ExecStep>, Error> {
        let geth_step = &geth_steps[0];
        let mut exec_step = state.new_step(geth_step)?;

        let code_hash = state.call()?.code_hash;
        let code = state.code(code_hash)?;
        let codesize = code.len();

        debug_assert_eq!(codesize, geth_steps[1].stack.last()?.as_usize());

        state.stack_write(
            &mut exec_step,
            geth_step.stack.last_filled().map(|a| a - 1),
            codesize.into(),
        )?;

        Ok(vec![exec_step])
    }
}

#[cfg(test)]
mod codesize_tests {
    use eth_types::{
        bytecode,
        evm_types::{OpcodeId, StackAddress},
        geth_types::GethData,
        Word,
    };
    use mock::{
        test_ctx::helpers::{account_0_code_account_1_no_code, tx_from_1_to_0},
        TestContext,
    };

    use crate::{
        circuit_input_builder::ExecState,
        mock::BlockData,
        operation::{StackOp, RW},
    };

    fn test_ok(large: bool) {
        let mut code = bytecode! {};
        let mut st_addr = 1023;
        if large {
            for _ in 0..128 {
                code.push(1, Word::from(0));
            }
            st_addr -= 128;
        }
        let tail = bytecode! {
            CODESIZE
            STOP
        };
        code.append(&tail);
        let codesize = code.codesize();

        let block: GethData = TestContext::<2, 1>::new(
            None,
            account_0_code_account_1_no_code(code),
            tx_from_1_to_0,
            |block, _tx| block.number(0xcafeu64),
        )
        .unwrap()
        .into();

        let builder = BlockData::new_from_geth_data(block.clone()).new_circuit_input_builder();
        let builder = builder
            .handle_block(&block.eth_block, &block.geth_traces)
            .unwrap();

        let step = builder.block.txs()[0]
            .steps()
            .iter()
            .find(|step| step.exec_state == ExecState::Op(OpcodeId::CODESIZE))
            .unwrap();

        assert_eq!(step.bus_mapping_instance.len(), 1);

        let op = &builder.block.container.stack[step.bus_mapping_instance[0].as_usize()];
        assert_eq!(op.rw(), RW::WRITE);
        assert_eq!(
            op.op(),
            &StackOp::new(1, StackAddress::from(st_addr), Word::from(codesize))
        );
    }

    #[test]
    fn codesize_opcode_impl() {
        test_ok(false);
        test_ok(true);
    }
}