diff options
author | Alon Zakai <azakai@google.com> | 2024-01-31 14:31:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 14:31:47 -0800 |
commit | b5938499432a1251d94e8e7b534f14919fdaf81c (patch) | |
tree | 9aa561092be9f107bdecfa1ef228531ece0c32db /src/passes | |
parent | dfcae55bd02747cb1eaf8410c02ac4d53ee1fd01 (diff) | |
download | binaryen-b5938499432a1251d94e8e7b534f14919fdaf81c.tar.gz binaryen-b5938499432a1251d94e8e7b534f14919fdaf81c.tar.bz2 binaryen-b5938499432a1251d94e8e7b534f14919fdaf81c.zip |
Revert "Stop propagating/inlining string constants (#6234)" (#6258)
This reverts commit 9090ce56fcc67e15005aeedc59c6bc6773220f11.
This has the effect of once more propagating string constants from
globals to other places (and from non-globals too), which is useful
for various optimizations even if it isn't useful in the final output.
To fix the final output problem, #6257 added a pass that is run at the
end to collect string.const to globals, which allows us to once more
propagate strings in the optimizer, now without a downside.
Diffstat (limited to 'src/passes')
-rw-r--r-- | src/passes/Precompute.cpp | 6 | ||||
-rw-r--r-- | src/passes/SimplifyGlobals.cpp | 22 |
2 files changed, 6 insertions, 22 deletions
diff --git a/src/passes/Precompute.cpp b/src/passes/Precompute.cpp index 89e618ab3..5baf2331f 100644 --- a/src/passes/Precompute.cpp +++ b/src/passes/Precompute.cpp @@ -799,11 +799,9 @@ private: if (type.isFunction()) { return true; } - // We can emit a StringConst for a string constant in principle, but we do - // not want to as that might cause more allocations to happen. See similar - // code in SimplifyGlobals. + // We can emit a StringConst for a string constant. if (type.isString()) { - return false; + return true; } // All other reference types cannot be precomputed. Even an immutable GC // reference is not currently something this pass can handle, as it will diff --git a/src/passes/SimplifyGlobals.cpp b/src/passes/SimplifyGlobals.cpp index a7d8c3487..3baec4409 100644 --- a/src/passes/SimplifyGlobals.cpp +++ b/src/passes/SimplifyGlobals.cpp @@ -52,20 +52,6 @@ namespace wasm { namespace { -// Checks if an expression is a constant, and one that we can copy without -// downsides. This is the set of constant values that we will inline from -// globals. -bool isCopyableConstant(Expression* curr) { - // Anything that is truly constant is suitable for us, *except* for string - // constants, which in VMs may be implemented not as a constant but as an - // allocation. We prefer to keep string.const in globals where any such - // allocation only happens once (note that that makes them equivalent to - // strings imported from JS, which would be in imported globals, which are - // similarly not optimizable). - // TODO: revisit this if/when VMs implement and optimize string.const. - return Properties::isConstantExpression(curr) && !curr->is<StringConst>(); -} - struct GlobalInfo { // Whether the global is imported and exported. bool imported = false; @@ -372,7 +358,7 @@ struct ConstantGlobalApplier void visitExpression(Expression* curr) { if (auto* set = curr->dynCast<GlobalSet>()) { - if (isCopyableConstant(set->value)) { + if (Properties::isConstantExpression(set->value)) { currConstantGlobals[set->name] = getLiteralsFromConstExpression(set->value); } else { @@ -383,7 +369,7 @@ struct ConstantGlobalApplier // Check if the global is known to be constant all the time. if (constantGlobals->count(get->name)) { auto* global = getModule()->getGlobal(get->name); - assert(isCopyableConstant(global->init)); + assert(Properties::isConstantExpression(global->init)); replaceCurrent(ExpressionManipulator::copy(global->init, *getModule())); replaced = true; return; @@ -685,7 +671,7 @@ struct SimplifyGlobals : public Pass { // go, as well as applying them where possible. for (auto& global : module->globals) { if (!global->imported()) { - if (isCopyableConstant(global->init)) { + if (Properties::isConstantExpression(global->init)) { constantGlobals[global->name] = getLiteralsFromConstExpression(global->init); } else { @@ -709,7 +695,7 @@ struct SimplifyGlobals : public Pass { NameSet constantGlobals; for (auto& global : module->globals) { if (!global->mutable_ && !global->imported() && - isCopyableConstant(global->init)) { + Properties::isConstantExpression(global->init)) { constantGlobals.insert(global->name); } } |