Skip to content

perf(evm): skip zero-size calldata and code copies#554

Closed
ECNUyhy wants to merge 3 commits into
DTVMStack:mainfrom
ECNUyhy:codex/evm-zero-size-copy-fastpath
Closed

perf(evm): skip zero-size calldata and code copies#554
ECNUyhy wants to merge 3 commits into
DTVMStack:mainfrom
ECNUyhy:codex/evm-zero-size-copy-fastpath

Conversation

@ECNUyhy

@ECNUyhy ECNUyhy commented Jun 27, 2026

Copy link
Copy Markdown
Contributor

Return early from JIT codegen when CALLDATACOPY or CODECOPY has a compile-time zero size.

Avoid unnecessary runtime calls, gas-register sync, and memory-size reload work for copy opcodes that do not access memory.

1. Does this PR affect any open issues?(Y/N) and add issue references (e.g. "fix #123", "re #123".):

  • N
  • Y

2. What is the scope of this PR (e.g. component or file name):

3. Provide a description of the PR(e.g. more details, effects, motivations or doc link):

  • Affects user behaviors
  • Contains CI/CD configuration changes
  • Contains documentation changes
  • Contains experimental features
  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Other

4. Are there any breaking changes?(Y/N) and describe the breaking changes(e.g. more details, motivations or doc link):

  • N
  • Y

5. Are there test cases for these changes?(Y/N) select and add more details, references or doc links:

  • Unit test
  • Integration test
  • Benchmark (add benchmark stats below)
  • Manual test (add detailed scripts or steps below)
  • Other

6. Release note

None

Return early from JIT codegen when CALLDATACOPY or CODECOPY has a compile-time zero size.

Avoid unnecessary runtime calls, gas-register sync, and memory-size reload work for copy opcodes that do not access memory.
@github-actions

github-actions Bot commented Jun 27, 2026

Copy link
Copy Markdown

⚡ Performance Regression Check Results

✅ Performance Check Passed (interpreter)

Performance Benchmark Results (threshold: 25%)

Benchmark Baseline (us) Current (us) Change Status
total/main/blake2b_huff/8415nulls 2.44 2.45 +0.2% PASS
total/main/blake2b_huff/empty 0.04 0.04 +9.9% PASS
total/main/blake2b_shifts/8415nulls 15.25 13.55 -11.2% PASS
total/main/sha1_divs/5311 7.95 8.31 +4.5% PASS
total/main/sha1_divs/empty 0.10 0.10 +3.6% PASS
total/main/sha1_shifts/5311 5.58 5.47 -2.0% PASS
total/main/sha1_shifts/empty 0.04 0.04 -0.2% PASS
total/main/snailtracer/benchmark 86.15 88.97 +3.3% PASS
total/main/structarray_alloc/nfts_rank 1.11 1.12 +0.5% PASS
total/main/swap_math/insufficient_liquidity 0.00 0.00 -0.3% PASS
total/main/swap_math/received 0.01 0.01 +1.2% PASS
total/main/swap_math/spent 0.01 0.01 +5.6% PASS
total/main/weierstrudel/1 0.32 0.31 -0.8% PASS
total/main/weierstrudel/15 3.41 3.48 +1.8% PASS
total/micro/JUMPDEST_n0/empty 2.82 2.81 -0.3% PASS
total/micro/jump_around/empty 0.11 0.12 +1.5% PASS
total/micro/loop_with_many_jumpdests/empty 69.68 69.32 -0.5% PASS
total/micro/memory_grow_mload/by1 0.18 0.17 -8.8% PASS
total/micro/memory_grow_mload/by16 0.20 0.19 -7.7% PASS
total/micro/memory_grow_mload/by32 0.11 0.11 +0.3% PASS
total/micro/memory_grow_mload/nogrow 0.09 0.08 -1.9% PASS
total/micro/memory_grow_mstore/by1 0.19 0.19 -0.9% PASS
total/micro/memory_grow_mstore/by16 0.11 0.11 -1.0% PASS
total/micro/memory_grow_mstore/by32 0.24 0.23 -2.5% PASS
total/micro/memory_grow_mstore/nogrow 0.18 0.18 -0.6% PASS
total/micro/signextend/one 0.26 0.26 -0.4% PASS
total/micro/signextend/zero 0.47 0.46 -2.1% PASS
total/synth/ADD/b0 2.03 2.03 +0.0% PASS
total/synth/ADD/b1 2.85 2.88 +1.1% PASS
total/synth/ADDRESS/a0 6.22 5.98 -3.7% PASS
total/synth/ADDRESS/a1 5.11 5.10 -0.2% PASS
total/synth/AND/b0 2.11 2.11 -0.3% PASS
total/synth/AND/b1 2.43 2.29 -5.7% PASS
total/synth/BYTE/b0 6.23 6.22 -0.1% PASS
total/synth/BYTE/b1 8.48 8.21 -3.1% PASS
total/synth/CALLDATASIZE/a0 5.05 5.23 +3.5% PASS
total/synth/CALLDATASIZE/a1 3.35 3.34 -0.3% PASS
total/synth/CALLER/a0 5.89 5.62 -4.4% PASS
total/synth/CALLER/a1 6.25 6.35 +1.6% PASS
total/synth/CALLVALUE/a0 3.51 3.31 -5.8% PASS
total/synth/CALLVALUE/a1 6.06 5.95 -1.7% PASS
total/synth/CODESIZE/a0 5.90 5.89 -0.2% PASS
total/synth/CODESIZE/a1 6.12 6.56 +7.1% PASS
total/synth/DUP1/d0 1.67 1.57 -6.0% PASS
total/synth/DUP1/d1 1.78 1.77 -0.7% PASS
total/synth/DUP10/d0 1.66 1.63 -1.8% PASS
total/synth/DUP10/d1 1.78 1.77 -0.6% PASS
total/synth/DUP11/d0 0.94 1.14 +21.4% PASS
total/synth/DUP11/d1 1.89 1.98 +4.7% PASS
total/synth/DUP12/d0 1.53 1.59 +3.3% PASS
total/synth/DUP12/d1 1.09 1.07 -1.6% PASS
total/synth/DUP13/d0 1.56 1.63 +4.6% PASS
total/synth/DUP13/d1 1.88 1.63 -12.9% PASS
total/synth/DUP14/d0 1.17 1.14 -2.2% PASS
total/synth/DUP14/d1 1.77 1.92 +8.5% PASS
total/synth/DUP15/d0 1.63 1.84 +12.9% PASS
total/synth/DUP15/d1 1.15 1.15 -0.1% PASS
total/synth/DUP16/d0 1.65 1.67 +1.0% PASS
total/synth/DUP16/d1 1.76 1.78 +0.8% PASS
total/synth/DUP2/d0 0.91 0.91 +0.0% PASS
total/synth/DUP2/d1 1.91 1.72 -9.5% PASS
total/synth/DUP3/d0 1.65 1.64 -0.6% PASS
total/synth/DUP3/d1 1.16 1.15 -0.5% PASS
total/synth/DUP4/d0 1.58 1.68 +6.4% PASS
total/synth/DUP4/d1 1.87 1.84 -1.4% PASS
total/synth/DUP5/d0 0.93 1.14 +22.7% PASS
total/synth/DUP5/d1 2.00 1.87 -6.9% PASS
total/synth/DUP6/d0 1.73 1.66 -3.9% PASS
total/synth/DUP6/d1 1.15 1.15 -0.5% PASS
total/synth/DUP7/d0 1.54 1.70 +10.3% PASS
total/synth/DUP7/d1 1.78 1.86 +4.3% PASS
total/synth/DUP8/d0 0.92 1.15 +24.8% PASS
total/synth/DUP8/d1 1.73 1.76 +1.5% PASS
total/synth/DUP9/d0 1.68 1.70 +1.7% PASS
total/synth/DUP9/d1 1.12 1.15 +2.4% PASS
total/synth/EQ/b0 4.54 4.55 +0.3% PASS
total/synth/EQ/b1 4.92 4.93 +0.1% PASS
total/synth/GAS/a0 3.77 3.76 -0.1% PASS
total/synth/GAS/a1 6.74 6.89 +2.2% PASS
total/synth/GT/b0 4.81 4.83 +0.5% PASS
total/synth/GT/b1 5.00 4.97 -0.8% PASS
total/synth/ISZERO/u0 7.08 7.11 +0.5% PASS
total/synth/JUMPDEST/n0 2.83 2.81 -0.6% PASS
total/synth/LT/b0 4.81 4.83 +0.3% PASS
total/synth/LT/b1 4.26 4.27 +0.3% PASS
total/synth/MSIZE/a0 5.48 5.20 -5.0% PASS
total/synth/MSIZE/a1 5.56 5.68 +2.1% PASS
total/synth/MUL/b0 5.57 5.50 -1.3% PASS
total/synth/MUL/b1 5.24 5.25 +0.1% PASS
total/synth/NOT/u0 2.11 2.06 -2.2% PASS
total/synth/OR/b0 2.28 2.30 +1.1% PASS
total/synth/OR/b1 1.67 1.66 -0.2% PASS
total/synth/PC/a0 5.25 5.24 -0.2% PASS
total/synth/PC/a1 3.37 3.36 -0.1% PASS
total/synth/PUSH1/p0 1.77 1.93 +9.3% PASS
total/synth/PUSH1/p1 1.63 1.63 +0.0% PASS
total/synth/PUSH10/p0 1.89 1.86 -1.6% PASS
total/synth/PUSH10/p1 1.63 1.63 -0.1% PASS
total/synth/PUSH11/p0 1.86 1.77 -4.8% PASS
total/synth/PUSH11/p1 2.11 1.97 -6.4% PASS
total/synth/PUSH12/p0 1.20 1.20 +0.2% PASS
total/synth/PUSH12/p1 1.97 1.98 +0.9% PASS
total/synth/PUSH13/p0 1.83 1.84 +0.5% PASS
total/synth/PUSH13/p1 1.65 1.65 +0.3% PASS
total/synth/PUSH14/p0 1.80 1.99 +10.5% PASS
total/synth/PUSH14/p1 1.97 2.01 +2.4% PASS
total/synth/PUSH15/p0 1.21 1.20 -0.7% PASS
total/synth/PUSH15/p1 2.21 2.08 -5.7% PASS
total/synth/PUSH16/p0 1.98 1.93 -2.5% PASS
total/synth/PUSH16/p1 1.63 1.64 +0.3% PASS
total/synth/PUSH17/p0 1.91 1.82 -5.0% PASS
total/synth/PUSH17/p1 2.02 2.02 -0.3% PASS
total/synth/PUSH18/p0 1.20 1.20 +0.1% PASS
total/synth/PUSH18/p1 2.05 2.12 +3.6% PASS
total/synth/PUSH19/p0 1.84 1.78 -3.0% PASS
total/synth/PUSH19/p1 1.64 1.65 +0.7% PASS
total/synth/PUSH2/p0 1.89 1.81 -2.0% PASS
total/synth/PUSH2/p1 2.00 1.99 -0.7% PASS
total/synth/PUSH20/p0 1.92 1.84 -4.2% PASS
total/synth/PUSH20/p1 2.03 2.07 +1.6% PASS
total/synth/PUSH21/p0 1.20 1.20 +0.2% PASS
total/synth/PUSH21/p1 2.01 2.07 +3.0% PASS
total/synth/PUSH22/p0 1.85 1.84 -0.5% PASS
total/synth/PUSH22/p1 1.66 1.65 -0.4% PASS
total/synth/PUSH23/p0 1.79 1.83 +1.9% PASS
total/synth/PUSH23/p1 1.97 2.10 +6.4% PASS
total/synth/PUSH24/p0 1.20 1.20 +0.2% PASS
total/synth/PUSH24/p1 2.04 2.03 -0.4% PASS
total/synth/PUSH25/p0 1.74 1.91 +9.9% PASS
total/synth/PUSH25/p1 1.64 1.64 -0.6% PASS
total/synth/PUSH26/p0 1.95 1.82 -6.4% PASS
total/synth/PUSH26/p1 2.00 2.07 +3.6% PASS
total/synth/PUSH27/p0 1.20 1.20 +0.1% PASS
total/synth/PUSH27/p1 2.11 2.10 -0.6% PASS
total/synth/PUSH28/p0 1.79 1.76 -2.0% PASS
total/synth/PUSH28/p1 1.64 1.64 -0.1% PASS
total/synth/PUSH29/p0 1.85 2.04 +10.6% PASS
total/synth/PUSH29/p1 2.30 2.00 -13.3% PASS
total/synth/PUSH3/p0 1.19 1.20 +0.6% PASS
total/synth/PUSH3/p1 2.26 2.02 -10.6% PASS
total/synth/PUSH30/p0 1.28 1.26 -1.4% PASS
total/synth/PUSH30/p1 2.09 2.04 -2.4% PASS
total/synth/PUSH31/p0 1.82 1.85 +1.6% PASS
total/synth/PUSH31/p1 1.69 1.67 -1.1% PASS
total/synth/PUSH32/p0 2.01 1.87 -6.9% PASS
total/synth/PUSH32/p1 1.99 2.11 +5.8% PASS
total/synth/PUSH4/p0 1.79 1.82 +1.6% PASS
total/synth/PUSH4/p1 1.63 1.63 +0.1% PASS
total/synth/PUSH5/p0 1.80 1.77 -1.7% PASS
total/synth/PUSH5/p1 2.04 1.96 -4.0% PASS
total/synth/PUSH6/p0 1.20 1.23 +3.3% PASS
total/synth/PUSH6/p1 2.04 2.07 +1.8% PASS
total/synth/PUSH7/p0 1.85 1.85 -0.3% PASS
total/synth/PUSH7/p1 1.66 1.66 +0.4% PASS
total/synth/PUSH8/p0 1.84 1.86 +1.1% PASS
total/synth/PUSH8/p1 2.14 2.10 -1.8% PASS
total/synth/PUSH9/p0 1.20 1.20 +0.0% PASS
total/synth/PUSH9/p1 1.94 2.00 +3.0% PASS
total/synth/RETURNDATASIZE/a0 3.27 3.29 +0.7% PASS
total/synth/RETURNDATASIZE/a1 5.67 5.74 +1.1% PASS
total/synth/SAR/b0 3.96 3.95 -0.2% PASS
total/synth/SAR/b1 7.14 7.11 -0.4% PASS
total/synth/SGT/b0 3.60 3.59 -0.3% PASS
total/synth/SGT/b1 3.28 3.28 +0.1% PASS
total/synth/SHL/b0 3.72 3.78 +1.6% PASS
total/synth/SHL/b1 1.79 1.79 -0.1% PASS
total/synth/SHR/b0 3.80 3.78 -0.6% PASS
total/synth/SHR/b1 3.12 3.14 +0.5% PASS
total/synth/SIGNEXTEND/b0 3.20 3.44 +7.2% PASS
total/synth/SIGNEXTEND/b1 6.28 6.82 +8.5% PASS
total/synth/SLT/b0 3.43 3.42 -0.2% PASS
total/synth/SLT/b1 3.81 3.78 -0.9% PASS
total/synth/SUB/b0 2.60 2.68 +3.0% PASS
total/synth/SUB/b1 2.80 2.69 -3.9% PASS
total/synth/SWAP1/s0 1.81 1.81 -0.1% PASS
total/synth/SWAP10/s0 1.82 1.53 -16.0% PASS
total/synth/SWAP11/s0 3.12 3.12 +0.2% PASS
total/synth/SWAP12/s0 3.16 3.14 -0.6% PASS
total/synth/SWAP13/s0 1.82 1.82 +0.1% PASS
total/synth/SWAP14/s0 3.12 3.19 +2.3% PASS
total/synth/SWAP15/s0 3.15 3.12 -1.0% PASS
total/synth/SWAP16/s0 1.84 1.83 -0.6% PASS
total/synth/SWAP2/s0 3.07 3.10 +1.1% PASS
total/synth/SWAP3/s0 3.10 3.15 +1.8% PASS
total/synth/SWAP4/s0 1.81 1.81 -0.2% PASS
total/synth/SWAP5/s0 3.09 3.10 +0.3% PASS
total/synth/SWAP6/s0 3.08 3.12 +1.4% PASS
total/synth/SWAP7/s0 1.82 1.81 -0.2% PASS
total/synth/SWAP8/s0 3.10 3.07 -0.7% PASS
total/synth/SWAP9/s0 3.13 3.10 -1.2% PASS
total/synth/XOR/b0 1.97 2.15 +9.0% PASS
total/synth/XOR/b1 2.21 2.19 -1.2% PASS
total/synth/loop_v1 8.85 9.37 +5.9% PASS
total/synth/loop_v2 8.51 8.98 +5.6% PASS

Summary: 194 benchmarks, 0 regressions


✅ Performance Check Passed (multipass)

Performance Benchmark Results (threshold: 25%)

Benchmark Baseline (us) Current (us) Change Status
total/main/blake2b_huff/8415nulls 1.56 1.47 -5.8% PASS
total/main/blake2b_huff/empty 0.02 0.03 +2.1% PASS
total/main/blake2b_shifts/8415nulls 11.60 11.54 -0.5% PASS
total/main/sha1_divs/5311 9.05 8.98 -0.8% PASS
total/main/sha1_divs/empty 0.11 0.11 -0.4% PASS
total/main/sha1_shifts/5311 6.13 6.11 -0.4% PASS
total/main/sha1_shifts/empty 0.04 0.04 +5.9% PASS
total/main/snailtracer/benchmark 98.96 96.59 -2.4% PASS
total/main/structarray_alloc/nfts_rank 1.01 1.01 -0.2% PASS
total/main/swap_math/insufficient_liquidity 0.00 0.00 +2.5% PASS
total/main/swap_math/received 0.01 0.01 +0.1% PASS
total/main/swap_math/spent 0.01 0.01 -1.0% PASS
total/main/weierstrudel/1 0.33 0.32 -1.9% PASS
total/main/weierstrudel/15 3.54 3.52 -0.6% PASS
total/micro/JUMPDEST_n0/empty 0.00 0.00 +1.3% PASS
total/micro/jump_around/empty 0.06 0.06 -1.2% PASS
total/micro/loop_with_many_jumpdests/empty 0.01 0.01 -0.7% PASS
total/micro/memory_grow_mload/by1 0.02 0.02 -1.1% PASS
total/micro/memory_grow_mload/by16 0.02 0.02 -0.9% PASS
total/micro/memory_grow_mload/by32 0.01 0.01 +1.6% PASS
total/micro/memory_grow_mload/nogrow 0.01 0.01 +0.8% PASS
total/micro/memory_grow_mstore/by1 0.11 0.11 +0.8% PASS
total/micro/memory_grow_mstore/by16 0.08 0.08 +1.9% PASS
total/micro/memory_grow_mstore/by32 0.18 0.18 +0.5% PASS
total/micro/memory_grow_mstore/nogrow 0.11 0.11 -0.3% PASS
total/micro/signextend/one 0.11 0.12 +0.6% PASS
total/micro/signextend/zero 0.25 0.25 +0.4% PASS
total/synth/ADD/b0 0.00 0.00 -2.1% PASS
total/synth/ADD/b1 0.00 0.00 +3.9% PASS
total/synth/ADDRESS/a0 0.26 0.20 -20.4% PASS
total/synth/ADDRESS/a1 0.15 0.15 +0.2% PASS
total/synth/AND/b0 0.00 0.00 +0.2% PASS
total/synth/AND/b1 0.00 0.00 +1.4% PASS
total/synth/BYTE/b0 0.00 0.00 +0.0% PASS
total/synth/BYTE/b1 0.00 0.00 +1.6% PASS
total/synth/CALLDATASIZE/a0 0.13 0.11 -15.5% PASS
total/synth/CALLDATASIZE/a1 0.08 0.08 +0.2% PASS
total/synth/CALLER/a0 0.20 0.24 +15.9% PASS
total/synth/CALLER/a1 0.25 0.21 -13.8% PASS
total/synth/CALLVALUE/a0 0.21 0.21 +0.2% PASS
total/synth/CALLVALUE/a1 0.32 0.28 -14.0% PASS
total/synth/CODESIZE/a0 0.14 0.12 -11.0% PASS
total/synth/CODESIZE/a1 0.12 0.12 -1.8% PASS
total/synth/DUP1/d0 0.00 0.00 +1.8% PASS
total/synth/DUP1/d1 0.00 0.00 +1.2% PASS
total/synth/DUP10/d0 0.00 0.00 +3.5% PASS
total/synth/DUP10/d1 0.00 0.00 +3.0% PASS
total/synth/DUP11/d0 0.00 0.00 +0.4% PASS
total/synth/DUP11/d1 0.00 0.00 +1.6% PASS
total/synth/DUP12/d0 0.00 0.00 +0.4% PASS
total/synth/DUP12/d1 0.00 0.00 +0.4% PASS
total/synth/DUP13/d0 0.00 0.00 +1.5% PASS
total/synth/DUP13/d1 0.00 0.00 +15.2% PASS
total/synth/DUP14/d0 0.00 0.00 -0.1% PASS
total/synth/DUP14/d1 0.00 0.00 -0.6% PASS
total/synth/DUP15/d0 0.00 0.00 +1.5% PASS
total/synth/DUP15/d1 0.00 0.00 +0.3% PASS
total/synth/DUP16/d0 0.00 0.00 +3.0% PASS
total/synth/DUP16/d1 0.00 0.00 -0.3% PASS
total/synth/DUP2/d0 0.00 0.00 -0.2% PASS
total/synth/DUP2/d1 0.00 0.00 -1.0% PASS
total/synth/DUP3/d0 0.00 0.00 +2.8% PASS
total/synth/DUP3/d1 0.00 0.00 -0.1% PASS
total/synth/DUP4/d0 0.00 0.00 +1.8% PASS
total/synth/DUP4/d1 0.00 0.00 +0.7% PASS
total/synth/DUP5/d0 0.00 0.00 -0.2% PASS
total/synth/DUP5/d1 0.00 0.00 +0.7% PASS
total/synth/DUP6/d0 0.00 0.00 +0.2% PASS
total/synth/DUP6/d1 0.00 0.00 -0.7% PASS
total/synth/DUP7/d0 0.00 0.00 +0.6% PASS
total/synth/DUP7/d1 0.00 0.00 -12.7% PASS
total/synth/DUP8/d0 0.00 0.00 +0.2% PASS
total/synth/DUP8/d1 0.00 0.00 +0.9% PASS
total/synth/DUP9/d0 0.00 0.00 -1.2% PASS
total/synth/DUP9/d1 0.00 0.00 -0.9% PASS
total/synth/EQ/b0 0.00 0.00 -2.3% PASS
total/synth/EQ/b1 0.00 0.00 -1.9% PASS
total/synth/GAS/a0 0.52 0.52 -0.1% PASS
total/synth/GAS/a1 0.80 0.81 +1.6% PASS
total/synth/GT/b0 0.00 0.00 +4.7% PASS
total/synth/GT/b1 0.00 0.00 +0.5% PASS
total/synth/ISZERO/u0 0.00 0.00 +5.6% PASS
total/synth/JUMPDEST/n0 0.00 0.00 -0.2% PASS
total/synth/LT/b0 0.00 0.00 +0.2% PASS
total/synth/LT/b1 0.00 0.00 -0.1% PASS
total/synth/MSIZE/a0 0.00 0.00 +5.5% PASS
total/synth/MSIZE/a1 0.00 0.00 +2.6% PASS
total/synth/MUL/b0 0.00 0.00 +4.0% PASS
total/synth/MUL/b1 0.00 0.00 +0.6% PASS
total/synth/NOT/u0 0.00 0.00 +0.3% PASS
total/synth/OR/b0 0.00 0.00 +2.4% PASS
total/synth/OR/b1 0.00 0.00 -0.9% PASS
total/synth/PC/a0 0.00 0.00 +4.3% PASS
total/synth/PC/a1 0.00 0.00 -0.0% PASS
total/synth/PUSH1/p0 0.00 0.00 +1.8% PASS
total/synth/PUSH1/p1 0.00 0.00 +1.7% PASS
total/synth/PUSH10/p0 0.00 0.00 +0.6% PASS
total/synth/PUSH10/p1 0.00 0.00 -1.2% PASS
total/synth/PUSH11/p0 0.00 0.00 -3.7% PASS
total/synth/PUSH11/p1 0.00 0.00 +2.3% PASS
total/synth/PUSH12/p0 0.00 0.00 +0.3% PASS
total/synth/PUSH12/p1 0.00 0.00 +0.5% PASS
total/synth/PUSH13/p0 0.00 0.00 -3.6% PASS
total/synth/PUSH13/p1 0.00 0.00 +3.5% PASS
total/synth/PUSH14/p0 0.00 0.00 -0.7% PASS
total/synth/PUSH14/p1 0.00 0.00 +6.2% PASS
total/synth/PUSH15/p0 0.00 0.00 +0.2% PASS
total/synth/PUSH15/p1 0.00 0.00 -5.0% PASS
total/synth/PUSH16/p0 0.00 0.00 +2.1% PASS
total/synth/PUSH16/p1 0.00 0.00 +5.2% PASS
total/synth/PUSH17/p0 0.00 0.00 +1.4% PASS
total/synth/PUSH17/p1 0.00 0.00 -5.4% PASS
total/synth/PUSH18/p0 0.00 0.00 +9.1% PASS
total/synth/PUSH18/p1 0.00 0.00 -6.1% PASS
total/synth/PUSH19/p0 0.00 0.00 -0.4% PASS
total/synth/PUSH19/p1 0.00 0.00 +0.7% PASS
total/synth/PUSH2/p0 0.00 0.00 -0.3% PASS
total/synth/PUSH2/p1 0.00 0.00 +0.5% PASS
total/synth/PUSH20/p0 0.00 0.00 +7.3% PASS
total/synth/PUSH20/p1 0.00 0.00 +4.7% PASS
total/synth/PUSH21/p0 0.00 0.00 +2.7% PASS
total/synth/PUSH21/p1 0.00 0.00 +6.8% PASS
total/synth/PUSH22/p0 1.99 2.08 +4.3% PASS
total/synth/PUSH22/p1 1.44 1.43 -0.7% PASS
total/synth/PUSH23/p0 2.04 2.05 +0.3% PASS
total/synth/PUSH23/p1 2.06 2.01 -2.4% PASS
total/synth/PUSH24/p0 1.41 1.40 -0.8% PASS
total/synth/PUSH24/p1 2.06 2.06 -0.2% PASS
total/synth/PUSH25/p0 2.03 2.06 +1.6% PASS
total/synth/PUSH25/p1 1.45 1.44 -0.5% PASS
total/synth/PUSH26/p0 2.05 2.16 +5.6% PASS
total/synth/PUSH26/p1 2.07 2.06 -0.8% PASS
total/synth/PUSH27/p0 1.41 1.42 +0.5% PASS
total/synth/PUSH27/p1 2.07 2.06 -0.3% PASS
total/synth/PUSH28/p0 2.05 2.03 -1.0% PASS
total/synth/PUSH28/p1 1.45 1.45 +0.0% PASS
total/synth/PUSH29/p0 2.05 2.04 -0.1% PASS
total/synth/PUSH29/p1 2.08 2.08 -0.1% PASS
total/synth/PUSH3/p0 0.00 0.00 -0.5% PASS
total/synth/PUSH3/p1 0.00 0.00 +2.4% PASS
total/synth/PUSH30/p0 1.41 1.39 -1.1% PASS
total/synth/PUSH30/p1 2.06 2.07 +0.2% PASS
total/synth/PUSH31/p0 2.05 2.04 -0.3% PASS
total/synth/PUSH31/p1 1.51 1.46 -3.2% PASS
total/synth/PUSH32/p0 2.05 2.05 -0.1% PASS
total/synth/PUSH32/p1 2.08 2.07 -0.9% PASS
total/synth/PUSH4/p0 0.00 0.00 +1.4% PASS
total/synth/PUSH4/p1 0.00 0.00 -2.6% PASS
total/synth/PUSH5/p0 0.00 0.00 +3.4% PASS
total/synth/PUSH5/p1 0.00 0.00 -0.0% PASS
total/synth/PUSH6/p0 0.00 0.00 +2.6% PASS
total/synth/PUSH6/p1 0.00 0.00 +5.0% PASS
total/synth/PUSH7/p0 0.00 0.00 +0.2% PASS
total/synth/PUSH7/p1 0.00 0.00 +2.5% PASS
total/synth/PUSH8/p0 0.00 0.00 -5.3% PASS
total/synth/PUSH8/p1 0.00 0.00 -1.0% PASS
total/synth/PUSH9/p0 0.00 0.00 +1.4% PASS
total/synth/PUSH9/p1 0.00 0.00 +4.3% PASS
total/synth/RETURNDATASIZE/a0 0.04 0.04 -4.1% PASS
total/synth/RETURNDATASIZE/a1 0.05 0.05 +0.6% PASS
total/synth/SAR/b0 0.00 0.00 -0.8% PASS
total/synth/SAR/b1 0.00 0.00 +3.4% PASS
total/synth/SGT/b0 0.00 0.00 -0.1% PASS
total/synth/SGT/b1 0.00 0.00 -0.0% PASS
total/synth/SHL/b0 0.00 0.00 -0.0% PASS
total/synth/SHL/b1 0.00 0.00 -0.2% PASS
total/synth/SHR/b0 0.00 0.00 +3.4% PASS
total/synth/SHR/b1 0.00 0.00 +0.8% PASS
total/synth/SIGNEXTEND/b0 0.00 0.00 -0.5% PASS
total/synth/SIGNEXTEND/b1 0.00 0.00 +0.6% PASS
total/synth/SLT/b0 0.00 0.00 -0.0% PASS
total/synth/SLT/b1 0.00 0.00 +0.2% PASS
total/synth/SUB/b0 0.00 0.00 -1.5% PASS
total/synth/SUB/b1 0.00 0.00 +3.4% PASS
total/synth/SWAP1/s0 0.00 0.00 -0.4% PASS
total/synth/SWAP10/s0 0.00 0.00 -0.9% PASS
total/synth/SWAP11/s0 0.00 0.00 +2.2% PASS
total/synth/SWAP12/s0 0.00 0.00 -5.9% PASS
total/synth/SWAP13/s0 0.00 0.00 -1.5% PASS
total/synth/SWAP14/s0 0.00 0.00 +0.3% PASS
total/synth/SWAP15/s0 0.00 0.00 +1.9% PASS
total/synth/SWAP16/s0 0.00 0.00 +0.9% PASS
total/synth/SWAP2/s0 0.00 0.00 +7.2% PASS
total/synth/SWAP3/s0 0.00 0.00 +0.4% PASS
total/synth/SWAP4/s0 0.00 0.00 -0.3% PASS
total/synth/SWAP5/s0 0.00 0.00 +2.6% PASS
total/synth/SWAP6/s0 0.00 0.00 +4.5% PASS
total/synth/SWAP7/s0 0.00 0.00 +0.2% PASS
total/synth/SWAP8/s0 0.00 0.00 +2.9% PASS
total/synth/SWAP9/s0 0.00 0.00 -1.3% PASS
total/synth/XOR/b0 0.00 0.00 +1.6% PASS
total/synth/XOR/b1 0.00 0.00 +0.8% PASS
total/synth/loop_v1 9.18 9.26 +0.8% PASS
total/synth/loop_v2 9.31 9.32 +0.1% PASS

Summary: 194 benchmarks, 0 regressions


@ECNUyhy ECNUyhy closed this Jun 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant