diff options
author | Alon Zakai <azakai@google.com> | 2022-08-19 10:23:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 10:23:04 -0700 |
commit | 87edf06c7ae4d418bcc78d46055be33bfd3c282e (patch) | |
tree | 6440091d48beec51155acadcc9fd89dd21b9c669 /CHANGELOG.md | |
parent | 5b64cb768e22af51855bee88cfca29635ca215a7 (diff) | |
download | binaryen-87edf06c7ae4d418bcc78d46055be33bfd3c282e.tar.gz binaryen-87edf06c7ae4d418bcc78d46055be33bfd3c282e.tar.bz2 binaryen-87edf06c7ae4d418bcc78d46055be33bfd3c282e.zip |
[Directize] Add a flag to consider initial table contents immutable (#4942)
In LLVM output and probably others, the initial table contents are never
changed. We may append later, but we don't trample the initial table
entries. As a result, with this new flag we can turn indirect calls on those
offsets into direct ones:
--directize-initial-tables-immutable
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f4a008bd2..ab28fd56d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ full changeset diff at the end of each section. Current Trunk ------------- +- Add a new flag to Directize, `--pass-arg=directize-initial-contents-immutable` + which indicates the initial table contents are immutable. That is the case for + LLVM, for example, and it allows us to optimize more indirect calls to direct + ones. (#4942) - Change constant values of some reference types in the C and JS APIs. This is only observable if you hardcode specific values instead of calling the relevant methods (like `BinaryenTypeDataref()`). (#4755) |