summaryrefslogtreecommitdiff
path: root/test/print
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2022-11-22 20:48:58 -0600
committerGitHub <noreply@github.com>2022-11-23 02:48:58 +0000
commit853b31ec89416bef0014e06f2defaef74f47b81e (patch)
treea288eeab1797ae6623c86cef6a6425c754cf498b /test/print
parentf8e6d0253ba96bd26013146282ea4063f5853289 (diff)
downloadbinaryen-853b31ec89416bef0014e06f2defaef74f47b81e.tar.gz
binaryen-853b31ec89416bef0014e06f2defaef74f47b81e.tar.bz2
binaryen-853b31ec89416bef0014e06f2defaef74f47b81e.zip
Change the default type system to isorecursive (#5239)
This makes Binaryen's default type system match the WasmGC spec. Update the way type definitions without supertypes are printed to reduce the output diff for MVP tests that do not involve WasmGC. Also port some type-builder.cpp tests from test/example to test/gtest since they needed to be rewritten to work with isorecursive type anyway. A follow-on PR will remove equirecursive types completely.
Diffstat (limited to 'test/print')
-rw-r--r--test/print/min.minified.txt4
-rw-r--r--test/print/min.txt8
2 files changed, 6 insertions, 6 deletions
diff --git a/test/print/min.minified.txt b/test/print/min.minified.txt
index 214f9447b..545a2dcc1 100644
--- a/test/print/min.minified.txt
+++ b/test/print/min.minified.txt
@@ -1,4 +1,4 @@
(module(type $0 (func(param f32)(result f32)))(type $1 (func(param i32 i32)(result f32)))(type $2 (func(param i32)(result i32)))(type $3 (func(param i32 i32 i32)(result i32)))(memory $0 256 256)
-(export "floats" (func $floats))(func $floats(param $f f32)(result f32)(local $t f32)(f32.add(local.get $t)(local.get $f)))(func $neg(param $k i32)(param $p i32)(result f32)(local $n f32)(local.tee $n(f32.neg(block $block0 (result f32)(i32.store(local.get $k)(local.get $p))(f32.load(local.get $k))))))(func $littleswitch(param $x i32)(result i32)(block $topmost (result i32)(block $switch-case$2(block $switch-case$1(br_table $switch-case$1 $switch-case$2 $switch-case$1(i32.sub(local.get $x)(i32.const 1))))
+(export "floats" (func $floats))(func $floats (type $0)(param $f f32)(result f32)(local $t f32)(f32.add(local.get $t)(local.get $f)))(func $neg (type $1)(param $k i32)(param $p i32)(result f32)(local $n f32)(local.tee $n(f32.neg(block $block0 (result f32)(i32.store(local.get $k)(local.get $p))(f32.load(local.get $k))))))(func $littleswitch (type $2)(param $x i32)(result i32)(block $topmost (result i32)(block $switch-case$2(block $switch-case$1(br_table $switch-case$1 $switch-case$2 $switch-case$1(i32.sub(local.get $x)(i32.const 1))))
(br $topmost(i32.const 1)))
-(br $topmost(i32.const 2))(i32.const 0)))(func $f1(param $i1 i32)(param $i2 i32)(param $i3 i32)(result i32)(block $topmost (result i32)(local.get $i3)))) \ No newline at end of file
+(br $topmost(i32.const 2))(i32.const 0)))(func $f1 (type $3)(param $i1 i32)(param $i2 i32)(param $i3 i32)(result i32)(block $topmost (result i32)(local.get $i3)))) \ No newline at end of file
diff --git a/test/print/min.txt b/test/print/min.txt
index f0c501672..d8de52edd 100644
--- a/test/print/min.txt
+++ b/test/print/min.txt
@@ -5,14 +5,14 @@
(type $3 (func (param i32 i32 i32) (result i32)))
(memory $0 256 256)
(export "floats" (func $floats))
- (func $floats (param $f f32) (result f32)
+ (func $floats (type $0) (param $f f32) (result f32)
(local $t f32)
(f32.add
(local.get $t)
(local.get $f)
)
)
- (func $neg (param $k i32) (param $p i32) (result f32)
+ (func $neg (type $1) (param $k i32) (param $p i32) (result f32)
(local $n f32)
(local.tee $n
(f32.neg
@@ -28,7 +28,7 @@
)
)
)
- (func $littleswitch (param $x i32) (result i32)
+ (func $littleswitch (type $2) (param $x i32) (result i32)
(block $topmost (result i32)
(block $switch-case$2
(block $switch-case$1
@@ -49,7 +49,7 @@
(i32.const 0)
)
)
- (func $f1 (param $i1 i32) (param $i2 i32) (param $i3 i32) (result i32)
+ (func $f1 (type $3) (param $i1 i32) (param $i2 i32) (param $i3 i32) (result i32)
(block $topmost (result i32)
(local.get $i3)
)