diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-03-11 11:53:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-11 11:53:51 -0700 |
commit | 5c0bf993bc530a5b69caac1a9d70eec13c887d70 (patch) | |
tree | 458087a71747f4032b108edb9d5b954e98938359 /src/passes/RedundantSetElimination.cpp | |
parent | 0abc9ce8e9676c95f7ff572529eebf3018179dad (diff) | |
download | binaryen-5c0bf993bc530a5b69caac1a9d70eec13c887d70.tar.gz binaryen-5c0bf993bc530a5b69caac1a9d70eec13c887d70.tar.bz2 binaryen-5c0bf993bc530a5b69caac1a9d70eec13c887d70.zip |
Update RedundantSetElimination to work with tuples (#2688)
Also makes it work with any other constant expression such as a
ref.func or ref.null instructions. This optimization may not be very
important, but it illustrates how simple it can be to update a pass to
handle tuples (and also I was already looking at it because of the
prior changes that had to be made to it).
Diffstat (limited to 'src/passes/RedundantSetElimination.cpp')
-rw-r--r-- | src/passes/RedundantSetElimination.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/passes/RedundantSetElimination.cpp b/src/passes/RedundantSetElimination.cpp index ab052853c..a891653df 100644 --- a/src/passes/RedundantSetElimination.cpp +++ b/src/passes/RedundantSetElimination.cpp @@ -35,6 +35,7 @@ #include <cfg/cfg-traversal.h> #include <ir/literal-utils.h> +#include <ir/properties.h> #include <ir/utils.h> #include <pass.h> #include <support/unique_deferring_queue.h> @@ -159,9 +160,9 @@ struct RedundantSetElimination } Index getValue(Expression* value, LocalValues& currValues) { - if (auto* c = value->dynCast<Const>()) { + if (Properties::isConstantExpression(value)) { // a constant - return getLiteralValue({c->value}); + return getLiteralValue(Properties::getLiterals(value)); } else if (auto* get = value->dynCast<LocalGet>()) { // a copy of whatever that was return currValues[get->index]; |