110 lines
3.6 KiB
WebAssembly Text Format
110 lines
3.6 KiB
WebAssembly Text Format
;; Test `call` operator
|
|
|
|
(module
|
|
;; Auxiliary definitions
|
|
(func $const-i32 (result i32) (i32.const 0x132))
|
|
(func $const-i64 (result i64) (i64.const 0x164))
|
|
(func $const-f32 (result f32) (f32.const 0xf32))
|
|
(func $const-f64 (result f64) (f64.const 0xf64))
|
|
|
|
(func $id-i32 (param i32) (result i32) (get_local 0))
|
|
(func $id-i64 (param i64) (result i64) (get_local 0))
|
|
(func $id-f32 (param f32) (result f32) (get_local 0))
|
|
(func $id-f64 (param f64) (result f64) (get_local 0))
|
|
|
|
(func $f32-i32 (param f32 i32) (result i32) (get_local 1))
|
|
(func $i32-i64 (param i32 i64) (result i64) (get_local 1))
|
|
(func $f64-f32 (param f64 f32) (result f32) (get_local 1))
|
|
(func $i64-f64 (param i64 f64) (result f64) (get_local 1))
|
|
|
|
;; Typing
|
|
|
|
(func (export "type-i32") (result i32) (call $const-i32))
|
|
(func (export "type-i64") (result i64) (call $const-i64))
|
|
(func (export "type-f32") (result f32) (call $const-f32))
|
|
(func (export "type-f64") (result f64) (call $const-f64))
|
|
|
|
(func (export "type-first-i32") (result i32) (call $id-i32 (i32.const 32)))
|
|
(func (export "type-first-i64") (result i64) (call $id-i64 (i64.const 64)))
|
|
(func (export "type-first-f32") (result f32) (call $id-f32 (f32.const 1.32)))
|
|
(func (export "type-first-f64") (result f64) (call $id-f64 (f64.const 1.64)))
|
|
|
|
(func (export "type-second-i32") (result i32)
|
|
(call $f32-i32 (f32.const 32.1) (i32.const 32))
|
|
)
|
|
(func (export "type-second-i64") (result i64)
|
|
(call $i32-i64 (i32.const 32) (i64.const 64))
|
|
)
|
|
(func (export "type-second-f32") (result f32)
|
|
(call $f64-f32 (f64.const 64) (f32.const 32))
|
|
)
|
|
(func (export "type-second-f64") (result f64)
|
|
(call $i64-f64 (i64.const 64) (f64.const 64.1))
|
|
)
|
|
|
|
;; Recursion
|
|
|
|
(func $fac (export "fac") (param i64) (result i64)
|
|
(if (result i64) (i64.eqz (get_local 0))
|
|
(then (i64.const 1))
|
|
(else
|
|
(i64.mul
|
|
(get_local 0)
|
|
(call $fac (i64.sub (get_local 0) (i64.const 1)))
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
(func $fac-acc (export "fac-acc") (param i64 i64) (result i64)
|
|
(if (result i64) (i64.eqz (get_local 0))
|
|
(then (get_local 1))
|
|
(else
|
|
(call $fac-acc
|
|
(i64.sub (get_local 0) (i64.const 1))
|
|
(i64.mul (get_local 0) (get_local 1))
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
(func $fib (export "fib") (param i64) (result i64)
|
|
(if (result i64) (i64.le_u (get_local 0) (i64.const 1))
|
|
(then (i64.const 1))
|
|
(else
|
|
(i64.add
|
|
(call $fib (i64.sub (get_local 0) (i64.const 2)))
|
|
(call $fib (i64.sub (get_local 0) (i64.const 1)))
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
(func $even (export "even") (param i64) (result i32)
|
|
(if (result i32) (i64.eqz (get_local 0))
|
|
(then (i32.const 44))
|
|
(else (call $odd (i64.sub (get_local 0) (i64.const 1))))
|
|
)
|
|
)
|
|
(func $odd (export "odd") (param i64) (result i32)
|
|
(if (result i32) (i64.eqz (get_local 0))
|
|
(then (i32.const 99))
|
|
(else (call $even (i64.sub (get_local 0) (i64.const 1))))
|
|
)
|
|
)
|
|
|
|
;; Stack exhaustion
|
|
|
|
;; Implementations are required to have every call consume some abstract
|
|
;; resource towards exhausting some abstract finite limit, such that
|
|
;; infinitely recursive test cases reliably trap in finite time. This is
|
|
;; because otherwise applications could come to depend on it on those
|
|
;; implementations and be incompatible with implementations that don't do
|
|
;; it (or don't do it under the same circumstances).
|
|
|
|
(func $runaway (export "runaway") (call $runaway))
|
|
|
|
(func $mutual-runaway1 (export "mutual-runaway") (call $mutual-runaway2))
|
|
(func $mutual-runaway2 (call $mutual-runaway1))
|
|
)
|