summaryrefslogtreecommitdiff
path: root/test/interp/return-call-indirect.txt
blob: cca471715a0692d231c8502f1f214a7e47d6d6d8 (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
;;; TOOL: run-interp
;;; ARGS*: --enable-tail-call
(module
  (type $iii_i (func (param i32 i32 i32)(result i32)))
  (table funcref (elem $facInd))

  (func (export "facInd10") (result i32)
    i32.const 10
    i32.const 1
    i32.const 0
    i32.const 0
    call_indirect (type $iii_i))

(;; Tail call version of factorial, using indirect call ;;)
(;; fac(Ix,So) => Ix==0?So:fac(Ix-1,So*Ix) ;;)
  (func $facInd (type $iii_i)
    local.get 0
    i32.const 0
    i32.gt_s
    if (result i32)
      local.get 0
      i32.const 1
      i32.sub
      local.get 1
      local.get 0
      i32.mul
      local.get 2
      local.get 2
      return_call_indirect (type $iii_i)
      unreachable
    else
      local.get 1
      return
    end)
)
(;; STDOUT ;;;
facInd10() => i32:3628800
;;; STDOUT ;;)