]> git.proxmox.com Git - rustc.git/blame - src/test/codegen/simd-intrinsic/simd-intrinsic-generic-gather.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / codegen / simd-intrinsic / simd-intrinsic-generic-gather.rs
CommitLineData
cdc7bbd5 1//
94b46f34
XL
2
3// compile-flags: -C no-prepopulate-passes
4
5#![crate_type = "lib"]
6
7#![feature(repr_simd, platform_intrinsics)]
8#![allow(non_camel_case_types)]
9
10#[repr(simd)]
11#[derive(Copy, Clone, PartialEq, Debug)]
12pub struct Vec2<T>(pub T, pub T);
13
14#[repr(simd)]
15#[derive(Copy, Clone, PartialEq, Debug)]
16pub struct Vec4<T>(pub T, pub T, pub T, pub T);
17
18extern "platform-intrinsic" {
19 fn simd_gather<T, P, M>(value: T, pointers: P, mask: M) -> T;
20}
21
22// CHECK-LABEL: @gather_f32x2
23#[no_mangle]
24pub unsafe fn gather_f32x2(pointers: Vec2<*const f32>, mask: Vec2<i32>,
25 values: Vec2<f32>) -> Vec2<f32> {
923072b8 26 // CHECK: call <2 x float> @llvm.masked.gather.v2f32.{{.+}}(<2 x {{float\*|ptr}}> {{.*}}, i32 {{.*}}, <2 x i1> {{.*}}, <2 x float> {{.*}})
94b46f34
XL
27 simd_gather(values, pointers, mask)
28}
29
30// CHECK-LABEL: @gather_pf32x2
31#[no_mangle]
32pub unsafe fn gather_pf32x2(pointers: Vec2<*const *const f32>, mask: Vec2<i32>,
33 values: Vec2<*const f32>) -> Vec2<*const f32> {
923072b8 34 // CHECK: call <2 x {{float\*|ptr}}> @llvm.masked.gather.{{.+}}(<2 x {{float\*\*|ptr}}> {{.*}}, i32 {{.*}}, <2 x i1> {{.*}}, <2 x {{float\*|ptr}}> {{.*}})
94b46f34
XL
35 simd_gather(values, pointers, mask)
36}