Zero pad from calldata#1605
Merged
fubuloubu merged 9 commits intovyperlang:masterfrom Oct 23, 2019
Merged
Conversation
charles-cooper
commented
Sep 8, 2019
charles-cooper
commented
Sep 10, 2019
Contributor
|
Run against ETH2.0 deposit contract |
jacqueswww
approved these changes
Sep 30, 2019
fubuloubu
reviewed
Oct 1, 2019
The semantics of calldatacopy is that copying data from past-the-end writes zero bytes to memory. So we can avoid the loop, making the code more gas-efficient and easier to reason about.
(no longer needed with calldatacopy zeroer)
maxlen was confusingly named. maxlen referred to the static size of the entire packed log. instead, the maxlen of the current item should be passed to zero_pad.
It's a red herring. byte arrays should always be padded to the runtime length and not maxlen.
Callers should make this optimization
4516222 to
1971b22
Compare
Member
Author
|
I ran the eth2.0 tests and they passed, although I'm not sure that's a great indicator because they also pass under master and 0.1.0b12. |
Contributor
|
@charles-cooper @fubuloubu I think this can be merged? |
fubuloubu
approved these changes
Oct 23, 2019
Contributor
|
Only replaces existing plumbing, with better pipes ;) |
This file contains hidden or 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
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.
What I did
Increase clarity and efficiency of zero-padder. Currently overlaps with #1611 - fixes #1599, #1610. See the discussion in those issues as well as #1603 (comment).
How I did it
CALLDATACOPY writes zero bytes into memory when the location in calldata is >= calldatasize.
How to verify it
Description for the changelog
Cute Animal Picture