From f21774f3865e506b6dea912af8f8be16fd29dacb Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Fri, 27 May 2022 11:16:39 -0700 Subject: OptimizeInstructions: Turn call_ref of a select into an if over two direct calls (#4660) This extends the existing call_indirect code to do the same for call_ref, basically. The shared code is added to a new helper utility. --- src/passes/Directize.cpp | 115 ++++++++++++++++++++--------------------------- 1 file changed, 48 insertions(+), 67 deletions(-) (limited to 'src/passes/Directize.cpp') diff --git a/src/passes/Directize.cpp b/src/passes/Directize.cpp index 6853f1faf..e338272a9 100644 --- a/src/passes/Directize.cpp +++ b/src/passes/Directize.cpp @@ -22,6 +22,7 @@ #include +#include "call-utils.h" #include "ir/table-utils.h" #include "ir/type-updating.h" #include "ir/utils.h" @@ -59,62 +60,19 @@ struct FunctionDirectizer : public WalkerPass> { return; } - // If the target is a select of two different constants, we can emit two - // direct calls. - // TODO: handle 3+ - // TODO: handle the case where just one arm is a constant? - if (auto* select = curr->target->dynCast