summaryrefslogtreecommitdiff
path: root/test/threads.wasm-only.fromasm.imprecise.no-opts
blob: 38ce629eb6679e04a69f44a44419c97a82d8d4a8 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(module
 (import "env" "memory" (memory $memory (shared 256 256)))
 (import "env" "table" (table 0 0 anyfunc))
 (import "env" "memoryBase" (global $memoryBase i32))
 (import "env" "tableBase" (global $tableBase i32))
 (import "env" "STACKTOP" (global $STACKTOP$asm2wasm$import i32))
 (global $STACKTOP (mut i32) (get_global $STACKTOP$asm2wasm$import))
 (global $tempRet0 (mut i32) (i32.const 0))
 (export "test64" (func $legalstub$test64))
 (export "getTempRet0" (func $getTempRet0))
 (export "setTempRet0" (func $setTempRet0))
 (func $test64 (; 0 ;) (result i64)
  (local $x i64)
  (local $y i64)
  (local $z i32)
  (local $int32 i32)
  (local $float32 f32)
  (local $float64 f64)
  (i64.atomic.store
   (i32.const 4656)
   (i64.const 92)
  )
  (set_local $x
   (i64.atomic.load
    (i32.const 4656)
   )
  )
  (set_local $y
   (i64.atomic.rmw.add
    (get_local $int32)
    (i64.const 26)
   )
  )
  (set_local $x
   (i64.atomic.rmw.sub
    (i32.const 1024)
    (get_local $y)
   )
  )
  (set_local $y
   (i64.atomic.rmw.and
    (i32.const 1024)
    (get_local $x)
   )
  )
  (set_local $x
   (i64.atomic.rmw.or
    (i32.const 1024)
    (get_local $y)
   )
  )
  (set_local $y
   (i64.atomic.rmw.xor
    (i32.const 1024)
    (get_local $x)
   )
  )
  (set_local $x
   (i64.atomic.rmw.xchg
    (i32.const 1024)
    (get_local $y)
   )
  )
  (set_local $y
   (i64.atomic.rmw.cmpxchg
    (i32.const 1024)
    (get_local $x)
    (get_local $y)
   )
  )
  (return
   (get_local $x)
  )
 )
 (func $legalstub$test64 (; 1 ;) (result i32)
  (local $0 i64)
  (set_local $0
   (call $test64)
  )
  (set_global $tempRet0
   (i32.wrap/i64
    (i64.shr_u
     (get_local $0)
     (i64.const 32)
    )
   )
  )
  (i32.wrap/i64
   (get_local $0)
  )
 )
 (func $getTempRet0 (; 2 ;) (result i32)
  (get_global $tempRet0)
 )
 (func $setTempRet0 (; 3 ;) (param $0 i32)
  (set_global $tempRet0
   (get_local $0)
  )
 )
)