summaryrefslogtreecommitdiff
path: root/test/i64-setTempRet0.fromasm.no-opts
blob: d509aacfc6e6429c0856f897df1b86d1b1fe4611 (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
49
50
51
52
53
54
55
56
57
58
(module
 (type $FUNCSIG$j (func (result i64)))
 (type $FUNCSIG$vi (func (param i32)))
 (type $FUNCSIG$i (func (result i32)))
 (type $legaltype$illegalImportResult (func (result i32)))
 (import "env" "memory" (memory $memory 256 256))
 (import "env" "table" (table $table 0 0 funcref))
 (import "env" "__memory_base" (global $__memory_base i32))
 (import "env" "__table_base" (global $__table_base i32))
 (import "env" "setTempRet0" (func $setTempRet0 (param i32)))
 (import "env" "getTempRet0" (func $getTempRet0 (result i32)))
 (import "env" "illegalImportResult" (func $legalimport$illegalImportResult (result i32)))
 (global $tempRet0 (mut i32) (i32.const 0))
 (export "illegalResult" (func $legalstub$illegalResult))
 (export "imports" (func $imports))
 (func $illegalResult (; 3 ;) (result i64)
  (return
   (i64.const 8589934593)
  )
 )
 (func $imports (; 4 ;) (result i32)
  (return
   (i32.wrap_i64
    (call $legalfunc$illegalImportResult)
   )
  )
 )
 (func $legalstub$illegalResult (; 5 ;) (result i32)
  (local $0 i64)
  (local.set $0
   (call $illegalResult)
  )
  (call $setTempRet0
   (i32.wrap_i64
    (i64.shr_u
     (local.get $0)
     (i64.const 32)
    )
   )
  )
  (i32.wrap_i64
   (local.get $0)
  )
 )
 (func $legalfunc$illegalImportResult (; 6 ;) (result i64)
  (i64.or
   (i64.extend_i32_u
    (call $legalimport$illegalImportResult)
   )
   (i64.shl
    (i64.extend_i32_u
     (call $getTempRet0)
    )
    (i64.const 32)
   )
  )
 )
)