summaryrefslogtreecommitdiff
path: root/src/passes/Vacuum.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-02-14 10:21:06 -0800
committerGitHub <noreply@github.com>2023-02-14 10:21:06 -0800
commit0fbfedabb9339995a7a8040414aafcc86004b973 (patch)
treed2aa77987d593f03fa2da767acccea1acbe2a812 /src/passes/Vacuum.cpp
parent728b37cbe95ca8ea8cfba9ebc70e3fcb14db273a (diff)
downloadbinaryen-0fbfedabb9339995a7a8040414aafcc86004b973.tar.gz
binaryen-0fbfedabb9339995a7a8040414aafcc86004b973.tar.bz2
binaryen-0fbfedabb9339995a7a8040414aafcc86004b973.zip
Vacuum unneeded instructions even if children have effects (#5488)
This can handle e.g. (drop (i32.add (call ..) (call ..) ) ) We can remove the add and just leave two dropped calls: (drop (call ..) ) (drop (call ..) )
Diffstat (limited to 'src/passes/Vacuum.cpp')
-rw-r--r--src/passes/Vacuum.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/passes/Vacuum.cpp b/src/passes/Vacuum.cpp
index 84ae5199c..7c394900d 100644
--- a/src/passes/Vacuum.cpp
+++ b/src/passes/Vacuum.cpp
@@ -19,6 +19,7 @@
//
#include <ir/block-utils.h>
+#include <ir/drop.h>
#include <ir/effects.h>
#include <ir/iteration.h>
#include <ir/literal-utils.h>
@@ -137,9 +138,17 @@ struct Vacuum : public WalkerPass<ExpressionStackWalker<Vacuum>> {
curr = childrenWithEffects[0];
continue;
}
- // TODO: with multiple children with side effects, we can perhaps figure
- // out something clever, like a block with drops, or an i32.add for just
- // two, etc.
+ // The result is not used, but multiple children have side effects, so we
+ // need to keep them around. We must also return something of the proper
+ // type - if we can do that, replace everything with the children + a
+ // dummy value of the proper type.
+ if (curr->type.isDefaultable()) {
+ auto* dummy = Builder(*getModule())
+ .makeConstantExpression(Literal::makeZeros(curr->type));
+ return getDroppedChildrenAndAppend(
+ curr, *getModule(), getPassOptions(), dummy);
+ }
+ // Otherwise, give up.
return curr;
}
}