-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathpatch-wechat-webassembly.js
57 lines (53 loc) · 1.94 KB
/
patch-wechat-webassembly.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { walk } from 'estree-walker';
function createInstantiateWasmFunc(path) {
return function (imports, callback) {
WebAssembly.instantiate(path, imports).then(function (output) {
callback(output.instance, output.module);
});
return {};
};
}
/**
* WebAssembly has changed to WXWebAssembly after WeChat 8.0
* 0. not simd or thread support.
* 1. only load local wasm file is allowed.
* 2. WebAssembly.validate not working so env registerFlag doesn't work
* @see https://developers.weixin.qq.com/community/develop/doc/000e2c019f8a003d5dfbb54c251c00?jumpto=comment&commentid=000eac66934960576d0cb1a7256c
*/
export function patchWechatWebAssembly() {
return {
transform(code, file) {
// remove node imports
if (
file.endsWith('tfjs-backend-wasm-threaded-simd.worker.js') ||
file.endsWith('tfjs-backend-wasm-threaded-simd.js')
) {
code = code.replace(`require("worker_threads")`, 'null');
code = code.replace(`require("perf_hooks")`, 'null');
}
// it is not a nice way, but WebAssembly.validate not working and SIMD is not support in WXWebAssembly
// tf.env().set('WASM_HAS_SIMD_SUPPORT', false) will be done in tfjs-wechat or application code
// so does the WASM_HAS_MULTITHREAD_SUPPORT
if (file.endsWith('backend_wasm.ts')) {
const ast = this.parse(code);
walk(ast, {
enter(node) {
if (
node.type === 'FunctionDeclaration' &&
node.id &&
node.id.name === 'createInstantiateWasmFunc'
) {
code = code.replace(
code.slice(node.start, node.end),
createInstantiateWasmFunc.toString(),
);
}
},
});
}
code = code.replace(/WebAssembly\./g, `WXWebAssembly.`);
code = code.replace(/typeof WebAssembly/g, `typeof WXWebAssembly`);
return { code, map: null };
},
};
}