-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #126171 - RalfJung:simd_bitmask_multibyte, r=workingjub…
…ilee simd_bitmask intrinsic: add a non-power-of-2 multi-byte example r? `@calebzulawski` `@workingjubilee`
- Loading branch information
Showing
4 changed files
with
144 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
//@run-pass | ||
// SEGFAULTS on LLVM 17. This should be merged into `simd-bitmask` once we require LLVM 18. | ||
//@ min-llvm-version: 18 | ||
// FIXME: broken codegen on big-endian (https://github.com/rust-lang/rust/issues/127205) | ||
//@ ignore-endian-big | ||
#![feature(repr_simd, intrinsics)] | ||
|
||
extern "rust-intrinsic" { | ||
fn simd_bitmask<T, U>(v: T) -> U; | ||
fn simd_select_bitmask<T, U>(m: T, a: U, b: U) -> U; | ||
} | ||
|
||
fn main() { | ||
// Non-power-of-2 multi-byte mask. | ||
#[repr(simd, packed)] | ||
#[allow(non_camel_case_types)] | ||
#[derive(Copy, Clone, Debug, PartialEq)] | ||
struct i32x10([i32; 10]); | ||
impl i32x10 { | ||
fn splat(x: i32) -> Self { | ||
Self([x; 10]) | ||
} | ||
} | ||
unsafe { | ||
let mask = i32x10([!0, !0, 0, !0, 0, 0, !0, 0, !0, 0]); | ||
let mask_bits = if cfg!(target_endian = "little") { 0b0101001011 } else { 0b1101001010 }; | ||
let mask_bytes = | ||
if cfg!(target_endian = "little") { [0b01001011, 0b01] } else { [0b11, 0b01001010] }; | ||
|
||
let bitmask1: u16 = simd_bitmask(mask); | ||
let bitmask2: [u8; 2] = simd_bitmask(mask); | ||
assert_eq!(bitmask1, mask_bits); | ||
assert_eq!(bitmask2, mask_bytes); | ||
|
||
let selected1 = simd_select_bitmask::<u16, _>( | ||
mask_bits, | ||
i32x10::splat(!0), // yes | ||
i32x10::splat(0), // no | ||
); | ||
let selected2 = simd_select_bitmask::<[u8; 2], _>( | ||
mask_bytes, | ||
i32x10::splat(!0), // yes | ||
i32x10::splat(0), // no | ||
); | ||
assert_eq!(selected1, mask); | ||
assert_eq!(selected2, mask); | ||
} | ||
|
||
// Test for a mask where the next multiple of 8 is not a power of two. | ||
#[repr(simd, packed)] | ||
#[allow(non_camel_case_types)] | ||
#[derive(Copy, Clone, Debug, PartialEq)] | ||
struct i32x20([i32; 20]); | ||
impl i32x20 { | ||
fn splat(x: i32) -> Self { | ||
Self([x; 20]) | ||
} | ||
} | ||
unsafe { | ||
let mask = i32x20([!0, !0, 0, !0, 0, 0, !0, 0, !0, 0, 0, 0, 0, !0, !0, !0, !0, !0, !0, !0]); | ||
let mask_bits = if cfg!(target_endian = "little") { | ||
0b11111110000101001011 | ||
} else { | ||
0b11010010100001111111 | ||
}; | ||
let mask_bytes = if cfg!(target_endian = "little") { | ||
[0b01001011, 0b11100001, 0b1111] | ||
} else { | ||
[0b1101, 0b00101000, 0b01111111] | ||
}; | ||
|
||
let bitmask1: u32 = simd_bitmask(mask); | ||
let bitmask2: [u8; 3] = simd_bitmask(mask); | ||
assert_eq!(bitmask1, mask_bits); | ||
assert_eq!(bitmask2, mask_bytes); | ||
|
||
let selected1 = simd_select_bitmask::<u32, _>( | ||
mask_bits, | ||
i32x20::splat(!0), // yes | ||
i32x20::splat(0), // no | ||
); | ||
let selected2 = simd_select_bitmask::<[u8; 3], _>( | ||
mask_bytes, | ||
i32x20::splat(!0), // yes | ||
i32x20::splat(0), // no | ||
); | ||
assert_eq!(selected1, mask); | ||
assert_eq!(selected2, mask); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters