summaryrefslogtreecommitdiff
path: root/test/interp/call.txt
blob: 04a3fa190959d790f49d757619dfe987d04b559a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
;;; TOOL: run-interp
(module
  (func (export "call") (result i32)
    i32.const 1
    i64.const 2
    f32.const 3
    f64.const 4
    call $helper)

  (func $helper (param i32 i64 f32 f64) (result i32)
    local.get 1
    i32.wrap_i64
    local.get 0
    i32.add
    local.get 2
    i32.trunc_f32_s
    i32.add
    local.get 3
    i32.trunc_f64_s
    i32.add
    return)

  (func (export "fac10") (result i32)
    i32.const 10
    call $fac)


  (func $fac (param i32) (result i32)
    local.get 0
    i32.const 0
    i32.gt_s 
    if (result i32)
      local.get 0
      local.get 0
      i32.const 1
      i32.sub
      call $fac
      i32.mul
      return
    else
      i32.const 1
      return
    end) 
)
(;; STDOUT ;;;
call() => i32:10
fac10() => i32:3628800
;;; STDOUT ;;)