From 2651ffb1cbf6c8b874f4c2bc611d1a9e875724d7 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Wed, 9 Feb 2022 13:15:52 -0800 Subject: [wasm-split] Add an --asyncify option (#4513) Add an option for running the asyncify transformation on the primary module emitted by wasm-split. The idea is that the placeholder functions should be able to unwind the stack while the secondary module is asynchronously loaded, then once the placeholder functions have been patched out by the secondary module the stack should be rewound and end up in the correct secondary function. --- src/tools/wasm-split/split-options.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/tools/wasm-split/split-options.h') diff --git a/src/tools/wasm-split/split-options.h b/src/tools/wasm-split/split-options.h index d52f215cd..16e7b75e6 100644 --- a/src/tools/wasm-split/split-options.h +++ b/src/tools/wasm-split/split-options.h @@ -43,6 +43,7 @@ struct WasmSplitOptions : ToolOptions { bool emitBinary = true; bool symbolMap = false; bool placeholderMap = false; + bool asyncify = false; // TODO: Remove this. See the comment in wasm-binary.h. bool emitModuleNames = false; -- cgit v1.2.3