1. 28 Jun, 2021 1 commit
  2. 24 Jun, 2021 3 commits
  3. 18 Jun, 2021 1 commit
  4. 12 Jan, 2021 1 commit
  5. 14 Dec, 2020 1 commit
  6. 10 Dec, 2020 1 commit
  7. 09 Dec, 2020 1 commit
  8. 07 Dec, 2020 2 commits
  9. 03 Dec, 2020 2 commits
  10. 02 Dec, 2020 2 commits
  11. 24 Nov, 2020 1 commit
  12. 02 Nov, 2020 1 commit
  13. 27 Oct, 2020 2 commits
  14. 11 Aug, 2020 1 commit
    • Ng Zhi An's avatar
      Reland "[wasm-simd][arm] Use vmov to move all ones to register" · 9b9c6b0e
      Ng Zhi An authored
      This is a reland of 57242a05
      
      no-sse4.1 builds were failing due to missing simd-scalar-lowering
      for s128.const, this reland adds that implementation.
      
      Original change's description:
      > [wasm-simd][arm] Use vmov to move all ones to register
      >
      > vceq(dst, dst, dst) does not seem to always set the register to all
      > ones. The right way should be be to use vmov (immediate) anyway. This
      > was not supported in the assembler yet, so we need changes to the
      > assembler, diassembler, and simulator.
      >
      > There is an unfortunate fork in logic in the simulator, due to the way
      > the switches are set up, vmov (imm) logic is duplicated across two
      > different cases, because the switch looks at the top bit of the
      > immediate. Refactoring this will be a bigger change that is irrelevant
      > for this bug, so I'm putting that off for now. Instead we extract the
      > core of vmov (imm) into helpers and call it in the two cases.
      >
      > Bug: chromium:1112124
      > Change-Id: I283dbcd86cb0572e5ee720835f897b51fae96701
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2337503
      > Commit-Queue: Zhi An Ng <zhin@chromium.org>
      > Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
      > Reviewed-by: Bill Budge <bbudge@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#69315}
      
      Bug: chromium:1112124
      Change-Id: Id450e5cea41f7a569e49be8386a7788ca8f00658
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2346937Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
      Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Commit-Queue: Zhi An Ng <zhin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#69346}
      9b9c6b0e
  15. 10 Aug, 2020 2 commits
    • Bill Budge's avatar
      Revert "[wasm-simd][arm] Use vmov to move all ones to register" · ff503fd4
      Bill Budge authored
      This reverts commit 57242a05.
      
      Reason for revert: regression tests fails:
      https://ci.chromium.org/p/v8/builders/ci/V8%20Linux%20-%20debug/31477
      
      Original change's description:
      > [wasm-simd][arm] Use vmov to move all ones to register
      > 
      > vceq(dst, dst, dst) does not seem to always set the register to all
      > ones. The right way should be be to use vmov (immediate) anyway. This
      > was not supported in the assembler yet, so we need changes to the
      > assembler, diassembler, and simulator.
      > 
      > There is an unfortunate fork in logic in the simulator, due to the way
      > the switches are set up, vmov (imm) logic is duplicated across two
      > different cases, because the switch looks at the top bit of the
      > immediate. Refactoring this will be a bigger change that is irrelevant
      > for this bug, so I'm putting that off for now. Instead we extract the
      > core of vmov (imm) into helpers and call it in the two cases.
      > 
      > Bug: chromium:1112124
      > Change-Id: I283dbcd86cb0572e5ee720835f897b51fae96701
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2337503
      > Commit-Queue: Zhi An Ng <zhin@chromium.org>
      > Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
      > Reviewed-by: Bill Budge <bbudge@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#69315}
      
      TBR=bbudge@chromium.org,jkummerow@chromium.org,v8-arm-ports@googlegroups.com,zhin@chromium.org
      
      Change-Id: I5d9d1dcb81771f71001d959ec5a03a43a11c4233
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: chromium:1112124
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2347211Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
      Commit-Queue: Bill Budge <bbudge@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#69316}
      ff503fd4
    • Ng Zhi An's avatar
      [wasm-simd][arm] Use vmov to move all ones to register · 57242a05
      Ng Zhi An authored
      vceq(dst, dst, dst) does not seem to always set the register to all
      ones. The right way should be be to use vmov (immediate) anyway. This
      was not supported in the assembler yet, so we need changes to the
      assembler, diassembler, and simulator.
      
      There is an unfortunate fork in logic in the simulator, due to the way
      the switches are set up, vmov (imm) logic is duplicated across two
      different cases, because the switch looks at the top bit of the
      immediate. Refactoring this will be a bigger change that is irrelevant
      for this bug, so I'm putting that off for now. Instead we extract the
      core of vmov (imm) into helpers and call it in the two cases.
      
      Bug: chromium:1112124
      Change-Id: I283dbcd86cb0572e5ee720835f897b51fae96701
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2337503
      Commit-Queue: Zhi An Ng <zhin@chromium.org>
      Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#69315}
      57242a05
  16. 24 Jun, 2020 1 commit
  17. 23 Jun, 2020 1 commit
  18. 22 Jun, 2020 1 commit
  19. 18 Jun, 2020 1 commit
    • Ng Zhi An's avatar
      [wasm-simd][arm] Prototype f32x4.ceil · d9381fd6
      Ng Zhi An authored
      Prototype f32x4.ceil on ARM for both ARM v7 and ARM v8. ARM v8 has
      support for vrintp, and for ARM v7 we fallback to runtime.
      
      Since ARM v8 uses vrintp, which is the same instruction used for F32
      Ceil (scalar), wasm-compiler reuses the Float32Round check, rather than
      creating new F32x4Round optional operators.
      
      Implementation for vrintp (Advanced SIMD version that takes Q
      registers), assembler, disassembler support. Incomplete for now, but
      more will be added as we add other rounding modes.
      
      Bug: v8:10553
      Change-Id: I4563608b9501f6f57c3a8325b17de89da7058a43
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2248779Reviewed-by: 's avatarDeepti Gandluri <gdeepti@chromium.org>
      Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
      Commit-Queue: Zhi An Ng <zhin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#68419}
      d9381fd6
  20. 17 Jan, 2020 1 commit
  21. 16 Jan, 2020 2 commits
  22. 07 Jan, 2020 1 commit
  23. 19 Nov, 2019 2 commits
  24. 18 Sep, 2019 1 commit
  25. 24 May, 2019 1 commit
  26. 23 May, 2019 2 commits
  27. 22 May, 2019 1 commit
  28. 21 May, 2019 1 commit
  29. 20 May, 2019 1 commit
  30. 17 May, 2019 1 commit
    • Yang Guo's avatar
      Revert "Move logging and diagnostics related source files" · 81a0102f
      Yang Guo authored
      This reverts commit 5f285395.
      
      Reason for revert: presubmit failure
      
      Original change's description:
      > Move logging and diagnostics related source files
      > 
      > This also introduces a COMMON_OWNERS file, which is derived from the
      > current top-level OWNERS file. It is to be used for parts of the
      > codebase that is not sensitive to domain-specific expertise.
      > 
      > NOPRESUBMIT=true
      > TBR=verwaest@chromium.org
      > 
      > Bug: v8:9247
      > Change-Id: I34a5eaa7cb1509a80d15094a2aceedd62665b17c
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1613987
      > Reviewed-by: Yang Guo <yangguo@chromium.org>
      > Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
      > Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
      > Commit-Queue: Yang Guo <yangguo@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#61600}
      
      TBR=rmcilroy@chromium.org,yangguo@chromium.org,mstarzinger@chromium.org,verwaest@chromium.org
      
      Change-Id: I3827c3af4fd63b18aa48c49617f318a01746e813
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:9247
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1617247Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Commit-Queue: Yang Guo <yangguo@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#61601}
      81a0102f