Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Restucturing Part7 Handler and Context rework #1865

Draft
wants to merge 42 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
1036f20
feat: Restructure Part7 Handler Wire
rakita Oct 15, 2024
d31b6bd
wip
rakita Oct 17, 2024
38016af
wip of frames
rakita Oct 17, 2024
8eddc1e
work on Frame calls
rakita Oct 17, 2024
cb6e37c
Wip Frame and Exec wire
rakita Oct 21, 2024
d9f6ecd
compile handler wires
rakita Oct 22, 2024
ca1af66
fmt
rakita Oct 22, 2024
55ef83d
Hand from Handler replacement
rakita Oct 23, 2024
c853e56
Interpreter traits
rakita Oct 24, 2024
f50f33d
interpreter popn calls
rakita Oct 28, 2024
89273d9
wip Interpreter refactor, all instructions compile
rakita Oct 30, 2024
9eebac0
compiles without precompiles
rakita Nov 1, 2024
e5b0dc6
precompile and instruction table wip
rakita Nov 6, 2024
e33e7c9
precompile run wip
rakita Nov 6, 2024
769a317
simple revm statetest run
rakita Nov 7, 2024
8c5756b
Example of inspector in revme
rakita Nov 7, 2024
5947054
small cleanup for presentation
rakita Nov 15, 2024
9a17050
context interface
rakita Nov 20, 2024
6009e0b
handler and context interface crates
rakita Nov 20, 2024
4e24be4
small cleanup
rakita Nov 20, 2024
32f8978
fmt
rakita Nov 21, 2024
c816a2c
Merge remote-tracking branch 'origin/main' into r7
rakita Nov 21, 2024
b6015e9
Inspector wip
rakita Nov 21, 2024
45b2dc5
rename and wip Inspector
rakita Nov 21, 2024
1a3c69a
fixes
rakita Nov 25, 2024
be64969
fix bugs, mv spec to cfg
rakita Nov 26, 2024
43ed681
fix for tests
rakita Nov 27, 2024
0497419
fix eof bugs
rakita Nov 28, 2024
d148400
no_std compile fix
rakita Nov 28, 2024
d1aadc3
few fixes
rakita Nov 28, 2024
b2999ec
clippy
rakita Nov 28, 2024
a4fa635
cleanup
rakita Nov 28, 2024
f38aae6
remvme bench, builder for context
rakita Nov 28, 2024
3e581b0
inline somethings
rakita Nov 28, 2024
e8c2686
clippy
rakita Nov 28, 2024
db41f9b
example of block traces
rakita Nov 28, 2024
7915381
enable examples
rakita Nov 29, 2024
ef16d8f
op handlers
rakita Dec 3, 2024
ff979e2
Add op precompiles
rakita Dec 4, 2024
7e729a0
some ci fixes
rakita Dec 4, 2024
de4cab3
fix tests
rakita Dec 4, 2024
9ea8680
fix docs
rakita Dec 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ethereum-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
tests/eof_suite/eest/state_tests \
tests/eof_suite/evmone/state_tests \
tests/prague_suite/state_tests
- name: Run EOF validation tests
run: |
cross run --target ${{matrix.target}} --profile ${{ matrix.profile }} -p revme -- eof-validation \
ethtests/EOFTests \
tests/eof_suite/eest/eof_tests/prague \
tests/eof_suite/evmone/eof_tests
# - name: Run EOF validation tests
# run: |
# cross run --target ${{matrix.target}} --profile ${{ matrix.profile }} -p revme -- eof-validation \
# ethtests/EOFTests \
# tests/eof_suite/eest/eof_tests/prague \
# tests/eof_suite/evmone/eof_tests

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ Bigger release. Cancun support, revm State added and some cleanup refactoring.
# v24 tag
date: 03.05.2023

Cosnensus bug inside journal and some small changes.
Consensus bug inside journal and some small changes.

* revm: v3.3.0
* revm-precompile: v2.0.3
Expand Down
Loading
Loading