diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-04-03 18:15:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 18:15:00 -0700 |
commit | b175e75d2b247b3687061cf51174e72f8ada4aca (patch) | |
tree | c6de3440e440e2ccfdb11bad957c344bef239de7 /src/tools/wasm-opt.cpp | |
parent | 773759f7842611bbe3e30f7b9d4cd24350291976 (diff) | |
download | binaryen-b175e75d2b247b3687061cf51174e72f8ada4aca.tar.gz binaryen-b175e75d2b247b3687061cf51174e72f8ada4aca.tar.bz2 binaryen-b175e75d2b247b3687061cf51174e72f8ada4aca.zip |
Use target features section in wasm-opt (#1967)
If the user does not supply features explicitly on the command line,
read and use the features in the target features section for
validation and passes. If the user does supply features explicitly,
error if they are not a superset of the features marked as used in the
target features section and the user does not explicitly handle this.
Diffstat (limited to 'src/tools/wasm-opt.cpp')
-rw-r--r-- | src/tools/wasm-opt.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/tools/wasm-opt.cpp b/src/tools/wasm-opt.cpp index ca4d87dd8..d36459a4a 100644 --- a/src/tools/wasm-opt.cpp +++ b/src/tools/wasm-opt.cpp @@ -162,8 +162,10 @@ int main(int argc, const char* argv[]) { Fatal() << "error in building module, std::bad_alloc (possibly invalid request for silly amounts of memory)"; } + options.calculateFeatures(wasm); + if (options.passOptions.validate) { - if (!WasmValidator().validate(wasm, options.getFeatures())) { + if (!WasmValidator().validate(wasm, options.passOptions.features)) { WasmPrinter::printModule(&wasm); Fatal() << "error in validating input"; } @@ -174,12 +176,12 @@ int main(int argc, const char* argv[]) { if (fuzzPasses) { reader.pickPasses(options); } - reader.setFeatures(options.getFeatures()); + reader.setFeatures(options.passOptions.features); reader.setAllowNaNs(fuzzNaNs); reader.setAllowMemory(fuzzMemory); reader.build(); if (options.passOptions.validate) { - if (!WasmValidator().validate(wasm, options.getFeatures())) { + if (!WasmValidator().validate(wasm, options.passOptions.features)) { WasmPrinter::printModule(&wasm); std::cerr << "translate-to-fuzz must always generate a valid module"; abort(); @@ -239,7 +241,7 @@ int main(int argc, const char* argv[]) { WasmBinaryBuilder parser(other, input, false); parser.read(); if (options.passOptions.validate) { - bool valid = WasmValidator().validate(other, options.getFeatures()); + bool valid = WasmValidator().validate(other, options.passOptions.features); if (!valid) { WasmPrinter::printModule(&other); } @@ -253,7 +255,8 @@ int main(int argc, const char* argv[]) { auto runPasses = [&]() { options.runPasses(*curr); if (options.passOptions.validate) { - bool valid = WasmValidator().validate(*curr, options.getFeatures()); + bool valid = + WasmValidator().validate(*curr, options.passOptions.features); if (!valid) { WasmPrinter::printModule(&*curr); } |