Skip to content

Commit 5c063a2

Browse files
lightsingDaniPopesjackwenertcoratgerioterw
authored
chore: v41 update (#18)
* chore(eof): simplify magic checks (bluealloy#1633) * perf(eof): avoid some allocations (bluealloy#1632) * perf(eof): avoid some allocations * Update crates/primitives/src/bytecode/eof.rs * chore: fix some typos & remove useless Arc::clone (bluealloy#1621) * chore: fix some typos * chore: remove useless Arc::clone * refactor: use `is_zero` for `U256` and `B256` (bluealloy#1638) * refactor: use is_zero for U256 and B256 * fmt * Update crates/interpreter/src/instructions/arithmetic.rs Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> * fix deref * move import --------- Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> * feat(interpreter): derive traits on FunctionStack (bluealloy#1640) * chore: Renamed some city name (bluealloy#1645) * perf: avoid cloning original_bytes (bluealloy#1646) * fix(eof): deny static context in EOFCREATE (bluealloy#1644) * feat: use batch bn256 pair operation (bluealloy#1643) * feat: use batch bn256 pair operation We are currently not taking advantage of the batch pair operation from the `bn` library for the pairing check precompile. This yields a ~27% speedup on the existing bench: ``` Crypto Precompile benchmarks/precompile bench | ecpairing precompile time: [2.2389 ms 2.2441 ms 2.2495 ms] change: [-27.689% -27.469% -27.227%] (p = 0.00 < 0.05) Performance has improved. ``` * use with_capacity * import vec * feat(EOF): implement std::error::Error trait for EofValidationError and EofError (bluealloy#1649) * feat: implement Error trait for EofValidationError * feat: implement Error trait for EofError * fix: remove unused import * fix: remove format macro * chore(deps): bump thiserror from 1.0.62 to 1.0.63 (bluealloy#1651) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.62 to 1.0.63. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@1.0.62...1.0.63) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump tokio from 1.38.0 to 1.38.1 (bluealloy#1650) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.0 to 1.38.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.38.0...tokio-1.38.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix(EOF): Overflow on num_sections (bluealloy#1656) * fix(EOF): Overflow on num_sections * fix test * fmt/clippy * feat(EOF): EOF Validation add code type and sub container tracker (bluealloy#1648) * feat(EOF): EOF Validation add code type and sub container tracker * fix * omit tests * fix some things, bump test suite * fix(EOF): Overflow on num_sections * cleanup fmt * clippy * fix tests * Run EOF validation tests * fix(statetest): Add back Merge spec (bluealloy#1658) * fix(EOF): Validate code access in stack (bluealloy#1659) * wip: test * fix(EOF): Validate code access in stack * add code access * feat(EOF): Add EOF validation in revme bytecode cmd (bluealloy#1660) * chore(clippy): 1.80 rust clippy list paragraph ident (bluealloy#1661) * feat(EOF): Add non-returning CALLF/JUMPF checks (bluealloy#1663) * feat(EOF): Add non-returning CALLF/JUMPF checks * fix tests * fix(EOF): returning to non-returning jumpf, enable valition error (bluealloy#1664) * fix: add DATACOPY to OpCode::modifies_memory (bluealloy#1639) * chore(eof): Add opcodes that expand memory (bluealloy#1665) * fix(statetest): make bytecode analyzed (bluealloy#1666) * chore(deps): bump serde_json from 1.0.120 to 1.0.121 (bluealloy#1667) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.120 to 1.0.121. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.120...v1.0.121) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump tokio from 1.38.1 to 1.39.2 (bluealloy#1668) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.1 to 1.39.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.38.1...tokio-1.39.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump blst from 0.3.12 to 0.3.13 (bluealloy#1669) Bumps [blst](https://github.com/supranational/blst) from 0.3.12 to 0.3.13. - [Release notes](https://github.com/supranational/blst/releases) - [Commits](supranational/blst@v0.3.12...v0.3.13) --- updated-dependencies: - dependency-name: blst dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump serde_json from 1.0.121 to 1.0.122 (bluealloy#1678) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.121 to 1.0.122. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.121...v1.0.122) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump alloy-eips from 0.2.0 to 0.2.1 (bluealloy#1679) Bumps [alloy-eips](https://github.com/alloy-rs/alloy) from 0.2.0 to 0.2.1. - [Release notes](https://github.com/alloy-rs/alloy/releases) - [Changelog](https://github.com/alloy-rs/alloy/blob/main/CHANGELOG.md) - [Commits](alloy-rs/alloy@v0.2.0...v0.2.1) --- updated-dependencies: - dependency-name: alloy-eips dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump regex from 1.10.5 to 1.10.6 (bluealloy#1682) Bumps [regex](https://github.com/rust-lang/regex) from 1.10.5 to 1.10.6. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](rust-lang/regex@1.10.5...1.10.6) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump rstest from 0.21.0 to 0.22.0 (bluealloy#1681) Bumps [rstest](https://github.com/la10736/rstest) from 0.21.0 to 0.22.0. - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](la10736/rstest@v0.21.0...v0.22.0) --- updated-dependencies: - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add EOF Layout Fuzz Loop to `revme bytecode` (bluealloy#1677) * Add EOF Layout Fuzz Loop to `bytecode` Update `revme` so that when `bytecode` is called without arguments it goes into the standard * Add size check in fuzzer * code format * chore: introduce bytecode initcode/runtime cli flags * docs: improve `InstructionResult` documentation (bluealloy#1673) * docs: improve `InstructionResult` documentation * chore: clean up * Add OP-Granite hardfork, limiting bn256Pairing input size (bluealloy#1685) * Add OP-Granite hardfork, limiting bn256Pairing input size * Move optimism-specific bn128 precompile * feat: check for typos in CI (bluealloy#1686) Co-authored-by: adria0 <adria0@nowhere> * feat(EOF): add evmone test suite (bluealloy#1689) * feat(EOF): add evmone test suite * pass all tests * multiple paths for eof-validations * path to eest eof validations tests * feat(EOF): Run EOF tests from eth/tests (bluealloy#1690) * chore: release (bluealloy#1683) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * bump: tag v41 revm v13.0.0 (bluealloy#1692) * fix(CI): types check (bluealloy#1693) * fix(CI): types check * Typos --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Co-authored-by: jakevin <jakevingoo@gmail.com> Co-authored-by: Thomas Coratger <60488569+tcoratger@users.noreply.github.com> Co-authored-by: ioterw <iotrwewe12@protonmail.com> Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com> Co-authored-by: PA <50184410+peyha@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: rakita <rakita@users.noreply.github.com> Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com> Co-authored-by: Danno Ferrin <danno@numisight.com> Co-authored-by: Léo Vincent <28714795+leovct@users.noreply.github.com> Co-authored-by: Brian Bland <brian.t.bland@gmail.com> Co-authored-by: adria0.eth <5526331+adria0@users.noreply.github.com> Co-authored-by: adria0 <adria0@nowhere> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5e21574 commit 5c063a2

File tree

677 files changed

+137960
-12475
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

677 files changed

+137960
-12475
lines changed

.github/workflows/ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,15 @@ jobs:
103103
with:
104104
components: rustfmt
105105
- run: cargo fmt --all --check
106+
107+
typos-check:
108+
name: TyposCheck
109+
timeout-minutes: 5
110+
runs-on: ubuntu-latest
111+
steps:
112+
- uses: actions/checkout@v4
113+
- uses: crate-ci/typos@v1.22.7
114+
with:
115+
config: ./Typos.toml
116+
isolated: true
117+

.github/workflows/ethereum-tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ jobs:
4848
ethtests/EIPTests/StateTests/stEIP1153-transientStorage/ \
4949
ethtests/EIPTests/StateTests/stEIP4844-blobtransactions/ \
5050
ethtests/EIPTests/StateTests/stEIP2537/ \
51-
tests/eof_suite/state_tests # \
51+
ethtests/EIPTests/StateTests/stEOF \
52+
tests/eof_suite/eest/state_tests \
53+
tests/eof_suite/evmone/state_tests # \
5254
# tests/prague_suite/state_tests
55+
- name: Run EOF validation tests
56+
run: |
57+
cross run --target ${{matrix.target}} --profile ${{ matrix.profile }} -p revme -- eof-validation \
58+
ethtests/EOFTests \
59+
tests/eof_suite/eest/eof_tests/prague \
60+
tests/eof_suite/evmone/eof_tests
5361

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
Because this is workspace with multi libraries, tags will be simplified, and with this document you can match version of project with git tag.
22

3+
# v41 tag
4+
date: 08.08.2024
5+
6+
EOF fixes and improvements.
7+
Optimism Granite fork support.
8+
9+
* `revme`: 0.8.0 -> 0.9.0
10+
* `revm`: 12.1.0 -> 13.0.0
11+
* `revm-interpreter`: 8.1.0 -> 9.0.0
12+
* `revm-primitives`: 7.1.0 -> 8.0.0
13+
* `revm-precompile`: 9.2.0 -> 10.0.0
14+
* `revm-test`: 0.1.0
15+
316
# v40 tag
417
date 17.07.2024
518

Cargo.lock

+32-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Typos.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[default]
2+
extend-ignore-identifiers-re = [
3+
"[sS]imular",
4+
"ba",
5+
"modul"
6+
]
7+
8+
[files]
9+
extend-exclude = [
10+
"CHANGELOG.md",
11+
"tests"
12+
]
13+

bins/revm-test/CHANGELOG.md

+97
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,103 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.0](https://github.com/bluealloy/revm/releases/tag/revm-test-v0.1.0) - 2024-08-08
10+
11+
### Added
12+
- EOF (Ethereum Object Format) ([#1143](https://github.com/bluealloy/revm/pull/1143))
13+
- add tests for shift instructions ([#1254](https://github.com/bluealloy/revm/pull/1254))
14+
- EvmBuilder and External Contexts ([#888](https://github.com/bluealloy/revm/pull/888))
15+
- separate initial checks ([#486](https://github.com/bluealloy/revm/pull/486))
16+
- revm-interpreter created ([#320](https://github.com/bluealloy/revm/pull/320))
17+
- *(interpreter)* Unify instruction fn signature ([#283](https://github.com/bluealloy/revm/pull/283))
18+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
19+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
20+
21+
### Fixed
22+
- *(eof)* fixture 2 tests ([#1550](https://github.com/bluealloy/revm/pull/1550))
23+
- *(clippy)* fix some clippy lints
24+
25+
### Other
26+
- *(deps)* bump regex from 1.10.5 to 1.10.6 ([#1682](https://github.com/bluealloy/revm/pull/1682))
27+
- bump versions bcs of primitives ([#1631](https://github.com/bluealloy/revm/pull/1631))
28+
- release ([#1620](https://github.com/bluealloy/revm/pull/1620))
29+
- *(deps)* bump alloy-sol-types from 0.7.6 to 0.7.7 ([#1614](https://github.com/bluealloy/revm/pull/1614))
30+
- *(deps)* bump alloy-sol-macro from 0.7.6 to 0.7.7 ([#1613](https://github.com/bluealloy/revm/pull/1613))
31+
- release ([#1579](https://github.com/bluealloy/revm/pull/1579))
32+
- release ([#1548](https://github.com/bluealloy/revm/pull/1548))
33+
- replace TransactTo with TxKind ([#1542](https://github.com/bluealloy/revm/pull/1542))
34+
- *(deps)* bump regex from 1.10.4 to 1.10.5 ([#1502](https://github.com/bluealloy/revm/pull/1502))
35+
- release ([#1261](https://github.com/bluealloy/revm/pull/1261))
36+
- *(interpreter)* rewrite gas accounting for memory expansion ([#1361](https://github.com/bluealloy/revm/pull/1361))
37+
- revert snailtracer without microbench ([#1259](https://github.com/bluealloy/revm/pull/1259))
38+
- release ([#1231](https://github.com/bluealloy/revm/pull/1231))
39+
- *(deps)* bump other alloy deps 0.7.0 ([#1252](https://github.com/bluealloy/revm/pull/1252))
40+
- *(deps)* bump regex from 1.10.3 to 1.10.4 ([#1223](https://github.com/bluealloy/revm/pull/1223))
41+
- *(deps)* bump bytes from 1.5.0 to 1.6.0 ([#1224](https://github.com/bluealloy/revm/pull/1224))
42+
- release ([#1175](https://github.com/bluealloy/revm/pull/1175))
43+
- tag v32 revm v7.1.0 ([#1176](https://github.com/bluealloy/revm/pull/1176))
44+
- release ([#1125](https://github.com/bluealloy/revm/pull/1125))
45+
- *(deps)* bump alloy-sol-types from 0.6.3 to 0.6.4 ([#1148](https://github.com/bluealloy/revm/pull/1148))
46+
- *(deps)* bump alloy-sol-macro from 0.6.3 to 0.6.4 ([#1136](https://github.com/bluealloy/revm/pull/1136))
47+
- release tag v30 revm v6.1.0 ([#1100](https://github.com/bluealloy/revm/pull/1100))
48+
- clippy cleanup ([#1112](https://github.com/bluealloy/revm/pull/1112))
49+
- *(deps)* bump alloy-sol-types from 0.6.2 to 0.6.3 ([#1103](https://github.com/bluealloy/revm/pull/1103))
50+
- release ([#1082](https://github.com/bluealloy/revm/pull/1082))
51+
- *(deps)* bump alloy-sol-macro from 0.6.2 to 0.6.3 ([#1094](https://github.com/bluealloy/revm/pull/1094))
52+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
53+
- release ([#1067](https://github.com/bluealloy/revm/pull/1067))
54+
- tag v27, revm v4.0.0 release ([#1061](https://github.com/bluealloy/revm/pull/1061))
55+
- *(deps)* bump eyre from 0.6.11 to 0.6.12 ([#1051](https://github.com/bluealloy/revm/pull/1051))
56+
- *(deps)* bump alloy-sol-types from 0.6.0 to 0.6.2 ([#1035](https://github.com/bluealloy/revm/pull/1035))
57+
- *(deps)* bump alloy-sol-macro from 0.6.0 to 0.6.2 ([#1013](https://github.com/bluealloy/revm/pull/1013))
58+
- chore(Test) : const to static ([#1016](https://github.com/bluealloy/revm/pull/1016))
59+
- Burntpix criterion bench ([#1004](https://github.com/bluealloy/revm/pull/1004))
60+
- Instruction table ([#759](https://github.com/bluealloy/revm/pull/759))
61+
- rewrite revm-test as a criterion bench ([#579](https://github.com/bluealloy/revm/pull/579))
62+
- optimize stack usage for recursive `call` and `create` programs ([#522](https://github.com/bluealloy/revm/pull/522))
63+
- Bump v24, revm v3.3.0 ([#476](https://github.com/bluealloy/revm/pull/476))
64+
- Release v23, revm v3.2.0 ([#464](https://github.com/bluealloy/revm/pull/464))
65+
- Release v22, revm v3.1.1 ([#460](https://github.com/bluealloy/revm/pull/460))
66+
- v21, revm v3.1.0 ([#444](https://github.com/bluealloy/revm/pull/444))
67+
- remove gas blocks ([#391](https://github.com/bluealloy/revm/pull/391))
68+
- *(deps)* bump bytes from 1.3.0 to 1.4.0 ([#355](https://github.com/bluealloy/revm/pull/355))
69+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
70+
- includes to libs ([#338](https://github.com/bluealloy/revm/pull/338))
71+
- Creating revm-primitives, revm better errors and db components ([#334](https://github.com/bluealloy/revm/pull/334))
72+
- Cleanup, move hot fields toggether in Interpreter ([#321](https://github.com/bluealloy/revm/pull/321))
73+
- native bits ([#278](https://github.com/bluealloy/revm/pull/278))
74+
- *(release)* Bump revm and precompiles versions
75+
- Bump primitive_types. Add statetest spec
76+
- Bump revm v2.1.0 ([#224](https://github.com/bluealloy/revm/pull/224))
77+
- revm bump v2.0.0, precompile bump v1.1.1 ([#212](https://github.com/bluealloy/revm/pull/212))
78+
- Cfg choose create analysis, option on bytecode size limit ([#210](https://github.com/bluealloy/revm/pull/210))
79+
- Cargo sort. Bump lib versions ([#208](https://github.com/bluealloy/revm/pull/208))
80+
- Return `ExecutionResult`, which includes `gas_refunded` ([#169](https://github.com/bluealloy/revm/pull/169))
81+
- Bytecode hash, remove override_spec, ([#165](https://github.com/bluealloy/revm/pull/165))
82+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
83+
- v6 changelog, bump versions
84+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
85+
- [revm] pop_top and unsafe comments ([#51](https://github.com/bluealloy/revm/pull/51))
86+
- [precompiles] remove unused borsh
87+
- [recompl] Bump precompile deps, cargo sort on workspace
88+
- [revm] output log. Stetetest test log output. fmt
89+
- Bump versions, Changelogs, fmt, revm readme, clippy.
90+
- [revm] Run test multiple times. fmt, BenchmarkDB
91+
- Multiple changes: web3 db, debugger initial commit, precompile load
92+
- Memory to usize, clippy,fmt
93+
- wip optimize i256
94+
- TEMP switch stacks H256 with U256
95+
- [revm] some perfs
96+
- [revm] Perfs stack pop. Benchmark snailtracer.
97+
- [revm] cleanup
98+
- fmt
99+
- EVM Interface changed. Inspector called separately
100+
- Bump revm v0.3.0. README updated
101+
- DB ref mut polished
102+
- And now we debug
103+
- [revm] Interface. Inspector added, Env cleanup. revm-test passes
104+
- Rename bin to bins
105+
9106
## [0.1.0](https://github.com/bluealloy/revm/releases/tag/revm-test-v0.1.0) - 2024-07-16
10107

11108
### Added

bins/revm-test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ edition = "2021"
77
[dependencies]
88
bytes = "1.6"
99
hex = "0.4"
10-
revm = { path = "../../crates/revm", version = "12.1.0", default-features = false }
10+
revm = { path = "../../crates/revm", version = "13.0.0", default-features=false }
1111
microbench = "0.5"
1212
alloy-sol-macro = "0.7.7"
1313
alloy-sol-types = "0.7.7"
14-
regex = "1.10.5"
14+
regex = "1.10.6"
1515
eyre = "0.6.12"
1616

1717

0 commit comments

Comments
 (0)