diff options
author | Ashley Nelson <nashley@google.com> | 2022-09-15 15:59:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 15:59:49 -0700 |
commit | 2a06bb4a7315162328d091a6eb2bb04fb53018c5 (patch) | |
tree | b67ad2833ccb7687e9c20c419c8df43de13aa723 /src/tools/wasm-split/split-options.h | |
parent | 2fdb22bc26185e94ccd775bbfe8ea271be03df45 (diff) | |
download | binaryen-2a06bb4a7315162328d091a6eb2bb04fb53018c5.tar.gz binaryen-2a06bb4a7315162328d091a6eb2bb04fb53018c5.tar.bz2 binaryen-2a06bb4a7315162328d091a6eb2bb04fb53018c5.zip |
Multi-Memories wasm-split (#4977)
Adds an --in-secondary-memory switch to the wasm-split tool that allows profile data to be stored in a separate memory from module main memory. With this option, users do not need to reserve the initial memory region for profile data and the data can be shared between multiple threads.
Diffstat (limited to 'src/tools/wasm-split/split-options.h')
-rw-r--r-- | src/tools/wasm-split/split-options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/wasm-split/split-options.h b/src/tools/wasm-split/split-options.h index 9f6253626..5aba0ba39 100644 --- a/src/tools/wasm-split/split-options.h +++ b/src/tools/wasm-split/split-options.h @@ -37,6 +37,7 @@ struct WasmSplitOptions : ToolOptions { enum class StorageKind : unsigned { InGlobals, // Store profile data in WebAssembly Globals InMemory, // Store profile data in memory, accessible from all threads + InSecondaryMemory, // Store profile data in memory separate from main memory }; StorageKind storageKind = StorageKind::InGlobals; @@ -63,6 +64,7 @@ struct WasmSplitOptions : ToolOptions { std::string importNamespace; std::string placeholderNamespace; + std::string secondaryMemoryName; std::string exportPrefix; // A hack to ensure the split and instrumented modules have the same table |