1. 08 Jan, 2021 2 commits
    • Benedikt Meurer's avatar
      [inspector] Remove special wasm RemoteObject type. · cde7a77e
      Benedikt Meurer authored
      Previously we had introduced a special `v8::internal::WasmValue` type
      which we used to expose Wasm values to the Scope view in Chromium
      DevTools. The problem however is that these values cannot be exposed to
      JavaScript (and in particular not to Debug Evaluate), which means that
      particularly for v128 and i64 we have inconsistent representations
      across the various parts of DevTools.
      
      This change removes the `wasm` type from the RemoteObject and all the
      adjacent logic, and paves the way for a uniform representation of Wasm
      values throughout DevTools. For i64 we will simply use BigInt
      consistently everywhere, and for i32, f32 and f64 we'll just use Number.
      For externref we will represent the values as-is directly. For v128
      values we currently use a Uint8Array, but will introduce a dedicated
      WasmSimd128 class in a follow-up CL.
      
      Bug: chromium:1071432
      Fixed: chromium:1159402
      Change-Id: I0671e5736c9c27d7ca376e23ed74f16d36e03c80
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2614428Reviewed-by: 's avatarZhi An Ng <zhin@chromium.org>
      Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Commit-Queue: Zhi An Ng <zhin@chromium.org>
      Auto-Submit: Benedikt Meurer <bmeurer@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#71962}
      cde7a77e
    • Zhi An Ng's avatar
      Reland "[wasm-simd][liftoff][x64] Move v128.select into macro-assembler" · 025443a4
      Zhi An Ng authored
      This is a reland of 2d5f981a
      
      The fix is in liftoff-assembler-x64, to call S128Select with dst
      as the mask when AVX is not supported and dst != mask.
      
      Original change's description:
      > [wasm-simd][liftoff][x64] Move v128.select into macro-assembler
      >
      > This allows us to reuse this optimized code sequence in Liftoff.
      >
      > We can't do the same thing in IA32 yet, there is no kScratchDoubleReg
      > defined in the macro-assembler-ia32.cc, it is defined in code-generator-ia32
      > as xmm0 but I'm not sure if it is safe to just use that in the macro assembler.
      >
      > Change-Id: I6c761857c49d2518fbc82cd0796c62fc86665cb5
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2596581
      > Commit-Queue: Zhi An Ng <zhin@chromium.org>
      > Reviewed-by: Clemens Backes <clemensb@chromium.org>
      > Reviewed-by: Bill Budge <bbudge@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#71915}
      
      Change-Id: Ib96ce0e1d5762f6513ef87f240b25ef3ae59441f
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2612324Reviewed-by: 's avatarClemens Backes <clemensb@chromium.org>
      Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
      Commit-Queue: Zhi An Ng <zhin@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#71961}
      025443a4
  2. 07 Jan, 2021 30 commits
  3. 06 Jan, 2021 8 commits