| (module |
| (import "env" "global-1" (global $g1 i32)) |
| (global $g2 (mut i32) (global.get $g1)) |
| (func $foo |
| (drop (global.get $g1)) |
| (drop (global.get $g2)) |
| ) |
| ) |
| (module |
| (import "env" "global-1" (global $g1 i32)) |
| (global $g2 i32 (global.get $g1)) |
| (global $g3 i32 (global.get $g2)) |
| (global $g4 i32 (global.get $g3)) |
| (func $foo |
| (drop (global.get $g1)) |
| (drop (global.get $g2)) |
| (drop (global.get $g3)) |
| (drop (global.get $g4)) |
| ) |
| ) |
| (module |
| (import "env" "global-1" (global $g1 i32)) |
| (global $g2 (mut i32) (global.get $g1)) |
| ) |
| (module |
| (import "env" "global-1" (global $g1 i32)) |
| (global $g2 (mut i32) (global.get $g1)) |
| (func $foo |
| (global.set $g2 (unreachable)) |
| ) |
| ) |
| (module |
| (import "env" "global-1" (global $g1 i32)) |
| (global $g2 (mut i32) (global.get $g1)) |
| (export "global-2" (global $g2)) |
| ) |
| (module |
| (global $g1 i32 (i32.const 1)) |
| (global $g2 i32 (global.get $g1)) |
| (global $g3 f64 (f64.const -3.4)) |
| (global $g4 (mut f64) (f64.const -2.8)) |
| (global $g5 i32 (i32.const 2)) |
| (global $g6 (mut i32) (global.get $g5)) |
| (global $g7 i32 (i32.const 3)) |
| (global $g8 i32 (global.get $g7)) |
| (global $g9 i32 (i32.const 4)) |
| (global $ga (mut i32) (global.get $g9)) |
| (global $gb i32 (i32.const 5)) |
| (global $gc i32 (global.get $gb)) |
| (func $foo |
| (drop (global.get $g1)) |
| (drop (global.get $g2)) |
| (drop (global.get $g3)) |
| (drop (global.get $g4)) |
| (drop (global.get $g5)) |
| (drop (global.get $g6)) |
| (drop (global.get $g7)) |
| (drop (global.get $g8)) |
| (drop (global.get $g9)) |
| (drop (global.get $ga)) |
| (drop (global.get $gb)) |
| (drop (global.get $gc)) |
| (global.set $ga (i32.const 6)) |
| ) |
| ) |
| (module |
| (global $g1 (mut i32) (i32.const 1)) |
| (global $g2 (mut i32) (i32.const 1)) |
| (func $f (param $x i32) (result i32) |
| (global.set $g1 (i32.const 100)) |
| (global.set $g2 (local.get $x)) |
| (if (local.get $x) (then (return (i32.const 0)))) |
| (local.set $x |
| (i32.add |
| (global.get $g1) |
| (global.get $g2) |
| ) |
| ) |
| (if (local.get $x) (then (return (i32.const 1)))) |
| (global.set $g1 (i32.const 200)) |
| (global.set $g2 (local.get $x)) |
| (local.set $x |
| (i32.add |
| (global.get $g1) |
| (global.get $g2) |
| ) |
| ) |
| (local.get $x) |
| ) |
| ) |
| (module |
| (global $g1 (mut i32) (i32.const 1)) |
| (global $g2 (mut i32) (i32.const 1)) |
| (func $f (param $x i32) (result i32) |
| (global.set $g1 (i32.const 100)) |
| (global.set $g2 (local.get $x)) |
| (local.set $x |
| (i32.add |
| (i32.add |
| (global.get $g1) |
| (global.get $g1) |
| ) |
| (global.get $g2) |
| ) |
| ) |
| (local.get $x) |
| ) |
| ) |
| (module |
| (global $g1 (mut i32) (i32.const 1)) |
| (global $g2 (mut i32) (i32.const 1)) |
| (func $no (param $x i32) (result i32) |
| (global.set $g1 (i32.const 100)) |
| (drop (call $no (i32.const 200))) ;; invalidate |
| (global.get $g1) |
| ) |
| (func $no2 (param $x i32) (result i32) |
| (global.set $g1 (i32.const 100)) |
| (global.set $g1 (local.get $x)) ;; invalidate |
| (global.get $g1) |
| ) |
| (func $yes (param $x i32) (result i32) |
| (global.set $g1 (i32.const 100)) |
| (global.set $g2 (local.get $x)) ;; almost invalidate |
| (global.get $g1) |
| ) |
| ) |
| ;; Reference type tests |
| (module |
| (import "env" "global-1" (global $g1 externref)) |
| (global $g2 (mut externref) (global.get $g1)) |
| (global $g3 externref (ref.null extern)) |
| (func $test1 |
| (drop (global.get $g1)) |
| (drop (global.get $g2)) |
| ) |
| (func $test2 |
| (drop (global.get $g3)) |
| ) |
| ) |
| ;; Global is used by `set` but never `get` can be eliminated. |
| (module |
| (global $write-only (mut i32) (i32.const 1)) |
| (func $foo |
| (global.set $write-only (i32.const 2)) |
| ) |
| ) |