summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/lib/wasm-caching.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /js/src/jit-test/lib/wasm-caching.js
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
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.js37
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);
+}