Skip to content

perf(compiler): optimize EVM BYTE lowering#434

Open
ZR74 wants to merge 2 commits intoDTVMStack:mainfrom
ZR74:pr-byte
Open

perf(compiler): optimize EVM BYTE lowering#434
ZR74 wants to merge 2 commits intoDTVMStack:mainfrom
ZR74:pr-byte

Conversation

@ZR74
Copy link
Copy Markdown
Contributor

@ZR74 ZR74 commented Mar 27, 2026

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

Copilot AI review requested due to automatic review settings March 27, 2026 05:13
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Optimizes EVM BYTE opcode lowering in the MIR builder to reduce instruction count and improve constant-folding, aiming to speed up compilation and/or generated code for BYTE usage.

Changes:

  • Adds constant-folding paths for BYTE when index (and optionally value) is constant.
  • Replaces bit-shift/div/mod-by-64 logic with byte-granular arithmetic (/8, %8) using shifts and masks.
  • Introduces a two-level select tree to choose the source 64-bit limb with shorter live ranges.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@github-actions
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 1.49 1.51 +1.3% PASS
total/main/blake2b_huff/empty 0.02 0.02 +0.9% PASS
total/main/blake2b_shifts/8415nulls 11.54 12.12 +5.1% PASS
total/main/sha1_divs/5311 5.09 5.10 +0.3% PASS
total/main/sha1_divs/empty 0.06 0.06 -0.5% PASS
total/main/sha1_shifts/5311 2.78 2.84 +1.9% PASS
total/main/sha1_shifts/empty 0.04 0.04 +1.0% PASS
total/main/snailtracer/benchmark 52.82 52.81 -0.0% PASS
total/main/structarray_alloc/nfts_rank 1.03 1.08 +4.2% PASS
total/main/swap_math/insufficient_liquidity 0.00 0.00 +0.3% PASS
total/main/swap_math/received 0.01 0.01 +0.4% PASS
total/main/swap_math/spent 0.00 0.00 -0.8% PASS
total/main/weierstrudel/1 0.29 0.29 -0.2% PASS
total/main/weierstrudel/15 3.17 3.16 -0.2% PASS
total/micro/JUMPDEST_n0/empty 1.68 1.64 -2.4% PASS
total/micro/jump_around/empty 0.10 0.10 +0.3% PASS
total/micro/loop_with_many_jumpdests/empty 29.40 25.00 -15.0% PASS
total/micro/memory_grow_mload/by1 0.09 0.09 -4.1% PASS
total/micro/memory_grow_mload/by16 0.10 0.10 -3.8% PASS
total/micro/memory_grow_mload/by32 0.11 0.11 +0.8% PASS
total/micro/memory_grow_mload/nogrow 0.09 0.09 -3.8% PASS
total/micro/memory_grow_mstore/by1 0.09 0.10 +4.6% PASS
total/micro/memory_grow_mstore/by16 0.11 0.11 +0.2% PASS
total/micro/memory_grow_mstore/by32 0.12 0.12 -0.1% PASS
total/micro/memory_grow_mstore/nogrow 0.09 0.09 -0.9% PASS
total/micro/signextend/one 0.24 0.24 -0.2% PASS
total/micro/signextend/zero 0.24 0.24 -0.0% PASS
total/synth/ADD/b0 3.51 3.53 +0.6% PASS
total/synth/ADD/b1 2.00 2.00 -0.2% PASS
total/synth/ADDRESS/a0 4.83 4.83 +0.0% PASS
total/synth/ADDRESS/a1 5.27 5.29 +0.4% PASS
total/synth/AND/b0 1.64 1.64 +0.0% PASS
total/synth/AND/b1 1.70 1.70 -0.0% PASS
total/synth/BYTE/b0 6.04 6.04 +0.0% PASS
total/synth/BYTE/b1 4.72 4.74 +0.3% PASS
total/synth/CALLDATASIZE/a0 3.18 3.19 +0.2% PASS
total/synth/CALLDATASIZE/a1 4.04 4.07 +0.6% PASS
total/synth/CALLER/a0 4.83 4.83 +0.0% PASS
total/synth/CALLER/a1 5.36 5.39 +0.4% PASS
total/synth/CALLVALUE/a0 3.16 3.10 -1.8% PASS
total/synth/CALLVALUE/a1 3.36 3.36 +0.0% PASS
total/synth/CODESIZE/a0 3.58 3.43 -4.1% PASS
total/synth/CODESIZE/a1 3.77 3.78 +0.4% PASS
total/synth/DUP1/d0 1.06 1.06 +0.0% PASS
total/synth/DUP1/d1 1.23 1.23 -0.1% PASS
total/synth/DUP10/d0 1.07 0.94 -12.2% PASS
total/synth/DUP10/d1 1.16 0.92 -20.7% PASS
total/synth/DUP11/d0 0.83 1.07 +29.1% PASS
total/synth/DUP11/d1 1.16 0.92 -20.7% PASS
total/synth/DUP12/d0 0.83 1.07 +28.8% PASS
total/synth/DUP12/d1 1.16 0.92 -20.7% PASS
total/synth/DUP13/d0 1.07 1.08 +0.7% PASS
total/synth/DUP13/d1 1.16 0.92 -20.8% PASS
total/synth/DUP14/d0 1.07 1.07 +0.1% PASS
total/synth/DUP14/d1 0.92 0.92 -0.5% PASS
total/synth/DUP15/d0 1.07 1.07 +0.2% PASS
total/synth/DUP15/d1 1.16 0.92 -20.1% PASS
total/synth/DUP16/d0 0.83 1.07 +28.6% PASS
total/synth/DUP16/d1 1.16 0.92 -20.6% PASS
total/synth/DUP2/d0 1.07 1.10 +3.0% PASS
total/synth/DUP2/d1 1.16 1.03 -10.7% PASS
total/synth/DUP3/d0 0.83 1.07 +29.4% PASS
total/synth/DUP3/d1 0.93 1.16 +23.8% PASS
total/synth/DUP4/d0 1.06 1.07 +1.1% PASS
total/synth/DUP4/d1 1.16 0.92 -20.6% PASS
total/synth/DUP5/d0 0.83 1.07 +29.3% PASS
total/synth/DUP5/d1 0.92 0.92 -0.3% PASS
total/synth/DUP6/d0 1.07 1.07 +0.2% PASS
total/synth/DUP6/d1 1.16 0.99 -14.0% PASS
total/synth/DUP7/d0 0.83 1.07 +29.3% PASS
total/synth/DUP7/d1 1.16 1.15 -0.2% PASS
total/synth/DUP8/d0 1.07 1.07 +0.1% PASS
total/synth/DUP8/d1 1.16 0.92 -20.8% PASS
total/synth/DUP9/d0 1.07 1.07 -0.1% PASS
total/synth/DUP9/d1 1.16 1.15 -0.2% PASS
total/synth/EQ/b0 2.72 2.72 -0.0% PASS
total/synth/EQ/b1 1.40 1.39 -0.2% PASS
total/synth/GAS/a0 3.67 3.67 -0.0% PASS
total/synth/GAS/a1 3.68 3.70 +0.4% PASS
total/synth/GT/b0 2.61 2.61 -0.0% PASS
total/synth/GT/b1 1.39 1.39 -0.2% PASS
total/synth/ISZERO/u0 0.99 0.99 -0.1% PASS
total/synth/JUMPDEST/n0 1.78 1.63 -8.2% PASS
total/synth/LT/b0 2.67 2.67 +0.0% PASS
total/synth/LT/b1 1.39 1.39 -0.2% PASS
total/synth/MSIZE/a0 4.25 4.25 +0.0% PASS
total/synth/MSIZE/a1 4.65 4.68 +0.5% PASS
total/synth/MUL/b0 5.30 5.30 -0.0% PASS
total/synth/MUL/b1 5.29 5.30 +0.0% PASS
total/synth/NOT/u0 1.68 1.68 +0.0% PASS
total/synth/OR/b0 1.63 1.63 +0.0% PASS
total/synth/OR/b1 1.71 1.71 +0.0% PASS
total/synth/PC/a0 3.18 3.17 -0.2% PASS
total/synth/PC/a1 4.04 4.06 +0.5% PASS
total/synth/PUSH1/p0 0.83 1.07 +28.4% PASS
total/synth/PUSH1/p1 1.13 1.13 -0.0% PASS
total/synth/PUSH10/p0 0.85 1.07 +25.4% PASS
total/synth/PUSH10/p1 1.24 1.22 -1.3% PASS
total/synth/PUSH11/p0 0.83 0.84 +1.6% PASS
total/synth/PUSH11/p1 1.23 1.21 -1.9% PASS
total/synth/PUSH12/p0 0.85 0.85 +0.1% PASS
total/synth/PUSH12/p1 1.23 1.23 +0.5% PASS
total/synth/PUSH13/p0 1.07 1.07 -0.2% PASS
total/synth/PUSH13/p1 1.21 1.21 -0.1% PASS
total/synth/PUSH14/p0 0.91 1.08 +18.0% PASS
total/synth/PUSH14/p1 1.22 1.23 +1.1% PASS
total/synth/PUSH15/p0 1.07 0.85 -20.7% PASS
total/synth/PUSH15/p1 1.30 1.32 +1.9% PASS
total/synth/PUSH16/p0 1.07 0.85 -20.2% PASS
total/synth/PUSH16/p1 1.22 1.23 +1.1% PASS
total/synth/PUSH17/p0 0.85 0.84 -0.8% PASS
total/synth/PUSH17/p1 1.20 1.23 +2.0% PASS
total/synth/PUSH18/p0 0.85 1.07 +26.1% PASS
total/synth/PUSH18/p1 1.21 1.24 +2.3% PASS
total/synth/PUSH19/p0 0.85 1.07 +26.0% PASS
total/synth/PUSH19/p1 1.21 1.21 -0.4% PASS
total/synth/PUSH2/p0 0.80 0.84 +5.8% PASS
total/synth/PUSH2/p1 1.15 1.15 -0.2% PASS
total/synth/PUSH20/p0 1.07 1.07 -0.0% PASS
total/synth/PUSH20/p1 1.22 1.24 +1.0% PASS
total/synth/PUSH21/p0 0.85 0.85 +0.1% PASS
total/synth/PUSH21/p1 1.22 1.23 +1.0% PASS
total/synth/PUSH22/p0 1.07 1.03 -3.2% PASS
total/synth/PUSH22/p1 1.24 1.23 -1.0% PASS
total/synth/PUSH23/p0 0.85 1.07 +26.2% PASS
total/synth/PUSH23/p1 1.25 1.26 +1.0% PASS
total/synth/PUSH24/p0 0.86 1.07 +24.6% PASS
total/synth/PUSH24/p1 1.24 1.23 -0.6% PASS
total/synth/PUSH25/p0 0.85 1.07 +25.2% PASS
total/synth/PUSH25/p1 1.22 1.23 +0.6% PASS
total/synth/PUSH26/p0 1.07 0.97 -9.1% PASS
total/synth/PUSH26/p1 1.24 1.23 -0.8% PASS
total/synth/PUSH27/p0 0.85 1.07 +26.1% PASS
total/synth/PUSH27/p1 1.23 1.24 +0.5% PASS
total/synth/PUSH28/p0 0.86 0.85 -1.5% PASS
total/synth/PUSH28/p1 1.24 1.24 -0.5% PASS
total/synth/PUSH29/p0 0.85 0.85 +0.1% PASS
total/synth/PUSH29/p1 1.23 1.22 -0.5% PASS
total/synth/PUSH3/p0 1.07 1.07 -0.0% PASS
total/synth/PUSH3/p1 1.16 1.17 +0.9% PASS
total/synth/PUSH30/p0 0.96 1.01 +5.8% PASS
total/synth/PUSH30/p1 1.24 1.25 +0.3% PASS
total/synth/PUSH31/p0 0.85 1.07 +25.9% PASS
total/synth/PUSH31/p1 1.34 1.35 +1.0% PASS
total/synth/PUSH32/p0 0.84 1.07 +27.3% PASS
total/synth/PUSH32/p1 1.24 1.24 +0.0% PASS
total/synth/PUSH4/p0 1.07 0.84 -21.4% PASS
total/synth/PUSH4/p1 1.20 1.20 -0.3% PASS
total/synth/PUSH5/p0 0.84 1.07 +27.1% PASS
total/synth/PUSH5/p1 1.21 1.20 -0.1% PASS
total/synth/PUSH6/p0 0.85 1.07 +26.2% PASS
total/synth/PUSH6/p1 1.23 1.23 +0.3% PASS
total/synth/PUSH7/p0 0.85 0.84 -0.8% PASS
total/synth/PUSH7/p1 1.22 1.23 +1.2% PASS
total/synth/PUSH8/p0 1.07 1.07 +0.1% PASS
total/synth/PUSH8/p1 1.21 1.23 +1.7% PASS
total/synth/PUSH9/p0 0.85 0.84 -0.3% PASS
total/synth/PUSH9/p1 1.21 1.24 +2.5% PASS
total/synth/RETURNDATASIZE/a0 3.33 3.26 -1.9% PASS
total/synth/RETURNDATASIZE/a1 3.60 3.62 +0.5% PASS
total/synth/SAR/b0 3.77 3.77 -0.0% PASS
total/synth/SAR/b1 4.27 4.29 +0.6% PASS
total/synth/SGT/b0 2.60 2.60 -0.0% PASS
total/synth/SGT/b1 1.64 1.64 -0.0% PASS
total/synth/SHL/b0 3.05 3.05 -0.0% PASS
total/synth/SHL/b1 1.64 1.63 -0.2% PASS
total/synth/SHR/b0 3.10 3.11 +0.0% PASS
total/synth/SHR/b1 1.51 1.51 -0.2% PASS
total/synth/SIGNEXTEND/b0 3.37 3.37 +0.0% PASS
total/synth/SIGNEXTEND/b1 3.55 3.54 -0.2% PASS
total/synth/SLT/b0 2.59 2.59 -0.1% PASS
total/synth/SLT/b1 1.64 1.64 -0.0% PASS
total/synth/SUB/b0 1.94 1.94 +0.0% PASS
total/synth/SUB/b1 1.98 1.97 -0.2% PASS
total/synth/SWAP1/s0 1.49 1.49 +0.0% PASS
total/synth/SWAP10/s0 1.50 1.50 -0.0% PASS
total/synth/SWAP11/s0 1.51 1.51 +0.0% PASS
total/synth/SWAP12/s0 1.51 1.51 +0.0% PASS
total/synth/SWAP13/s0 1.51 1.51 +0.2% PASS
total/synth/SWAP14/s0 1.51 1.51 +0.0% PASS
total/synth/SWAP15/s0 1.51 1.51 +0.0% PASS
total/synth/SWAP16/s0 1.51 1.51 +0.0% PASS
total/synth/SWAP2/s0 1.49 1.49 +0.0% PASS
total/synth/SWAP3/s0 1.49 1.49 -0.1% PASS
total/synth/SWAP4/s0 1.49 1.49 -0.0% PASS
total/synth/SWAP5/s0 1.49 1.49 +0.1% PASS
total/synth/SWAP6/s0 1.50 1.50 +0.0% PASS
total/synth/SWAP7/s0 1.50 1.50 -0.1% PASS
total/synth/SWAP8/s0 1.50 1.50 -0.0% PASS
total/synth/SWAP9/s0 1.50 1.50 -0.1% PASS
total/synth/XOR/b0 1.55 1.55 -0.0% PASS
total/synth/XOR/b1 1.55 1.55 -0.2% PASS
total/synth/loop_v1 4.75 4.74 -0.1% PASS
total/synth/loop_v2 4.74 4.75 +0.2% 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.52 1.92 +26.0% PASS
total/main/blake2b_huff/empty 0.07 0.08 +7.7% PASS
total/main/blake2b_shifts/8415nulls 5.26 5.21 -1.0% PASS
total/main/sha1_divs/5311 1.89 1.89 +0.1% PASS
total/main/sha1_divs/empty 0.03 0.03 +0.1% PASS
total/main/sha1_shifts/5311 2.76 2.76 +0.0% PASS
total/main/sha1_shifts/empty 0.04 0.04 +0.0% PASS
total/main/snailtracer/benchmark 52.37 52.33 -0.1% PASS
total/main/structarray_alloc/nfts_rank 0.29 0.29 -0.4% PASS
total/main/swap_math/insufficient_liquidity 0.02 0.02 +1.4% PASS
total/main/swap_math/received 0.02 0.02 +0.4% PASS
total/main/swap_math/spent 0.02 0.02 +0.8% PASS
total/main/weierstrudel/1 0.36 0.38 +5.2% PASS
total/main/weierstrudel/15 3.22 3.48 +7.9% PASS
total/micro/JUMPDEST_n0/empty 0.13 0.13 +0.2% PASS
total/micro/jump_around/empty 0.62 0.62 -0.7% PASS
total/micro/loop_with_many_jumpdests/empty 1.96 1.95 -0.3% PASS
total/micro/memory_grow_mload/by1 0.18 0.18 -0.0% PASS
total/micro/memory_grow_mload/by16 0.19 0.20 +0.6% PASS
total/micro/memory_grow_mload/by32 0.21 0.21 -0.0% PASS
total/micro/memory_grow_mload/nogrow 0.18 0.18 -4.1% PASS
total/micro/memory_grow_mstore/by1 0.19 0.19 +0.4% PASS
total/micro/memory_grow_mstore/by16 0.23 0.20 -13.1% PASS
total/micro/memory_grow_mstore/by32 0.22 0.22 +1.1% PASS
total/micro/memory_grow_mstore/nogrow 0.19 0.18 -2.8% PASS
total/micro/signextend/one 0.35 0.35 -0.3% PASS
total/micro/signextend/zero 0.35 0.35 -0.4% PASS
total/synth/ADD/b0 0.01 0.01 +0.0% PASS
total/synth/ADD/b1 0.01 0.01 -0.0% PASS
total/synth/ADDRESS/a0 0.16 0.16 +0.4% PASS
total/synth/ADDRESS/a1 0.16 0.16 -0.2% PASS
total/synth/AND/b0 0.01 0.01 -0.1% PASS
total/synth/AND/b1 0.01 0.01 -0.0% PASS
total/synth/BYTE/b0 1.95 0.01 -99.5% PASS
total/synth/BYTE/b1 2.32 0.01 -99.5% PASS
total/synth/CALLDATASIZE/a0 0.08 0.08 -5.0% PASS
total/synth/CALLDATASIZE/a1 0.08 0.08 -5.1% PASS
total/synth/CALLER/a0 0.16 0.16 -0.2% PASS
total/synth/CALLER/a1 0.16 0.16 -0.0% PASS
total/synth/CALLVALUE/a0 0.27 0.27 +0.1% PASS
total/synth/CALLVALUE/a1 0.28 0.28 +0.1% PASS
total/synth/CODESIZE/a0 0.08 0.08 -0.0% PASS
total/synth/CODESIZE/a1 0.08 0.08 +0.0% PASS
total/synth/DUP1/d0 0.01 0.01 +0.0% PASS
total/synth/DUP1/d1 0.01 0.01 +0.1% PASS
total/synth/DUP10/d0 0.01 0.01 -0.1% PASS
total/synth/DUP10/d1 0.01 0.01 -0.0% PASS
total/synth/DUP11/d0 0.01 0.01 -0.1% PASS
total/synth/DUP11/d1 0.01 0.01 -0.2% PASS
total/synth/DUP12/d0 0.01 0.01 +0.0% PASS
total/synth/DUP12/d1 0.01 0.01 +0.0% PASS
total/synth/DUP13/d0 0.01 0.01 -0.0% PASS
total/synth/DUP13/d1 0.01 0.01 -0.0% PASS
total/synth/DUP14/d0 0.01 0.01 -0.1% PASS
total/synth/DUP14/d1 0.01 0.01 +0.0% PASS
total/synth/DUP15/d0 0.01 0.01 -0.2% PASS
total/synth/DUP15/d1 0.01 0.01 -0.1% PASS
total/synth/DUP16/d0 0.01 0.01 -0.0% PASS
total/synth/DUP16/d1 0.01 0.01 -0.1% PASS
total/synth/DUP2/d0 0.01 0.01 -0.1% PASS
total/synth/DUP2/d1 0.01 0.01 -0.0% PASS
total/synth/DUP3/d0 0.01 0.01 -0.0% PASS
total/synth/DUP3/d1 0.01 0.01 -0.1% PASS
total/synth/DUP4/d0 0.01 0.01 -0.0% PASS
total/synth/DUP4/d1 0.01 0.01 +0.3% PASS
total/synth/DUP5/d0 0.01 0.01 +0.0% PASS
total/synth/DUP5/d1 0.01 0.01 +0.1% PASS
total/synth/DUP6/d0 0.01 0.01 -0.1% PASS
total/synth/DUP6/d1 0.01 0.01 -0.1% PASS
total/synth/DUP7/d0 0.01 0.01 -0.1% PASS
total/synth/DUP7/d1 0.01 0.01 -0.1% PASS
total/synth/DUP8/d0 0.01 0.01 -0.0% PASS
total/synth/DUP8/d1 0.01 0.01 -0.2% PASS
total/synth/DUP9/d0 0.01 0.01 -0.0% PASS
total/synth/DUP9/d1 0.01 0.01 -0.1% PASS
total/synth/EQ/b0 0.01 0.01 -0.0% PASS
total/synth/EQ/b1 0.01 0.01 -0.3% PASS
total/synth/GAS/a0 0.80 0.80 -0.2% PASS
total/synth/GAS/a1 0.76 0.76 -0.0% PASS
total/synth/GT/b0 0.01 0.01 -0.1% PASS
total/synth/GT/b1 0.01 0.01 -0.0% PASS
total/synth/ISZERO/u0 0.01 0.01 -0.0% PASS
total/synth/JUMPDEST/n0 0.13 0.13 +0.1% PASS
total/synth/LT/b0 0.01 0.01 +0.0% PASS
total/synth/LT/b1 0.01 0.01 +0.0% PASS
total/synth/MSIZE/a0 0.01 0.01 -0.0% PASS
total/synth/MSIZE/a1 0.01 0.01 -0.0% PASS
total/synth/MUL/b0 0.01 0.01 -0.1% PASS
total/synth/MUL/b1 0.01 0.01 +0.3% PASS
total/synth/NOT/u0 0.01 0.01 -0.0% PASS
total/synth/OR/b0 0.01 0.01 -0.1% PASS
total/synth/OR/b1 0.01 0.01 -0.0% PASS
total/synth/PC/a0 0.01 0.01 -0.0% PASS
total/synth/PC/a1 0.01 0.01 +0.0% PASS
total/synth/PUSH1/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH1/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH10/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH10/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH11/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH11/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH12/p0 0.01 0.01 -0.0% PASS
total/synth/PUSH12/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH13/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH13/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH14/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH14/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH15/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH15/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH16/p0 0.01 0.01 -0.2% PASS
total/synth/PUSH16/p1 0.01 0.01 -0.2% PASS
total/synth/PUSH17/p0 0.01 0.01 -0.2% PASS
total/synth/PUSH17/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH18/p0 0.01 0.01 -0.0% PASS
total/synth/PUSH18/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH19/p0 0.01 0.01 -0.2% PASS
total/synth/PUSH19/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH2/p0 0.01 0.01 +0.0% PASS
total/synth/PUSH2/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH20/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH20/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH21/p0 0.01 0.01 -0.0% PASS
total/synth/PUSH21/p1 0.01 0.01 -0.1% PASS
total/synth/PUSH22/p0 1.11 1.08 -3.0% PASS
total/synth/PUSH22/p1 1.25 1.25 +0.2% PASS
total/synth/PUSH23/p0 1.08 1.08 -0.0% PASS
total/synth/PUSH23/p1 1.23 1.25 +1.2% PASS
total/synth/PUSH24/p0 1.08 1.08 -0.1% PASS
total/synth/PUSH24/p1 1.24 1.25 +0.5% PASS
total/synth/PUSH25/p0 1.08 1.08 -0.0% PASS
total/synth/PUSH25/p1 1.26 1.25 -0.7% PASS
total/synth/PUSH26/p0 0.84 0.84 +0.3% PASS
total/synth/PUSH26/p1 1.24 1.25 +0.6% PASS
total/synth/PUSH27/p0 1.08 1.08 -0.1% PASS
total/synth/PUSH27/p1 1.25 1.25 -0.1% PASS
total/synth/PUSH28/p0 1.08 1.08 +0.1% PASS
total/synth/PUSH28/p1 1.25 1.26 +0.4% PASS
total/synth/PUSH29/p0 1.08 1.08 -0.0% PASS
total/synth/PUSH29/p1 1.26 1.26 -0.4% PASS
total/synth/PUSH3/p0 0.01 0.01 +0.0% PASS
total/synth/PUSH3/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH30/p0 1.09 1.09 -0.2% PASS
total/synth/PUSH30/p1 1.23 1.26 +2.4% PASS
total/synth/PUSH31/p0 1.08 1.08 +0.1% PASS
total/synth/PUSH31/p1 1.33 1.33 -0.3% PASS
total/synth/PUSH32/p0 1.08 1.08 -0.2% PASS
total/synth/PUSH32/p1 1.24 1.26 +0.9% PASS
total/synth/PUSH4/p0 0.01 0.01 -0.0% PASS
total/synth/PUSH4/p1 0.01 0.01 -0.2% PASS
total/synth/PUSH5/p0 0.01 0.01 +0.1% PASS
total/synth/PUSH5/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH6/p0 0.01 0.01 +0.0% PASS
total/synth/PUSH6/p1 0.01 0.01 +0.0% PASS
total/synth/PUSH7/p0 0.01 0.01 +0.1% PASS
total/synth/PUSH7/p1 0.01 0.01 -0.0% PASS
total/synth/PUSH8/p0 0.01 0.01 -0.0% PASS
total/synth/PUSH8/p1 0.01 0.01 +0.1% PASS
total/synth/PUSH9/p0 0.01 0.01 -0.1% PASS
total/synth/PUSH9/p1 0.01 0.01 -0.0% PASS
total/synth/RETURNDATASIZE/a0 0.53 0.61 +15.4% PASS
total/synth/RETURNDATASIZE/a1 0.49 0.57 +16.6% PASS
total/synth/SAR/b0 3.78 3.78 -0.2% PASS
total/synth/SAR/b1 4.28 4.29 +0.3% PASS
total/synth/SGT/b0 0.01 0.01 +0.0% PASS
total/synth/SGT/b1 0.01 0.01 -0.0% PASS
total/synth/SHL/b0 3.06 3.06 +0.1% PASS
total/synth/SHL/b1 1.64 1.65 +0.8% PASS
total/synth/SHR/b0 3.11 3.11 +0.0% PASS
total/synth/SHR/b1 1.52 1.53 +0.5% PASS
total/synth/SIGNEXTEND/b0 3.13 3.12 -0.1% PASS
total/synth/SIGNEXTEND/b1 3.56 3.57 +0.5% PASS
total/synth/SLT/b0 0.01 0.01 -0.1% PASS
total/synth/SLT/b1 0.01 0.01 -0.0% PASS
total/synth/SUB/b0 0.01 0.01 -0.1% PASS
total/synth/SUB/b1 0.01 0.01 -0.0% PASS
total/synth/SWAP1/s0 0.01 0.01 -0.0% PASS
total/synth/SWAP10/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP11/s0 0.01 0.01 -0.0% PASS
total/synth/SWAP12/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP13/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP14/s0 0.01 0.01 -0.0% PASS
total/synth/SWAP15/s0 0.01 0.01 -0.0% PASS
total/synth/SWAP16/s0 0.01 0.01 +0.0% PASS
total/synth/SWAP2/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP3/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP4/s0 0.01 0.01 +0.0% PASS
total/synth/SWAP5/s0 0.01 0.01 -0.0% PASS
total/synth/SWAP6/s0 0.01 0.01 +0.2% PASS
total/synth/SWAP7/s0 0.01 0.01 -0.0% PASS
total/synth/SWAP8/s0 0.01 0.01 -0.1% PASS
total/synth/SWAP9/s0 0.01 0.01 -0.0% PASS
total/synth/XOR/b0 0.01 0.01 -0.1% PASS
total/synth/XOR/b1 0.01 0.01 +0.0% PASS
total/synth/loop_v1 1.41 1.41 -0.1% PASS
total/synth/loop_v2 1.32 1.33 +0.3% PASS

Summary: 194 benchmarks, 0 regressions


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.

2 participants