diff options
author | Alon Zakai <azakai@google.com> | 2021-08-31 16:49:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 16:49:34 -0700 |
commit | 82cdabf20e496508cd241ef31a5f630c2de844ad (patch) | |
tree | d125e86b1bd50e85c20b540be1074ed655591b8f /src/ir/local-utils.h | |
parent | 7d966528f603e65dacbf25f585a5accc46470bbd (diff) | |
download | binaryen-82cdabf20e496508cd241ef31a5f630c2de844ad.tar.gz binaryen-82cdabf20e496508cd241ef31a5f630c2de844ad.tar.bz2 binaryen-82cdabf20e496508cd241ef31a5f630c2de844ad.zip |
Use the new module version of EffectAnalyzer (#4116)
This finishes the refactoring started in #4115 by doing the
same change to pass a Module into EffectAnalyzer instead of
features. To do so this refactors the fallthrough API and a few
other small things. After those changes, this PR removes the
old feature constructor of EffectAnalyzer entirely.
This requires a small breaking change in the C API, changing
BinaryenExpressionGetSideEffects's feature param to a
module. That makes this change not NFC, but otherwise it is.
Diffstat (limited to 'src/ir/local-utils.h')
-rw-r--r-- | src/ir/local-utils.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/ir/local-utils.h b/src/ir/local-utils.h index 0eba31889..73d065e73 100644 --- a/src/ir/local-utils.h +++ b/src/ir/local-utils.h @@ -45,23 +45,21 @@ struct UnneededSetRemover : public PostWalker<UnneededSetRemover> { PassOptions& passOptions; LocalGetCounter* localGetCounter = nullptr; - FeatureSet features; + Module& module; - UnneededSetRemover(Function* func, - PassOptions& passOptions, - FeatureSet features) - : passOptions(passOptions), features(features) { + UnneededSetRemover(Function* func, PassOptions& passOptions, Module& module) + : passOptions(passOptions), module(module) { LocalGetCounter counter(func); - UnneededSetRemover inner(counter, func, passOptions, features); + UnneededSetRemover inner(counter, func, passOptions, module); removed = inner.removed; } UnneededSetRemover(LocalGetCounter& localGetCounter, Function* func, PassOptions& passOptions, - FeatureSet features) + Module& module) : passOptions(passOptions), localGetCounter(&localGetCounter), - features(features) { + module(module) { walk(func->body); } @@ -96,7 +94,7 @@ struct UnneededSetRemover : public PostWalker<UnneededSetRemover> { auto* value = set->value; if (set->isTee()) { replaceCurrent(value); - } else if (EffectAnalyzer(passOptions, features, set->value) + } else if (EffectAnalyzer(passOptions, module, set->value) .hasSideEffects()) { Drop* drop = ExpressionManipulator::convert<LocalSet, Drop>(set); drop->value = value; |