-
Notifications
You must be signed in to change notification settings - Fork 293
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
EOF "1.0" #563
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 14, 2023
This was referenced Feb 14, 2023
axic
reviewed
Feb 14, 2023
axic
reviewed
Feb 16, 2023
axic
reviewed
Feb 16, 2023
axic
reviewed
Feb 17, 2023
axic
reviewed
Feb 17, 2023
axic
reviewed
Feb 17, 2023
axic
reviewed
Feb 17, 2023
axic
reviewed
Feb 17, 2023
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #563 +/- ##
==========================================
- Coverage 97.09% 96.45% -0.65%
==========================================
Files 70 74 +4
Lines 6548 7311 +763
==========================================
+ Hits 6358 7052 +694
- Misses 190 259 +69
Flags with carried forward coverage won't be shown. Click here to find out more.
|
axic
force-pushed
the
eof
branch
8 times, most recently
from
February 19, 2023 14:09
ef67a30
to
deb2f41
Compare
axic
force-pushed
the
eof
branch
2 times, most recently
from
February 20, 2023 14:14
0cd15b0
to
8b9d270
Compare
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
chfast
force-pushed
the
eof
branch
2 times, most recently
from
March 16, 2023 16:24
47a6b75
to
003f92a
Compare
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
gumb0
commented
Mar 16, 2023
axic
reviewed
Mar 18, 2023
axic
approved these changes
Mar 18, 2023
This changes the implementation of the EOF container format and EOF validation based on updated spec of: - EIP-3540 "EVM Object Format v1" (https://eips.ethereum.org/EIPS/eip-3540) - EIP-3670 "EOF - Code Validation" (https://eips.ethereum.org/EIPS/eip-3670) Co-authored-by: Alex Beregszaszi <alex@rtfs.hu> Co-authored-by: Andrei Maiboroda <andrei@ethereum.org> Co-authored-by: Pawel Bylica <pawel@ethereum.org>
Co-authored-by: Pawel Bylica <pawel@ethereum.org>
EIP-3670 "EOF Code Validation" forbids usage of these legacy EVM instructions: JUMP, JUMPI, PC, CALLCODE, SELFDESTRUCT. Co-authored-by: Pawel Bylica <pawel@ethereum.org>
Add two out of tree new control-flow instructions specified by EIP-4200 (https://eips.ethereum.org/EIPS/eip-4200). RJUMP (unconditional) and RJUMPI (conditional) are jump instructions which encode destinations as signed immediate values. Co-authored-by: Andrei Maiboroda <andrei@ethereum.org> Co-authored-by: Paweł Bylica <pawel@ethereum.org>
The implementation of the third instruction RJUMPV (jump table) from EIP-4200 "EOF - Static relative jumps" https://eips.ethereum.org/EIPS/eip-4200 Co-authored-by: Pawel Bylica <pawel@ethereum.org>
Implement CALLF and RETF EOF instructions specified by EIP-4750 EOF Functions (https://eips.ethereum.org/EIPS/eip-4750). Co-authored-by: Andrei Maiboroda <andrei@ethereum.org>
axic
reviewed
Mar 20, 2023
Specified by EIP-5450 "EOF - Stack Validation" https://eips.ethereum.org/EIPS/eip-5450. Co-authored-by: Pawel Bylica <pawel@ethereum.org> Co-authored-by: Alex Beregszaszi <alex@rtfs.hu>
chfast
approved these changes
Mar 21, 2023
rodiazet
approved these changes
Mar 21, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds implementation of EVM Object Format (EOF) version "1.0". Which is a collection of 5 EIPs originally proposed for Shanghai Ethereum upgrade: