diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-12-11 17:12:37 -0800 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2019-12-11 17:12:37 -0800 |
commit | 759c485a9f35bd859d43b86b02e1397a669fa469 (patch) | |
tree | a5c7475002b406e35c6d1e5c2d843000947ef192 /test/passes/avoid-reinterprets.txt | |
parent | acd786dbd1e59f9d105c4ec8603c2ff46f233649 (diff) | |
download | binaryen-759c485a9f35bd859d43b86b02e1397a669fa469.tar.gz binaryen-759c485a9f35bd859d43b86b02e1397a669fa469.tar.bz2 binaryen-759c485a9f35bd859d43b86b02e1397a669fa469.zip |
Remove FunctionType (#2510)
Function signatures were previously redundantly stored on Function
objects as well as on FunctionType objects. These two signature
representations had to always be kept in sync, which was error-prone
and needlessly complex. This PR takes advantage of the new ability of
Type to represent multiple value types by consolidating function
signatures as a pair of Types (params and results) stored on the
Function object.
Since there are no longer module-global named function types,
significant changes had to be made to the printing and emitting of
function types, as well as their parsing and manipulation in various
passes.
The C and JS APIs and their tests also had to be updated to remove
named function types.
Diffstat (limited to 'test/passes/avoid-reinterprets.txt')
-rw-r--r-- | test/passes/avoid-reinterprets.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/passes/avoid-reinterprets.txt b/test/passes/avoid-reinterprets.txt index 33bd7e10e..b11d137f2 100644 --- a/test/passes/avoid-reinterprets.txt +++ b/test/passes/avoid-reinterprets.txt @@ -1,8 +1,8 @@ (module - (type $FUNCSIG$v (func)) - (type $FUNCSIG$f (func (result f32))) + (type $none_=>_none (func)) + (type $none_=>_f32 (func (result f32))) (memory $0 1) - (func $simple (; 0 ;) (type $FUNCSIG$v) + (func $simple (; 0 ;) (drop (f32.load (i32.const 1024) @@ -24,7 +24,7 @@ ) ) ) - (func $one (; 1 ;) (type $FUNCSIG$v) + (func $one (; 1 ;) (local $x i32) (local $1 i32) (local $2 f32) @@ -47,7 +47,7 @@ (local.get $2) ) ) - (func $one-b (; 2 ;) (type $FUNCSIG$v) + (func $one-b (; 2 ;) (local $x f32) (local $1 i32) (local $2 i32) @@ -70,7 +70,7 @@ (local.get $2) ) ) - (func $both (; 3 ;) (type $FUNCSIG$v) + (func $both (; 3 ;) (local $x i32) (local $1 i32) (local $2 f32) @@ -96,7 +96,7 @@ (local.get $2) ) ) - (func $half (; 4 ;) (type $FUNCSIG$v) + (func $half (; 4 ;) (local $x i32) (local $1 i32) (local $2 f32) @@ -122,7 +122,7 @@ (local.get $2) ) ) - (func $copy (; 5 ;) (type $FUNCSIG$v) + (func $copy (; 5 ;) (local $x i32) (local $y i32) (local $2 i32) @@ -149,14 +149,14 @@ (local.get $3) ) ) - (func $partial1 (; 6 ;) (type $FUNCSIG$f) (result f32) + (func $partial1 (; 6 ;) (result f32) (f32.reinterpret_i32 (i32.load16_u (i32.const 3) ) ) ) - (func $partial2 (; 7 ;) (type $FUNCSIG$f) (result f32) + (func $partial2 (; 7 ;) (result f32) (f32.reinterpret_i32 (i32.load8_u (i32.const 3) |