summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-09-20 12:26:10 -0700
committerGitHub <noreply@github.com>2018-09-20 12:26:10 -0700
commitad9152e4973afa83d093600dda0d925f5c7cf714 (patch)
tree9d53ec339456fa417d1bd4776152bdb75b109522 /test
parent41ebb1b11041bf43f0e8b7ebacbed132511fcc55 (diff)
downloadbinaryen-ad9152e4973afa83d093600dda0d925f5c7cf714.tar.gz
binaryen-ad9152e4973afa83d093600dda0d925f5c7cf714.tar.bz2
binaryen-ad9152e4973afa83d093600dda0d925f5c7cf714.zip
More #1678 fixes (#1685)
While debugging to fix the waterfall regressions I noticed that wasm-reduce regressed. We need to be more careful with visitFunction which now may visit an imported function - I found a few not-well-tested passes that also regressed that way.
Diffstat (limited to 'test')
-rw-r--r--test/passes/i64-to-i32-lowering.txt62
-rw-r--r--test/passes/i64-to-i32-lowering.wast7
-rw-r--r--test/passes/log-execution.txt13
-rw-r--r--test/passes/log-execution.wast1
-rw-r--r--test/reduce/imports.wast17
-rw-r--r--test/reduce/imports.wast.txt6
6 files changed, 100 insertions, 6 deletions
diff --git a/test/passes/i64-to-i32-lowering.txt b/test/passes/i64-to-i32-lowering.txt
new file mode 100644
index 000000000..5d5dbe850
--- /dev/null
+++ b/test/passes/i64-to-i32-lowering.txt
@@ -0,0 +1,62 @@
+(module
+ (type $FUNCSIG$j (func (result i32)))
+ (import "env" "func" (func $import (result i32)))
+ (global $i64toi32_i32$HIGH_BITS (mut i32) (i32.const 0))
+ (func $defined (; 1 ;) (type $FUNCSIG$j) (result i32)
+ (local $i64toi32_i32$0 i32)
+ (local $i64toi32_i32$1 i32)
+ (local $i64toi32_i32$2 i32)
+ (local $i64toi32_i32$3 i32)
+ (local $i64toi32_i32$4 i32)
+ (local $i64toi32_i32$5 i32)
+ (set_local $i64toi32_i32$2
+ (block (result i32)
+ (set_local $i64toi32_i32$2
+ (block (result i32)
+ (set_local $i64toi32_i32$0
+ (i32.const 0)
+ )
+ (i32.const 1)
+ )
+ )
+ (set_local $i64toi32_i32$3
+ (block (result i32)
+ (set_local $i64toi32_i32$1
+ (i32.const 0)
+ )
+ (i32.const 2)
+ )
+ )
+ (set_local $i64toi32_i32$4
+ (i32.add
+ (get_local $i64toi32_i32$2)
+ (get_local $i64toi32_i32$3)
+ )
+ )
+ (set_local $i64toi32_i32$5
+ (i32.add
+ (get_local $i64toi32_i32$0)
+ (get_local $i64toi32_i32$1)
+ )
+ )
+ (if
+ (i32.lt_u
+ (get_local $i64toi32_i32$4)
+ (get_local $i64toi32_i32$3)
+ )
+ (set_local $i64toi32_i32$5
+ (i32.add
+ (get_local $i64toi32_i32$5)
+ (i32.const 1)
+ )
+ )
+ )
+ (get_local $i64toi32_i32$4)
+ )
+ )
+ (set_global $i64toi32_i32$HIGH_BITS
+ (get_local $i64toi32_i32$5)
+ )
+ (get_local $i64toi32_i32$2)
+ )
+)
diff --git a/test/passes/i64-to-i32-lowering.wast b/test/passes/i64-to-i32-lowering.wast
new file mode 100644
index 000000000..179cac467
--- /dev/null
+++ b/test/passes/i64-to-i32-lowering.wast
@@ -0,0 +1,7 @@
+(module
+ (import "env" "func" (func $import (result i64)))
+ (func $defined (result i64)
+ (i64.add (i64.const 1) (i64.const 2))
+ )
+)
+
diff --git a/test/passes/log-execution.txt b/test/passes/log-execution.txt
index f09346a31..3f842a6f1 100644
--- a/test/passes/log-execution.txt
+++ b/test/passes/log-execution.txt
@@ -1,21 +1,22 @@
(module
- (type $0 (func))
+ (type $FUNCSIG$v (func))
(type $1 (func (result i32)))
(type $FUNCSIG$vi (func (param i32)))
+ (import "env" "func" (func $import))
(import "env" "log_execution" (func $log_execution (param i32)))
- (func $nopp (; 1 ;) (type $0)
+ (func $nopp (; 2 ;) (type $FUNCSIG$v)
(call $log_execution
(i32.const 0)
)
(nop)
)
- (func $intt (; 2 ;) (type $1) (result i32)
+ (func $intt (; 3 ;) (type $1) (result i32)
(call $log_execution
(i32.const 1)
)
(i32.const 10)
)
- (func $workk (; 3 ;) (type $0)
+ (func $workk (; 4 ;) (type $FUNCSIG$v)
(call $log_execution
(i32.const 2)
)
@@ -29,7 +30,7 @@
)
)
)
- (func $loops (; 4 ;) (type $0)
+ (func $loops (; 5 ;) (type $FUNCSIG$v)
(call $log_execution
(i32.const 6)
)
@@ -70,7 +71,7 @@
)
)
)
- (func $loops-similar (; 5 ;) (type $0)
+ (func $loops-similar (; 6 ;) (type $FUNCSIG$v)
(call $log_execution
(i32.const 8)
)
diff --git a/test/passes/log-execution.wast b/test/passes/log-execution.wast
index 12175fbcb..f7448408a 100644
--- a/test/passes/log-execution.wast
+++ b/test/passes/log-execution.wast
@@ -1,4 +1,5 @@
(module
+ (import "env" "func" (func $import))
(func $nopp
(nop)
)
diff --git a/test/reduce/imports.wast b/test/reduce/imports.wast
new file mode 100644
index 000000000..2eb37a066
--- /dev/null
+++ b/test/reduce/imports.wast
@@ -0,0 +1,17 @@
+(module
+ (import "env" "func" (func $import))
+ (export "x" (func $x))
+ (func $x (result i32)
+ (nop)
+ (nop)
+ (nop)
+ (call $import)
+ (drop (i32.const 1234))
+ (i32.const 5678) ;; easily reducible
+ )
+ (func $not-exported
+ (nop)
+ (unreachable)
+ )
+)
+
diff --git a/test/reduce/imports.wast.txt b/test/reduce/imports.wast.txt
new file mode 100644
index 000000000..220bf3b7e
--- /dev/null
+++ b/test/reduce/imports.wast.txt
@@ -0,0 +1,6 @@
+(module
+ (type $0 (func))
+ (type $1 (func (result i32)))
+ (import "env" "func" (func $fimport$0))
+)
+