summaryrefslogtreecommitdiff
path: root/src/tools/wasm-opt.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-09-10 12:01:00 -0700
committerGitHub <noreply@github.com>2024-09-10 12:01:00 -0700
commitb4a34d20c957404206875242781e61dc84a1cd28 (patch)
tree6975aa542889060b63751a27ddc97850d0722d54 /src/tools/wasm-opt.cpp
parent9d3f8e5603c42fdb2517d15d865f5cee06d21db5 (diff)
downloadbinaryen-b4a34d20c957404206875242781e61dc84a1cd28.tar.gz
binaryen-b4a34d20c957404206875242781e61dc84a1cd28.tar.bz2
binaryen-b4a34d20c957404206875242781e61dc84a1cd28.zip
Add a --preserve-type-order option (#6916)
Unlike other module elements, types are not stored on the `Module`. Instead, they are collected by traversing the IR before printing and binary writing. The code that collects the types tries to optimize the order of rec groups based on the number of times each type is used. As a result, the output order of types generally has no relation to the input order of types. In addition, most type optimizations rewrite the types into a single large rec group, and the order of types in that group is essentially arbitrary. Changes to the code for counting type uses, sorting types, or sorting rec groups can yield very large changes in the output order of types, producing test diffs that are hard to review and potentially harming the readability of tests by moving output types away from the corresponding input types. To help make test output more stable and readable, introduce a tool option that causes the order of output types to match the order of input types as closely as possible. It is implemented by having the parsers record the indices of the input types on the `Module` just like they already record the type names. The `GlobalTypeRewriter` infrastructure used by type optimizations associates the new types with the old indices just like it already does for names and also respects the input order when rewriting types into a large recursion group. By default, wasm-opt and other tools clear the recorded type indices after parsing the module, so their default behavior is not modified by this change. Follow-on PRs will use the new flag in more tests, which will generate large diffs but leave the tests in stable, more readable states that will no longer change due to other changes to the optimizing type sorting logic.
Diffstat (limited to 'src/tools/wasm-opt.cpp')
-rw-r--r--src/tools/wasm-opt.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/wasm-opt.cpp b/src/tools/wasm-opt.cpp
index d488171fb..3e1152179 100644
--- a/src/tools/wasm-opt.cpp
+++ b/src/tools/wasm-opt.cpp
@@ -243,7 +243,7 @@ int main(int argc, const char* argv[]) {
options.parse(argc, argv);
Module wasm;
- options.applyFeatures(wasm);
+ options.applyOptionsBeforeParse(wasm);
BYN_TRACE("reading...\n");
@@ -294,6 +294,8 @@ int main(int argc, const char* argv[]) {
"request for silly amounts of memory)";
}
+ options.applyOptionsAfterParse(wasm);
+
if (options.passOptions.validate) {
if (!WasmValidator().validate(wasm, options.passOptions)) {
exitOnInvalidWasm("error validating input");