1. 06 Mar, 2019 17 commits
  2. 05 Mar, 2019 21 commits
  3. 04 Mar, 2019 2 commits
    • Bill Budge's avatar
      [wasm simd] Fix F32x4 Min and Max · 821bc649
      Bill Budge authored
      - Fix F32x4 tests to save results in globals, so they can be checked
        in C++ code. Perform correct checks in case of NaNs.
      - Fix ia32, x64 implementations of F32x4Min, F32x4Max to correctly
        deal with NaNs.
      - Enable tests for all float values on all platforms, except skip
        denormalized results on ARM, and skip extreme values for reciprocal,
        reciprocal square root approximation opcodes.
      - Disable Min, Max test for interpreter (see v8:8425) since it doesn't
        handle NaNs correctly.
      - Fix vmin, vmax implementations in ARM simulator.
      
      Bug: v8:8639
      Change-Id: I87e188e3cb078f09fdacfd9955f426c20a11bf64
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1495897
      Commit-Queue: Bill Budge <bbudge@chromium.org>
      Reviewed-by: 's avatarDeepti Gandluri <gdeepti@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#60021}
      821bc649
    • Ben Smith's avatar
      [wasm] Implement passive element binary format · a3ac513b
      Ben Smith authored
      Passive elements have a different binary format, where the contents are
      instructions instead of function indexes:
      
          0xd0 0x0b       -> (ref.null)
          0xd2 var:x 0x0b -> (ref.func x)
      
      Bug: v8:8891
      Change-Id: Ie7e8efe7b5acdf99622880dd97d28d3c13744dff
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1497516
      Commit-Queue: Ben Smith <binji@chromium.org>
      Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#60020}
      a3ac513b