diff options
author | Alon Zakai <azakai@google.com> | 2020-02-18 19:35:29 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-18 19:35:29 -0800 |
commit | 4b79514283d5f6a4fdd058690b78b3bd97e193b0 (patch) | |
tree | 9d6ed3729309182ef6c7aa21e1b7d072a0b9c030 /src/tools/wasm-opt.cpp | |
parent | 08cc4d6711702a3f69159a0a4aa6e8ecedb98b5c (diff) | |
download | binaryen-4b79514283d5f6a4fdd058690b78b3bd97e193b0.tar.gz binaryen-4b79514283d5f6a4fdd058690b78b3bd97e193b0.tar.bz2 binaryen-4b79514283d5f6a4fdd058690b78b3bd97e193b0.zip |
Concise error output (#2652)
Don't print the entire module on an error. Instead, just print
the validation errors.
However, if the user passed --print, then do print it, as otherwise
nothing would get printed - the error would be before the pass
to print happens. And in general a user passing in a request
to print would expect a printed module anyhow.
fixes #2634
Diffstat (limited to 'src/tools/wasm-opt.cpp')
-rw-r--r-- | src/tools/wasm-opt.cpp | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/src/tools/wasm-opt.cpp b/src/tools/wasm-opt.cpp index 2fd78a3da..c4443bde4 100644 --- a/src/tools/wasm-opt.cpp +++ b/src/tools/wasm-opt.cpp @@ -217,6 +217,17 @@ int main(int argc, const char* argv[]) { BYN_TRACE("reading...\n"); + auto exitOnInvalidWasm = [&](const char* message) { + // If the user asked to print the module, print it even if invalid, + // as otherwise there is no way to print the broken module (the pass + // to print would not be reached). + if (std::find(options.passes.begin(), options.passes.end(), "print") != + options.passes.end()) { + WasmPrinter::printModule(&wasm); + } + Fatal() << message; + }; + if (!translateToFuzz) { ModuleReader reader; // Enable DWARF parsing if we were asked for debug info, and were not @@ -228,13 +239,13 @@ int main(int argc, const char* argv[]) { } catch (ParseException& p) { p.dump(std::cerr); std::cerr << '\n'; - Fatal() << "error in parsing input"; + Fatal() << "error parsing wasm"; } catch (MapParseException& p) { p.dump(std::cerr); std::cerr << '\n'; - Fatal() << "error in parsing wasm source map"; + Fatal() << "error parsing wasm source map"; } catch (std::bad_alloc&) { - Fatal() << "error in building module, std::bad_alloc (possibly invalid " + Fatal() << "error building module, std::bad_alloc (possibly invalid " "request for silly amounts of memory)"; } @@ -242,8 +253,7 @@ int main(int argc, const char* argv[]) { if (options.passOptions.validate) { if (!WasmValidator().validate(wasm)) { - WasmPrinter::printModule(&wasm); - Fatal() << "error in validating input"; + exitOnInvalidWasm("error validating input"); } } } else { @@ -260,8 +270,7 @@ int main(int argc, const char* argv[]) { if (options.passOptions.validate) { if (!WasmValidator().validate(wasm)) { WasmPrinter::printModule(&wasm); - std::cerr << "translate-to-fuzz must always generate a valid module"; - abort(); + Fatal() << "error after translate-to-fuzz"; } } } @@ -320,9 +329,8 @@ int main(int argc, const char* argv[]) { if (options.passOptions.validate) { bool valid = WasmValidator().validate(other); if (!valid) { - WasmPrinter::printModule(&other); + Fatal() << "fuzz-binary must always generate a valid module"; } - assert(valid); } curr = &other; } @@ -338,9 +346,8 @@ int main(int argc, const char* argv[]) { if (options.passOptions.validate) { bool valid = WasmValidator().validate(*curr); if (!valid) { - WasmPrinter::printModule(&*curr); + exitOnInvalidWasm("error after opts"); } - assert(valid); } }; runPasses(); |