diff options
author | Alon Zakai <azakai@google.com> | 2020-11-23 11:14:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-23 11:14:19 -0800 |
commit | b2d797f1f9f1192b8f4d2664f76a8d0b9278a0ef (patch) | |
tree | 10c773c5a21deb179043929e3e21db51ff4ccd59 /test/passes/strip-target-features_roundtrip_print-features_all-features.txt | |
parent | 68294338a1cc7337e808671e75933b1134d18a90 (diff) | |
download | binaryen-b2d797f1f9f1192b8f4d2664f76a8d0b9278a0ef.tar.gz binaryen-b2d797f1f9f1192b8f4d2664f76a8d0b9278a0ef.tar.bz2 binaryen-b2d797f1f9f1192b8f4d2664f76a8d0b9278a0ef.zip |
[TypedFunctionReferences] Add Typed Function References feature and use the types (#3388)
This adds the new feature and starts to use the new types where relevant. We
use them even without the feature being enabled, as we don't know the features
during wasm loading - but the hope is that given the type is a subtype, it should
all work out. In practice, if you print out the internal type you may see a typed
function reference-specific type for a ref.func for example, instead of a generic
funcref, but it should not affect anything else.
This PR does not support non-nullable types, that is, everything is nullable
for now. As suggested by @tlively this is simpler for now and leaves nullability
for later work (which will apparently require let or something else, and many
passes may need to be changed).
To allow this PR to work, we need to provide a type on creating a RefFunc. The
wasm-builder.h internal API is updated for this, as are the C and JS APIs,
which are breaking changes. cc @dcodeIO
We must also write and read function types properly. This PR improves
collectSignatures to find all the types, and also to sort them by the
dependencies between them (as we can't emit X in the binary if it depends
on Y, and Y has not been emitted - we need to give Y's index). This sorting
ends up changing a few test outputs.
InstrumentLocals support for printing function types that are not funcref
is disabled for now, until we figure out how to make that work and/or
decide if it's important enough to work on.
The fuzzer has various fixes to emit valid types for things (mostly
whitespace there). Also two drive-by fixes to call makeTrivial where it
should be (when we fail to create a specific node, we can't just try to make
another node, in theory it could infinitely recurse).
Binary writing changes here to replace calls to a standalone function to
write out a type with one that is called on the binary writer object itself,
which maintains a mapping of type indexes (getFunctionSignatureByIndex).
Diffstat (limited to 'test/passes/strip-target-features_roundtrip_print-features_all-features.txt')
-rw-r--r-- | test/passes/strip-target-features_roundtrip_print-features_all-features.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/passes/strip-target-features_roundtrip_print-features_all-features.txt b/test/passes/strip-target-features_roundtrip_print-features_all-features.txt index 18cee797f..96cb9b785 100644 --- a/test/passes/strip-target-features_roundtrip_print-features_all-features.txt +++ b/test/passes/strip-target-features_roundtrip_print-features_all-features.txt @@ -10,6 +10,7 @@ --enable-multivalue --enable-gc --enable-memory64 +--enable-typed-function-references (module (type $none_=>_v128_externref (func (result v128 externref))) (func $foo (result v128 externref) |