summaryrefslogtreecommitdiff
path: root/src/tools/tool-options.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-02-05 12:35:09 -0800
committerGitHub <noreply@github.com>2019-02-05 12:35:09 -0800
commitf424f81886405fc26a415fc86900c0f8d0df14eb (patch)
tree5896c316f216fca9654f55e41809839d181ca53b /src/tools/tool-options.h
parent484f62f985cb2180139d1cf991ac04ee41635417 (diff)
downloadbinaryen-f424f81886405fc26a415fc86900c0f8d0df14eb.tar.gz
binaryen-f424f81886405fc26a415fc86900c0f8d0df14eb.tar.bz2
binaryen-f424f81886405fc26a415fc86900c0f8d0df14eb.zip
Bulk memory operations (#1892)
Bulk memory operations The only parts missing are the interpreter implementation and spec tests.
Diffstat (limited to 'src/tools/tool-options.h')
-rw-r--r--src/tools/tool-options.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/tools/tool-options.h b/src/tools/tool-options.h
index 9aff8e619..5620883ec 100644
--- a/src/tools/tool-options.h
+++ b/src/tools/tool-options.h
@@ -72,17 +72,29 @@ struct ToolOptions : public Options {
passOptions.features.setTruncSat(false);
})
.add("--enable-simd", "",
- "Enable nontrapping float-to-int operations",
+ "Enable SIMD operations and types",
Options::Arguments::Zero,
[this](Options *o, const std::string& arguments) {
passOptions.features.setSIMD();
})
.add("--disable-simd", "",
- "Disable nontrapping float-to-int operations",
+ "Disable SIMD operations and types",
Options::Arguments::Zero,
[this](Options *o, const std::string& arguments) {
passOptions.features.setSIMD(false);
})
+ .add("--enable-bulk-memory", "",
+ "Enable bulk memory operations",
+ Options::Arguments::Zero,
+ [this](Options *o, const std::string& arguments) {
+ passOptions.features.setBulkMemory();
+ })
+ .add("--disable-bulk-memory", "",
+ "Disable bulk memory operations",
+ Options::Arguments::Zero,
+ [this](Options *o, const std::string& arguments) {
+ passOptions.features.setBulkMemory(false);
+ })
.add("--no-validation", "-n", "Disables validation, assumes inputs are correct",
Options::Arguments::Zero,
[this](Options* o, const std::string& argument) {