Open
Description
Setting the REVIVE_USE_COMPILER
env var will enable the JIT in PVM in the pallet. However just setting this variable and running the benchmarks does not tell anything because it measures the whole execution from the get go.
Add to that, because JITed contracts run orders of magnitudes faster, the benchmarking parameters used for benchmark the {EVM,PVM} interpreters are too low to be telling.
What should be done here:
- Add a
bench-pvm-jit
feature flag to the benchmarks crate which will lead to benchmark the JIT instead the interpreter. - Implement functions wall-time measuring the compilation and execution (execution means the sandbox is already up - zero startup or compilation overhead, just the execution time).
- Find new parameters suitable for measuring the JIT. They are selected if the
bench-pvm-jit
feature is set. Ideally they are big enough to be telling but still small enough so the EVM interpreter can execute them too (will be very slow but we need the numbers to compare)