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

RETURNDATACOPY and RETURNDATASIZE tests #168

Closed
wants to merge 14 commits into from

Commits on May 12, 2017

  1. Add a test filter for RETURNDATACOPY initially copying zeros

    ; hex  description
    ;; store some non-zero word into memory [0..31]
    30   ADDRESS
    6000 PUSH1 [0]
    52   MSTORE
    
    ;; RETURNDATACOPY should copy the first word into memory [0..31]
    6020 PUSH1 [32]
    6000 PUSH1 [0]
    6000 PUSH1 [0]
    0e   RETURNDATACOPY
    
    ;; load memory[0..31] onto stack
    6000 PUSH1 [0]
    51   MLOAD
    
    ;; store the topmost stack into storage [0]
    6000 PUSH1 [0]
    55   SSTORE
    
    ;; an implicit `STOP` follows.
    pirapira committed May 12, 2017
    Configuration menu
    Copy the full SHA
    b9b9141 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    48287dd View commit details
    Browse the repository at this point in the history
  3. Change the code into LLL

    pirapira committed May 12, 2017
    Configuration menu
    Copy the full SHA
    daa5c69 View commit details
    Browse the repository at this point in the history
  4. Fix LLL

    pirapira committed May 12, 2017
    Configuration menu
    Copy the full SHA
    2ecd8da View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    44ef5c1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1c7c27d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7349f26 View commit details
    Browse the repository at this point in the history
  8. Add the filled test

    pirapira committed May 12, 2017
    Configuration menu
    Copy the full SHA
    daad476 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2017

  1. Configuration menu
    Copy the full SHA
    b7dbd8c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b8332f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    70d3297 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2017

  1. Configuration menu
    Copy the full SHA
    0d2c7af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4cf3d66 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0f016ef View commit details
    Browse the repository at this point in the history