1. 17 11月, 2021 3 次提交
  2. 16 11月, 2021 2 次提交
    • A
      [spec] Add reference types to overview (#1394) · 25ffaea1
      Andreas Rossberg 提交于
      25ffaea1
    • N
      Make i8 and i16 work correctly on their own (#528) · 7ce9b415
      Ng Zhi An 提交于
      Previously, i8 and i16 was careless w.r.t. the top bits,
      because they were only used by v128, which uses Bytes.get/set that
      appropriate masks the top bits when storing into the byte array.
      
      With this change, i8 and i16 are self contained small integers
      implemented using int32. They are always stored signed-extended, e.g.
      INT8_MIN (-128) is stored as 0xffffff80.
      
      This requires adding sign-extension operation (Rep.sx) in a couple of
      places, that will make sure to extend the sign bit to the rest of the
      int32.
      
      Also add a small, non-exhaustive test for these small integers in a new
      file tests/smallint.ml. This is the first ml test we are adding (all
      previous tests are wasm/wast tests that we run using the interpreter),
      so there are some modifications to the Makefile to build and run this
      test (make smallinttest, make test will also run it).
      
      This test is in the tests/ folder to avoid a conflict with a Makefile goal
      test/x to run x.wast in ../test/core, otherwise it tries to run smallint.ml as
      a wast test.
      Co-authored-by: NAndreas Rossberg <rossberg@mpi-sws.org>
      7ce9b415
  3. 12 11月, 2021 1 次提交
  4. 05 11月, 2021 2 次提交
  5. 03 11月, 2021 2 次提交
  6. 02 11月, 2021 1 次提交
  7. 30 10月, 2021 1 次提交
  8. 29 10月, 2021 1 次提交
  9. 28 10月, 2021 4 次提交
  10. 22 10月, 2021 3 次提交
  11. 15 10月, 2021 2 次提交
    • D
      Rename "master" to "main" in repository URLs that have switched to "main". · 5d850a2a
      Dan Gohman 提交于
      Several WebAssembly organization repositories have changed their default
      branch from "master" to "main": see WebAssembly/design#1417 for details.
      This PR updates URLs in the spec repository to point to "main" instead of
      "master", for repositories which have done so.
      5d850a2a
    • N
      Use main in github workflow (#1380) · 6d15d3ef
      Ng Zhi An 提交于
      Default branch is now main, so all the PRs are based on main, which
      means the actions aren't currently triggered, since they only run on
      push to master. Update it to main.
      
      Since we have the main->master mirror, we should still be testing, but
      it is a bit delayed (only after the mirror I think, and not on the PR).
      6d15d3ef
  12. 14 10月, 2021 3 次提交
  13. 13 10月, 2021 2 次提交
  14. 05 10月, 2021 1 次提交
  15. 01 10月, 2021 1 次提交
  16. 30 9月, 2021 1 次提交
  17. 29 9月, 2021 1 次提交
  18. 18 9月, 2021 3 次提交
  19. 16 9月, 2021 3 次提交
  20. 15 9月, 2021 1 次提交
  21. 09 9月, 2021 2 次提交