admin管理员组文章数量:1351987
I'm trying out a simple hello world WebAssembly example and I'm having trouble understanding an error I'm seeing in Chrome 59:
RangeError: WebAssembly.Compile is disallowed on the main thread, if the buffer size is larger than 4KB. Use WebAssemblypile, or pile on a worker thread.
src/wasm/counter.wasm:13
10 | let wa;
11 | const make = source => {
12 | // buffer should already be set
> 13 | return wa = new Module(buffer);
14 | };
15 |
16 | const WebAssemblyModule = function(deps = {
I've followed the steps in this tutorial, and I can build everything without error. I'm using create-react-app
rewired with wasm-loader
.
If I'm using my local build of the counter module I get the error I mentioned in the beginning. If I try and use a pre-built version (for example the one in this project) it works fine.
When I build my module, I'm using the same mand as specified in the tutorial. The project with the working module has the same mand listed in its README:
emcc counter.c -O1 -o counter.wasm -s WASM=1 -s SIDE_MODULE=1
Any idea what might be causing the error?
I'm trying out a simple hello world WebAssembly example and I'm having trouble understanding an error I'm seeing in Chrome 59:
RangeError: WebAssembly.Compile is disallowed on the main thread, if the buffer size is larger than 4KB. Use WebAssembly.pile, or pile on a worker thread.
src/wasm/counter.wasm:13
10 | let wa;
11 | const make = source => {
12 | // buffer should already be set
> 13 | return wa = new Module(buffer);
14 | };
15 |
16 | const WebAssemblyModule = function(deps = {
I've followed the steps in this tutorial, and I can build everything without error. I'm using create-react-app
rewired with wasm-loader
.
If I'm using my local build of the counter module I get the error I mentioned in the beginning. If I try and use a pre-built version (for example the one in this project) it works fine.
When I build my module, I'm using the same mand as specified in the tutorial. The project with the working module has the same mand listed in its README:
emcc counter.c -O1 -o counter.wasm -s WASM=1 -s SIDE_MODULE=1
Any idea what might be causing the error?
Share Improve this question asked Jul 24, 2017 at 15:41 Alex CiminianAlex Ciminian 11.5k16 gold badges63 silver badges95 bronze badges2 Answers
Reset to default 6Some browsers limit the size of modules that can be piled synchronously because that blocks the main thread. As the error message says, they'd rather have you use WebAssembly.pile
which returns a promise
. I'd advise you to go further and use WebAssembly.instantiate
which will both pile and instantiate asynchronously and, in some cases, generate higher performance code. See its documentation, the signature is:
Promise<WebAssemblyInstantiatedSource>
instantiate(BufferSource bytes [, importObject])
bytes
is the same buffer you were passing to Module
above, and importObject
is the same thing you'd have passed to Instance
.
Another option is to make your .wasm
file smaller. That's pretty brittle because the main-thread size limit is arbitrary and you're not really in control of your generated code's size. You could try piling with -O2
or -Os
, and you can run binaryen's optimizer to try to reduce size. You could also split your code into multiple smaller modules, pile each individually, and then dynamically link them together (share import / export, and use the same memory for all of them).
But again, that's not really something you should rely on, and you're still blocking the main thread.
Yet another option is to move all your code to a WebWorker. You can block them as much as you want, no need for Promise
s.
Create a URL object by Buffer, then use instantiateStreaming async method to load wasm.
const blob = new Blob([buffer], { type: "application/wasm" });
const url = URL.createObjectURL(blob);
wasm = await instantiateStreaming(fetch(url), {});
本文标签:
版权声明:本文标题:javascript - WebAssembly.Compile is disallowed on the main thread, if the buffer size is larger than 4KB - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905941a2559523.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论