@@ -68,12 +68,12 @@ extern "C" {
68
68
#[ cfg_attr( test, assert_instr( i8x16. relaxed_swizzle) ) ]
69
69
#[ target_feature( enable = "relaxed-simd" ) ]
70
70
#[ doc( alias( "i8x16.relaxed_swizzle" ) ) ]
71
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
71
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
72
72
pub fn i8x16_relaxed_swizzle ( a : v128 , s : v128 ) -> v128 {
73
73
unsafe { llvm_relaxed_swizzle ( a. as_i8x16 ( ) , s. as_i8x16 ( ) ) . v128 ( ) }
74
74
}
75
75
76
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
76
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
77
77
pub use i8x16_relaxed_swizzle as u8x16_relaxed_swizzle;
78
78
79
79
/// A relaxed version of `i32x4_trunc_sat_f32x4(a)` converts the `f32` lanes
@@ -85,7 +85,7 @@ pub use i8x16_relaxed_swizzle as u8x16_relaxed_swizzle;
85
85
#[ cfg_attr( test, assert_instr( i32x4. relaxed_trunc_f32x4_s) ) ]
86
86
#[ target_feature( enable = "relaxed-simd" ) ]
87
87
#[ doc( alias( "i32x4.relaxed_trunc_f32x4_s" ) ) ]
88
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
88
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
89
89
pub fn i32x4_relaxed_trunc_f32x4 ( a : v128 ) -> v128 {
90
90
unsafe { llvm_relaxed_trunc_signed ( a. as_f32x4 ( ) ) . v128 ( ) }
91
91
}
@@ -99,7 +99,7 @@ pub fn i32x4_relaxed_trunc_f32x4(a: v128) -> v128 {
99
99
#[ cfg_attr( test, assert_instr( i32x4. relaxed_trunc_f32x4_u) ) ]
100
100
#[ target_feature( enable = "relaxed-simd" ) ]
101
101
#[ doc( alias( "i32x4.relaxed_trunc_f32x4_u" ) ) ]
102
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
102
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
103
103
pub fn u32x4_relaxed_trunc_f32x4 ( a : v128 ) -> v128 {
104
104
unsafe { llvm_relaxed_trunc_unsigned ( a. as_f32x4 ( ) ) . v128 ( ) }
105
105
}
@@ -113,7 +113,7 @@ pub fn u32x4_relaxed_trunc_f32x4(a: v128) -> v128 {
113
113
#[ cfg_attr( test, assert_instr( i32x4. relaxed_trunc_f64x2_s_zero) ) ]
114
114
#[ target_feature( enable = "relaxed-simd" ) ]
115
115
#[ doc( alias( "i32x4.relaxed_trunc_f64x2_s_zero" ) ) ]
116
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
116
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
117
117
pub fn i32x4_relaxed_trunc_f64x2_zero ( a : v128 ) -> v128 {
118
118
unsafe { llvm_relaxed_trunc_signed_zero ( a. as_f64x2 ( ) ) . v128 ( ) }
119
119
}
@@ -127,7 +127,7 @@ pub fn i32x4_relaxed_trunc_f64x2_zero(a: v128) -> v128 {
127
127
#[ cfg_attr( test, assert_instr( i32x4. relaxed_trunc_f64x2_u_zero) ) ]
128
128
#[ target_feature( enable = "relaxed-simd" ) ]
129
129
#[ doc( alias( "i32x4.relaxed_trunc_f64x2_u_zero" ) ) ]
130
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
130
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
131
131
pub fn u32x4_relaxed_trunc_f64x2_zero ( a : v128 ) -> v128 {
132
132
unsafe { llvm_relaxed_trunc_unsigned_zero ( a. as_f64x2 ( ) ) . v128 ( ) }
133
133
}
@@ -137,7 +137,7 @@ pub fn u32x4_relaxed_trunc_f64x2_zero(a: v128) -> v128 {
137
137
#[ cfg_attr( test, assert_instr( f32x4. relaxed_madd) ) ]
138
138
#[ target_feature( enable = "relaxed-simd" ) ]
139
139
#[ doc( alias( "f32x4.relaxed_madd" ) ) ]
140
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
140
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
141
141
pub fn f32x4_relaxed_madd ( a : v128 , b : v128 , c : v128 ) -> v128 {
142
142
unsafe { llvm_f32x4_fma ( a. as_f32x4 ( ) , b. as_f32x4 ( ) , c. as_f32x4 ( ) ) . v128 ( ) }
143
143
}
@@ -147,7 +147,7 @@ pub fn f32x4_relaxed_madd(a: v128, b: v128, c: v128) -> v128 {
147
147
#[ cfg_attr( test, assert_instr( f32x4. relaxed_nmadd) ) ]
148
148
#[ target_feature( enable = "relaxed-simd" ) ]
149
149
#[ doc( alias( "f32x4.relaxed_nmadd" ) ) ]
150
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
150
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
151
151
pub fn f32x4_relaxed_nmadd ( a : v128 , b : v128 , c : v128 ) -> v128 {
152
152
unsafe { llvm_f32x4_fms ( a. as_f32x4 ( ) , b. as_f32x4 ( ) , c. as_f32x4 ( ) ) . v128 ( ) }
153
153
}
@@ -157,7 +157,7 @@ pub fn f32x4_relaxed_nmadd(a: v128, b: v128, c: v128) -> v128 {
157
157
#[ cfg_attr( test, assert_instr( f64x2. relaxed_madd) ) ]
158
158
#[ target_feature( enable = "relaxed-simd" ) ]
159
159
#[ doc( alias( "f64x2.relaxed_madd" ) ) ]
160
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
160
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
161
161
pub fn f64x2_relaxed_madd ( a : v128 , b : v128 , c : v128 ) -> v128 {
162
162
unsafe { llvm_f64x2_fma ( a. as_f64x2 ( ) , b. as_f64x2 ( ) , c. as_f64x2 ( ) ) . v128 ( ) }
163
163
}
@@ -167,7 +167,7 @@ pub fn f64x2_relaxed_madd(a: v128, b: v128, c: v128) -> v128 {
167
167
#[ cfg_attr( test, assert_instr( f64x2. relaxed_nmadd) ) ]
168
168
#[ target_feature( enable = "relaxed-simd" ) ]
169
169
#[ doc( alias( "f64x2.relaxed_nmadd" ) ) ]
170
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
170
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
171
171
pub fn f64x2_relaxed_nmadd ( a : v128 , b : v128 , c : v128 ) -> v128 {
172
172
unsafe { llvm_f64x2_fms ( a. as_f64x2 ( ) , b. as_f64x2 ( ) , c. as_f64x2 ( ) ) . v128 ( ) }
173
173
}
@@ -183,12 +183,12 @@ pub fn f64x2_relaxed_nmadd(a: v128, b: v128, c: v128) -> v128 {
183
183
#[ cfg_attr( test, assert_instr( i8x16. relaxed_laneselect) ) ]
184
184
#[ target_feature( enable = "relaxed-simd" ) ]
185
185
#[ doc( alias( "i8x16.relaxed_laneselect" ) ) ]
186
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
186
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
187
187
pub fn i8x16_relaxed_laneselect ( a : v128 , b : v128 , m : v128 ) -> v128 {
188
188
unsafe { llvm_i8x16_laneselect ( a. as_i8x16 ( ) , b. as_i8x16 ( ) , m. as_i8x16 ( ) ) . v128 ( ) }
189
189
}
190
190
191
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
191
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
192
192
pub use i8x16_relaxed_laneselect as u8x16_relaxed_laneselect;
193
193
194
194
/// A relaxed version of `v128_bitselect` where this either behaves the same as
@@ -202,12 +202,12 @@ pub use i8x16_relaxed_laneselect as u8x16_relaxed_laneselect;
202
202
#[ cfg_attr( test, assert_instr( i16x8. relaxed_laneselect) ) ]
203
203
#[ target_feature( enable = "relaxed-simd" ) ]
204
204
#[ doc( alias( "i16x8.relaxed_laneselect" ) ) ]
205
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
205
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
206
206
pub fn i16x8_relaxed_laneselect ( a : v128 , b : v128 , m : v128 ) -> v128 {
207
207
unsafe { llvm_i16x8_laneselect ( a. as_i16x8 ( ) , b. as_i16x8 ( ) , m. as_i16x8 ( ) ) . v128 ( ) }
208
208
}
209
209
210
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
210
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
211
211
pub use i16x8_relaxed_laneselect as u16x8_relaxed_laneselect;
212
212
213
213
/// A relaxed version of `v128_bitselect` where this either behaves the same as
@@ -221,12 +221,12 @@ pub use i16x8_relaxed_laneselect as u16x8_relaxed_laneselect;
221
221
#[ cfg_attr( test, assert_instr( i32x4. relaxed_laneselect) ) ]
222
222
#[ target_feature( enable = "relaxed-simd" ) ]
223
223
#[ doc( alias( "i32x4.relaxed_laneselect" ) ) ]
224
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
224
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
225
225
pub fn i32x4_relaxed_laneselect ( a : v128 , b : v128 , m : v128 ) -> v128 {
226
226
unsafe { llvm_i32x4_laneselect ( a. as_i32x4 ( ) , b. as_i32x4 ( ) , m. as_i32x4 ( ) ) . v128 ( ) }
227
227
}
228
228
229
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
229
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
230
230
pub use i32x4_relaxed_laneselect as u32x4_relaxed_laneselect;
231
231
232
232
/// A relaxed version of `v128_bitselect` where this either behaves the same as
@@ -240,12 +240,12 @@ pub use i32x4_relaxed_laneselect as u32x4_relaxed_laneselect;
240
240
#[ cfg_attr( test, assert_instr( i64x2. relaxed_laneselect) ) ]
241
241
#[ target_feature( enable = "relaxed-simd" ) ]
242
242
#[ doc( alias( "i64x2.relaxed_laneselect" ) ) ]
243
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
243
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
244
244
pub fn i64x2_relaxed_laneselect ( a : v128 , b : v128 , m : v128 ) -> v128 {
245
245
unsafe { llvm_i64x2_laneselect ( a. as_i64x2 ( ) , b. as_i64x2 ( ) , m. as_i64x2 ( ) ) . v128 ( ) }
246
246
}
247
247
248
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
248
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
249
249
pub use i64x2_relaxed_laneselect as u64x2_relaxed_laneselect;
250
250
251
251
/// A relaxed version of `f32x4_min` which is either `f32x4_min` or
@@ -254,7 +254,7 @@ pub use i64x2_relaxed_laneselect as u64x2_relaxed_laneselect;
254
254
#[ cfg_attr( test, assert_instr( f32x4. relaxed_min) ) ]
255
255
#[ target_feature( enable = "relaxed-simd" ) ]
256
256
#[ doc( alias( "f32x4.relaxed_min" ) ) ]
257
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
257
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
258
258
pub fn f32x4_relaxed_min ( a : v128 , b : v128 ) -> v128 {
259
259
unsafe { llvm_f32x4_relaxed_min ( a. as_f32x4 ( ) , b. as_f32x4 ( ) ) . v128 ( ) }
260
260
}
@@ -265,7 +265,7 @@ pub fn f32x4_relaxed_min(a: v128, b: v128) -> v128 {
265
265
#[ cfg_attr( test, assert_instr( f32x4. relaxed_max) ) ]
266
266
#[ target_feature( enable = "relaxed-simd" ) ]
267
267
#[ doc( alias( "f32x4.relaxed_max" ) ) ]
268
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
268
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
269
269
pub fn f32x4_relaxed_max ( a : v128 , b : v128 ) -> v128 {
270
270
unsafe { llvm_f32x4_relaxed_max ( a. as_f32x4 ( ) , b. as_f32x4 ( ) ) . v128 ( ) }
271
271
}
@@ -276,7 +276,7 @@ pub fn f32x4_relaxed_max(a: v128, b: v128) -> v128 {
276
276
#[ cfg_attr( test, assert_instr( f64x2. relaxed_min) ) ]
277
277
#[ target_feature( enable = "relaxed-simd" ) ]
278
278
#[ doc( alias( "f64x2.relaxed_min" ) ) ]
279
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
279
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
280
280
pub fn f64x2_relaxed_min ( a : v128 , b : v128 ) -> v128 {
281
281
unsafe { llvm_f64x2_relaxed_min ( a. as_f64x2 ( ) , b. as_f64x2 ( ) ) . v128 ( ) }
282
282
}
@@ -287,7 +287,7 @@ pub fn f64x2_relaxed_min(a: v128, b: v128) -> v128 {
287
287
#[ cfg_attr( test, assert_instr( f64x2. relaxed_max) ) ]
288
288
#[ target_feature( enable = "relaxed-simd" ) ]
289
289
#[ doc( alias( "f64x2.relaxed_max" ) ) ]
290
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
290
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
291
291
pub fn f64x2_relaxed_max ( a : v128 , b : v128 ) -> v128 {
292
292
unsafe { llvm_f64x2_relaxed_max ( a. as_f64x2 ( ) , b. as_f64x2 ( ) ) . v128 ( ) }
293
293
}
@@ -298,12 +298,12 @@ pub fn f64x2_relaxed_max(a: v128, b: v128) -> v128 {
298
298
#[ cfg_attr( test, assert_instr( i16x8. relaxed_q15mulr_s) ) ]
299
299
#[ target_feature( enable = "relaxed-simd" ) ]
300
300
#[ doc( alias( "i16x8.relaxed_q15mulr_s" ) ) ]
301
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
301
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
302
302
pub fn i16x8_relaxed_q15mulr ( a : v128 , b : v128 ) -> v128 {
303
303
unsafe { llvm_relaxed_q15mulr_signed ( a. as_i16x8 ( ) , b. as_i16x8 ( ) ) . v128 ( ) }
304
304
}
305
305
306
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
306
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
307
307
pub use i16x8_relaxed_q15mulr as u16x8_relaxed_q15mulr;
308
308
309
309
/// A relaxed dot-product instruction.
@@ -321,12 +321,12 @@ pub use i16x8_relaxed_q15mulr as u16x8_relaxed_q15mulr;
321
321
#[ cfg_attr( test, assert_instr( i16x8. relaxed_dot_i8x16_i7x16_s) ) ]
322
322
#[ target_feature( enable = "relaxed-simd" ) ]
323
323
#[ doc( alias( "i16x8.relaxed_dot_i8x16_i7x16_s" ) ) ]
324
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
324
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
325
325
pub fn i16x8_relaxed_dot_i8x16_i7x16 ( a : v128 , b : v128 ) -> v128 {
326
326
unsafe { llvm_i16x8_relaxed_dot_i8x16_i7x16_s ( a. as_i8x16 ( ) , b. as_i8x16 ( ) ) . v128 ( ) }
327
327
}
328
328
329
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
329
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
330
330
pub use i16x8_relaxed_dot_i8x16_i7x16 as u16x8_relaxed_dot_i8x16_i7x16;
331
331
332
332
/// Similar to [`i16x8_relaxed_dot_i8x16_i7x16`] except that the intermediate
@@ -336,14 +336,14 @@ pub use i16x8_relaxed_dot_i8x16_i7x16 as u16x8_relaxed_dot_i8x16_i7x16;
336
336
#[ cfg_attr( test, assert_instr( i32x4. relaxed_dot_i8x16_i7x16_add_s) ) ]
337
337
#[ target_feature( enable = "relaxed-simd" ) ]
338
338
#[ doc( alias( "i32x4.relaxed_dot_i8x16_i7x16_add_s" ) ) ]
339
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
339
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
340
340
pub fn i32x4_relaxed_dot_i8x16_i7x16_add ( a : v128 , b : v128 , c : v128 ) -> v128 {
341
341
unsafe {
342
342
llvm_i32x4_relaxed_dot_i8x16_i7x16_add_s ( a. as_i8x16 ( ) , b. as_i8x16 ( ) , c. as_i32x4 ( ) ) . v128 ( )
343
343
}
344
344
}
345
345
346
- #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "CURRENT_RUSTC_VERSION " ) ]
346
+ #[ stable( feature = "stdarch_wasm_relaxed_simd" , since = "1.81.0 " ) ]
347
347
pub use i32x4_relaxed_dot_i8x16_i7x16_add as u32x4_relaxed_dot_i8x16_i7x16_add;
348
348
349
349
#[ cfg( test) ]
0 commit comments