From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../tests/wasm/multi-memory/directives.txt | 2 + .../tests/wasm/multi-memory/memory_copy.js | 45 ++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 js/src/jit-test/tests/wasm/multi-memory/directives.txt create mode 100644 js/src/jit-test/tests/wasm/multi-memory/memory_copy.js (limited to 'js/src/jit-test/tests/wasm/multi-memory') diff --git a/js/src/jit-test/tests/wasm/multi-memory/directives.txt b/js/src/jit-test/tests/wasm/multi-memory/directives.txt new file mode 100644 index 0000000000..44374e8ceb --- /dev/null +++ b/js/src/jit-test/tests/wasm/multi-memory/directives.txt @@ -0,0 +1,2 @@ +|jit-test| --wasm-multi-memory; test-also=--wasm-compiler=optimizing; test-also=--wasm-compiler=baseline; include:wasm.js; skip-if: !wasmMultiMemoryEnabled() + diff --git a/js/src/jit-test/tests/wasm/multi-memory/memory_copy.js b/js/src/jit-test/tests/wasm/multi-memory/memory_copy.js new file mode 100644 index 0000000000..e619200337 --- /dev/null +++ b/js/src/jit-test/tests/wasm/multi-memory/memory_copy.js @@ -0,0 +1,45 @@ + +// A simple test case for memory.copy between different memories. +// See bug 1861267. + +let i = wasmEvalText( +`(module + (memory $$mem0 (data "staubfaenger")) + (memory $$mem1 (data "\\ee\\22\\55\\ff")) + (memory $$mem2 (data "\\dd\\33\\66\\00")) + (memory $$mem3 (data "schnickschnack")) + + (func (export "copy0to3") (param i32 i32 i32) + (memory.copy $$mem3 $$mem0 + (local.get 0) + (local.get 1) + (local.get 2)) + ) + (func (export "copy3to0") (param i32 i32 i32) + (memory.copy $$mem0 $$mem3 + (local.get 0) + (local.get 1) + (local.get 2)) + ) + + (func (export "read0") (param i32) (result i32) + (i32.load8_u $$mem0 (local.get 0)) + ) + (func (export "read3") (param i32) (result i32) + (i32.load8_u $$mem3 (local.get 0)) + ) +)`); + +i.exports.copy0to3(4, 5, 6); +let s = ""; +for (let ix = 0; ix < 14; ix++) { + s = s + String.fromCharCode(i.exports.read3(ix)); +} + +i.exports.copy3to0(8, 2, 7); +s = s + "_"; +for (let ix = 0; ix < 12; ix++) { + s = s + String.fromCharCode(i.exports.read0(ix)); +} + +assertEq(s, "schnfaengenack_staubfaehnfa"); -- cgit v1.2.3