diff options
author | Thomas Lively <tlively@google.com> | 2024-09-10 15:24:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 22:24:16 +0000 |
commit | 1a2d26f4092897f88f8fc60fc7a4dee2083ae531 (patch) | |
tree | 8cbf4ab801fef574ce1666b42aa296493dedba45 /src/tools | |
parent | b0c955d4e5d1454dd9d6036d25ec9118146eee4c (diff) | |
download | binaryen-1a2d26f4092897f88f8fc60fc7a4dee2083ae531.tar.gz binaryen-1a2d26f4092897f88f8fc60fc7a4dee2083ae531.tar.bz2 binaryen-1a2d26f4092897f88f8fc60fc7a4dee2083ae531.zip |
Replace the old topological sort everywhere (#6902)
To avoid having two separate topological sort utilities in the code
base, replace remaining uses of the old DFS-based, CRTP topological sort
with the newer Kahn's algorithm implementation.
This would be NFC, except that the new topological sort produces a
different order than the old topological sort, so the output of some
passes is reordered.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/wasm-ctor-eval.cpp | 36 |
1 files changed, 9 insertions, 27 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index d74790b2a..464654d4f 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -36,9 +36,9 @@ #include "support/colors.h" #include "support/file.h" #include "support/insert_ordered.h" -#include "support/old_topological_sort.h" #include "support/small_set.h" #include "support/string.h" +#include "support/topological_sort.h" #include "tool-options.h" #include "wasm-builder.h" #include "wasm-interpreter.h" @@ -609,9 +609,9 @@ private: Builder builder(*wasm); // First, find what constraints we have on the ordering of the globals. We - // will build up a map of each global to the globals it must be after. - using MustBeAfter = InsertOrderedMap<Name, InsertOrderedSet<Name>>; - MustBeAfter mustBeAfter; + // will build up a map of each global to the globals it must be before. + using MustBeBefore = InsertOrderedMap<Name, InsertOrderedSet<Name>>; + MustBeBefore mustBeBefore; for (auto& global : wasm->globals) { if (!global->init) { @@ -672,31 +672,12 @@ private: // Any global.gets that cannot be fixed up are constraints. for (auto* get : scanner.unfixableGets) { - mustBeAfter[global->name].insert(get->name); + mustBeBefore[global->name]; + mustBeBefore[get->name].insert(global->name); } } - if (!mustBeAfter.empty()) { - // We found constraints that require reordering, so do so. - struct MustBeAfterSort : OldTopologicalSort<Name, MustBeAfterSort> { - MustBeAfter& mustBeAfter; - - MustBeAfterSort(MustBeAfter& mustBeAfter) : mustBeAfter(mustBeAfter) { - for (auto& [global, _] : mustBeAfter) { - push(global); - } - } - - void pushPredecessors(Name global) { - auto iter = mustBeAfter.find(global); - if (iter != mustBeAfter.end()) { - for (auto other : iter->second) { - push(other); - } - } - } - }; - + if (!mustBeBefore.empty()) { auto oldGlobals = std::move(wasm->globals); // After clearing the globals vector, clear the map as well. wasm->updateMaps(); @@ -706,7 +687,8 @@ private: globalIndexes[oldGlobals[i]->name] = i; } // Add the globals that had an important ordering, in the right order. - for (auto global : MustBeAfterSort(mustBeAfter)) { + for (auto global : + TopologicalSort::sortOf(mustBeBefore.begin(), mustBeBefore.end())) { wasm->addGlobal(std::move(oldGlobals[globalIndexes[global]])); } // Add all other globals after them. |