diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /js/src/jit-test/lib/wasm-caching.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.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); +} |