diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/lib/wasm-caching.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/lib/wasm-caching.js')
-rw-r--r-- | js/src/jit-test/lib/wasm-caching.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/js/src/jit-test/lib/wasm-caching.js b/js/src/jit-test/lib/wasm-caching.js new file mode 100644 index 0000000000..fc39ab999d --- /dev/null +++ b/js/src/jit-test/lib/wasm-caching.js @@ -0,0 +1,37 @@ +const {Module, Instance, compileStreaming, RuntimeError} = WebAssembly; + +function testCached(code, imports, test) { + if (typeof code === 'string') + code = wasmTextToBinary(code); + + let success = false; + let cache = streamCacheEntry(code); + assertEq(cache.cached, false); + compileStreaming(cache) + .then(m => { + test(new Instance(m, imports)); + if (!wasmTestSerializationEnabled()) { + assertEq(wasmLoadedFromCache(m), false); + } + while (!wasmHasTier2CompilationCompleted(m)) { + sleep(1); + } + assertEq(cache.cached, true); + return compileStreaming(cache); + }) + .then(m => { + test(new Instance(m, imports)); + assertEq(wasmLoadedFromCache(m), true); + assertEq(cache.cached, true); + + let m2 = wasmCompileInSeparateProcess(code); + test(new Instance(m2, imports)); + assertEq(wasmLoadedFromCache(m2), true); + + success = true; + }) + .catch(err => { print(String(err) + " at:\n" + err.stack) }); + + drainJobQueue(); + assertEq(success, true); +} |