diff options
author | Thomas Lively <tlively@google.com> | 2023-10-10 15:50:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 15:50:44 -0700 |
commit | 9d0740c8d84f822567bb4d08784238dd5a89b43f (patch) | |
tree | e915ad3675aec2e6cceb0c9b0e6573f5ebc3f6e4 /src/wasm-type.h | |
parent | 1cd81268627c71f36f45d6ef875dee84a79630f4 (diff) | |
download | binaryen-9d0740c8d84f822567bb4d08784238dd5a89b43f.tar.gz binaryen-9d0740c8d84f822567bb4d08784238dd5a89b43f.tar.bz2 binaryen-9d0740c8d84f822567bb4d08784238dd5a89b43f.zip |
Add an "unsubtyping" optimization (#5982)
Add a new pass that analyzes the module to find the minimal subtyping relation
that is necessary to maintain the validity and semantics of the program and
rewrites the types to use this minimal relation. Besides eliminating references
to otherwise-unused intermediate types, this optimization should unlock
significant additional optimizing power in other type optimizations that are
constrained by having to maintain supertype validity, since after this new
optimization there are fewer and more general supertypes.
The analysis works by visiting each expression and module element to collect the
subtypings that are required to maintain its validity, then, using that as a
starting point, iteratively adding new subtypings required by type definitions
and casts until reaching a fixed point.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index d97bdeba3..f5cb0bbb0 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -163,6 +163,7 @@ public: bool isNonNullable() const; // Whether this type is only inhabited by null values. bool isNull() const; + bool isSignature() const; bool isStruct() const; bool isArray() const; bool isString() const; |