Skip to content

Commit 90ff845

Browse files
authored
Unrolled build for rust-lang#126923
Rollup merge of rust-lang#126923 - workingjubilee:regression-tests-for-simd-invalid-bitcast, r=calebzulawski test: dont optimize to invalid bitcasts Regression tests to prevent regressing.
2 parents 7b21c18 + ac67072 commit 90ff845

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//@ build-pass
2+
//@ compile-flags: -Copt-level=3
3+
4+
// regression test for https://github.com/rust-lang/rust/issues/110722
5+
// in --release we were optimizing to invalid bitcasts, due to a combination of MIR inlining and
6+
// mostly bad repr(simd) lowering which prevented even basic splats from working
7+
#![crate_type = "rlib"]
8+
#![feature(portable_simd)]
9+
use std::simd::*;
10+
use std::simd::num::*;
11+
12+
pub unsafe fn mask_to_array(mask: u8) -> [i32; 8] {
13+
let mut output = [0; 8];
14+
let m = masksizex8::from_bitmask(mask as _);
15+
output.copy_from_slice(&m.to_int().cast::<i32>().to_array());
16+
output
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//@ build-pass
2+
//@ compile-flags: -Copt-level=3
3+
//@ only-x86_64
4+
// ignore-tidy-linelength
5+
6+
// regression test for https://github.com/rust-lang/rust/issues/110707
7+
// in --release we were optimizing to invalid bitcasts, due to a combination of MIR inlining and
8+
// mostly bad repr(simd) lowering which prevented even basic splats from working
9+
10+
#![crate_type = "rlib"]
11+
#![feature(portable_simd)]
12+
use std::simd::*;
13+
use std::arch::x86_64::*;
14+
15+
#[target_feature(enable = "sse4.1")]
16+
pub unsafe fn fast_round_sse(i: f32x8) -> f32x8 {
17+
let a = i.to_array();
18+
let [low, high]: [[f32; 4]; 2] =
19+
unsafe { std::mem::transmute::<[f32; 8], [[f32; 4]; 2]>(a) };
20+
21+
let low = f32x4::from(_mm_round_ps::<{_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC}>(f32x4::from_array(low).into()));
22+
let high = f32x4::from(_mm_round_ps::<{_MM_FROUND_TO_NEAREST_INT | _MM_FROUND_NO_EXC}>(f32x4::from_array(high).into()));
23+
24+
let a: [f32; 8] =
25+
unsafe { std::mem::transmute::<[[f32; 4]; 2], [f32; 8]>([low.to_array(), high.to_array()]) };
26+
f32x8::from_array(a)
27+
}

0 commit comments

Comments
 (0)