blob: c454b4c99fa4911aefe1c8acf10551005ba65095 (
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt -all %s -S -o - | filecheck %s
;; RUN: wasm-opt -all %s --roundtrip -S -o - | filecheck %s
(module
;; CHECK: (type $struct (struct (field (mut i32))))
(type $struct (struct (field (mut i32))))
;; CHECK: (type $packed (struct (field (mut i8))))
(type $packed (struct (field (mut i8))))
;; CHECK: (func $get (type $3) (param $0 (ref null $struct)) (result i32)
;; CHECK-NEXT: (struct.atomic.get $struct 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get (param (ref null $struct)) (result i32)
(struct.atomic.get $struct 0
(local.get 0)
)
)
;; CHECK: (func $get-seqcst (type $3) (param $0 (ref null $struct)) (result i32)
;; CHECK-NEXT: (struct.atomic.get $struct 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-seqcst (param (ref null $struct)) (result i32)
(struct.atomic.get seqcst $struct 0
(local.get 0)
)
)
;; CHECK: (func $get-acqrel (type $3) (param $0 (ref null $struct)) (result i32)
;; CHECK-NEXT: (struct.atomic.get acqrel $struct 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-acqrel (param (ref null $struct)) (result i32)
(struct.atomic.get acqrel $struct 0
(local.get 0)
)
)
;; CHECK: (func $get-s (type $2) (param $0 (ref null $packed)) (result i32)
;; CHECK-NEXT: (struct.atomic.get_s $packed 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-s (param (ref null $packed)) (result i32)
(struct.atomic.get_s $packed 0
(local.get 0)
)
)
;; CHECK: (func $get-s-seqcst (type $2) (param $0 (ref null $packed)) (result i32)
;; CHECK-NEXT: (struct.atomic.get_s $packed 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-s-seqcst (param (ref null $packed)) (result i32)
(struct.atomic.get_s seqcst $packed 0
(local.get 0)
)
)
;; CHECK: (func $get-s-acqrel (type $2) (param $0 (ref null $packed)) (result i32)
;; CHECK-NEXT: (struct.atomic.get_s acqrel $packed 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-s-acqrel (param (ref null $packed)) (result i32)
(struct.atomic.get_s acqrel $packed 0
(local.get 0)
)
)
;; CHECK: (func $get-u (type $2) (param $0 (ref null $packed)) (result i32)
;; CHECK-NEXT: (struct.atomic.get_u $packed 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-u (param (ref null $packed)) (result i32)
(struct.atomic.get_u $packed 0
(local.get 0)
)
)
;; CHECK: (func $get-u-seqcst (type $2) (param $0 (ref null $packed)) (result i32)
;; CHECK-NEXT: (struct.atomic.get_u $packed 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-u-seqcst (param (ref null $packed)) (result i32)
(struct.atomic.get_u seqcst $packed 0
(local.get 0)
)
)
;; CHECK: (func $get-u-acqrel (type $2) (param $0 (ref null $packed)) (result i32)
;; CHECK-NEXT: (struct.atomic.get_u acqrel $packed 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $get-u-acqrel (param (ref null $packed)) (result i32)
(struct.atomic.get_u acqrel $packed 0
(local.get 0)
)
)
;; CHECK: (func $set (type $4) (param $0 (ref null $struct))
;; CHECK-NEXT: (struct.atomic.set $struct 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $set (param (ref null $struct))
(struct.atomic.set $struct 0
(local.get 0)
(i32.const 0)
)
)
;; CHECK: (func $set-seqcst (type $4) (param $0 (ref null $struct))
;; CHECK-NEXT: (struct.atomic.set $struct 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $set-seqcst (param (ref null $struct))
(struct.atomic.set seqcst $struct 0
(local.get 0)
(i32.const 0)
)
)
;; CHECK: (func $set-acqrel (type $4) (param $0 (ref null $struct))
;; CHECK-NEXT: (struct.atomic.set acqrel $struct 0
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $set-acqrel (param (ref null $struct))
(struct.atomic.set acqrel $struct 0
(local.get 0)
(i32.const 0)
)
)
)
|