diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-01-02 13:30:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 13:30:32 -0800 |
commit | 3685831416a9ae2180de2d8d06189ab7e0292d7e (patch) | |
tree | 57ae7a1bb830194701aae242f223692e42d997da /src/passes/SSAify.cpp | |
parent | 5ebf2745783417c0cb7d9e3d71849c617a1672ad (diff) | |
download | binaryen-3685831416a9ae2180de2d8d06189ab7e0292d7e.tar.gz binaryen-3685831416a9ae2180de2d8d06189ab7e0292d7e.tar.bz2 binaryen-3685831416a9ae2180de2d8d06189ab7e0292d7e.zip |
Determinism fix for SSA pass (#1841)
We iterated over a set. Instead, iterate over the relevant items in their order in the IR.
Diffstat (limited to 'src/passes/SSAify.cpp')
-rw-r--r-- | src/passes/SSAify.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/passes/SSAify.cpp b/src/passes/SSAify.cpp index 35432d9eb..1e6668638 100644 --- a/src/passes/SSAify.cpp +++ b/src/passes/SSAify.cpp @@ -34,6 +34,7 @@ #include "pass.h" #include "wasm-builder.h" #include "support/permutations.h" +#include "ir/find_all.h" #include "ir/literal-utils.h" #include "ir/local-graph.h" @@ -59,19 +60,17 @@ struct SSAify : public Pass { func = func_; LocalGraph graph(func); // create new local indexes, one for each set - createNewIndexes(graph); + createNewIndexes(); // we now know the sets for each get, and can compute get indexes and handle phis computeGetsAndPhis(graph); // add prepends to function addPrepends(); } - void createNewIndexes(LocalGraph& graph) { - for (auto& pair : graph.locations) { - auto* curr = pair.first; - if (auto* set = curr->dynCast<SetLocal>()) { - set->index = addLocal(func->getLocalType(set->index)); - } + void createNewIndexes() { + FindAll<SetLocal> sets(func->body); + for (auto* set : sets.list) { + set->index = addLocal(func->getLocalType(set->index)); } } |