diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-01-24 15:49:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 15:49:16 -0800 |
commit | 544cce0a37a124415b00a6b3a1dd2791d714a807 (patch) | |
tree | 87c1ab60d10639928b1a9a9b3e461744387a3fea /src/passes/SSAify.cpp | |
parent | 9baf87e8961079da478ec3d3f718d3331963cc77 (diff) | |
download | binaryen-544cce0a37a124415b00a6b3a1dd2791d714a807.tar.gz binaryen-544cce0a37a124415b00a6b3a1dd2791d714a807.tar.bz2 binaryen-544cce0a37a124415b00a6b3a1dd2791d714a807.zip |
Improve LocalGraph (#1382)
This simplifies the logic there into a more standard flow operation. This is not always faster, but it is much faster on the worst cases we saw before like sqlite, and it is simpler.
The rewrite also fixes a fuzz bug.
Diffstat (limited to 'src/passes/SSAify.cpp')
-rw-r--r-- | src/passes/SSAify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/SSAify.cpp b/src/passes/SSAify.cpp index b2e75fce3..5271087a9 100644 --- a/src/passes/SSAify.cpp +++ b/src/passes/SSAify.cpp @@ -57,7 +57,7 @@ struct SSAify : public Pass { void runOnFunction(PassRunner* runner, Module* module_, Function* func_) override { module = module_; func = func_; - LocalGraph graph(func, module); + LocalGraph graph(func); // create new local indexes, one for each set createNewIndexes(graph); // we now know the sets for each get, and can compute get indexes and handle phis |