summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-11-21 11:49:08 -0800
committerGitHub <noreply@github.com>2024-11-21 19:49:08 +0000
commit901ba6024f3ca9117c5720be3cf19ab75034070a (patch)
tree4001f757f119d748220f6208e1155b1ef99fed41 /CHANGELOG.md
parent3342d56e4a13170c094a29138b32ff17cad4c01d (diff)
downloadbinaryen-901ba6024f3ca9117c5720be3cf19ab75034070a.tar.gz
binaryen-901ba6024f3ca9117c5720be3cf19ab75034070a.tar.bz2
binaryen-901ba6024f3ca9117c5720be3cf19ab75034070a.zip
Make validation of stale types stricter (#7097)
We previously allowed valid expressions to have stale types as long as those stale types were supertypes of the most precise possible types for the expressions. Allowing stale types like this could mask bugs where we failed to propagate precise type information, though. Make validation stricter by requiring all expressions except for control flow structures to have the most precise possible types. Control flow structures are exempt because many passes that can refine types wrap the refined expressions in blocks with the old type to avoid the need for refinalization. This pattern would be broken and we would need to refinalize more frequently without this exception for control flow structures. Now that all non-control flow expressions must have precise types, remove functionality relating to building select instructions with non-precise types. Since finalization of selects now always calculates a LUB rather than using a provided type, remove the type parameter from BinaryenSelect in the C and JS APIs. Now that stale types are no longer valid, fix a bug in TypeSSA where it failed to refinalize module-level code. This bug previously would not have caused problems on its own, but the stale types could cause problems for later runs of Unsubtyping. Now the stale types would cause TypeSSA output to fail validation. Also fix a bug where Builder::replaceWithIdenticalType was in fact replacing with refined types. Fixes #7087.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a1dbd4591..9c45eac79 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,8 @@ full changeset diff at the end of each section.
Current Trunk
-------------
+ - BinaryenSelect no longer takes a type parameter.
+
v120
----