Files
sdk/pkg/wasm_builder
Kevin Moore e0b028808a [dart2wasm] Expand Wasm SIMD intrinsics for vector operations
Add more Wasm SIMD intrinsics and instructions to support efficient
vector operations, specifically targeting the requirements of types
like Offset and Size.

- Implement new intrinsics in `dart2wasm`:
  - `anyTrue` for V128.
  - `allTrue` for I64x2.
  - `pmin`/`pmax` (pseudo-minimum/maximum) for F64x2.
  - `fromLaneValues` for F32x4 and F64x2.
  - `shuffle` for F64x2.
- Update `wasm_builder` with support for the following instructions:
  - `v128.any_true`
  - `i8x16.all_true`, `i16x8.all_true`, `i32x4.all_true`, `i64x2.all_true`
  - `i8x16.shuffle` (including serialization and deserialization)
- Add `tests/web/wasm/simd/vector_test.dart`, which implements `Offset`
  and `Size` using these new SIMD intrinsics, demonstrating their
  practical utility and correctness.
- Update `tests/web/wasm/simd/simd_test.dart` with additional coverage.

Change-Id: Ifa5ba0fb265b0fa46c0a3469d9331f32a025c9ec
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/478860
Commit-Queue: Kevin Moore <kevmoo@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
2026-02-17 16:05:32 -08:00
..