forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#117953 - farnoy:masked-load-store, r=workingjubilee Add more SIMD platform-intrinsics - [x] simd_masked_load - [x] LLVM codegen - llvm.masked.load - [x] cranelift codegen - implemented but untested - [ ] simd_masked_store - [x] LLVM codegen - llvm.masked.store - [ ] cranelift codegen Also added a run-pass test to test both intrinsics, and additional build-fail & check-fail to cover validation for both intrinsics
- Loading branch information
Showing
11 changed files
with
594 additions
and
1 deletion.
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
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
34 changes: 34 additions & 0 deletions
34
tests/codegen/simd-intrinsic/simd-intrinsic-generic-masked-load.rs
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,34 @@ | ||
// compile-flags: -C no-prepopulate-passes | ||
|
||
#![crate_type = "lib"] | ||
|
||
#![feature(repr_simd, platform_intrinsics)] | ||
#![allow(non_camel_case_types)] | ||
|
||
#[repr(simd)] | ||
#[derive(Copy, Clone, PartialEq, Debug)] | ||
pub struct Vec2<T>(pub T, pub T); | ||
|
||
#[repr(simd)] | ||
#[derive(Copy, Clone, PartialEq, Debug)] | ||
pub struct Vec4<T>(pub T, pub T, pub T, pub T); | ||
|
||
extern "platform-intrinsic" { | ||
fn simd_masked_load<M, P, T>(mask: M, pointer: P, values: T) -> T; | ||
} | ||
|
||
// CHECK-LABEL: @load_f32x2 | ||
#[no_mangle] | ||
pub unsafe fn load_f32x2(mask: Vec2<i32>, pointer: *const f32, | ||
values: Vec2<f32>) -> Vec2<f32> { | ||
// CHECK: call <2 x float> @llvm.masked.load.v2f32.p0(ptr {{.*}}, i32 {{.*}}, <2 x i1> {{.*}}, <2 x float> {{.*}}) | ||
simd_masked_load(mask, pointer, values) | ||
} | ||
|
||
// CHECK-LABEL: @load_pf32x4 | ||
#[no_mangle] | ||
pub unsafe fn load_pf32x4(mask: Vec4<i32>, pointer: *const *const f32, | ||
values: Vec4<*const f32>) -> Vec4<*const f32> { | ||
// CHECK: call <4 x ptr> @llvm.masked.load.v4p0.p0(ptr {{.*}}, i32 {{.*}}, <4 x i1> {{.*}}, <4 x ptr> {{.*}}) | ||
simd_masked_load(mask, pointer, values) | ||
} |
32 changes: 32 additions & 0 deletions
32
tests/codegen/simd-intrinsic/simd-intrinsic-generic-masked-store.rs
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,32 @@ | ||
// compile-flags: -C no-prepopulate-passes | ||
|
||
#![crate_type = "lib"] | ||
|
||
#![feature(repr_simd, platform_intrinsics)] | ||
#![allow(non_camel_case_types)] | ||
|
||
#[repr(simd)] | ||
#[derive(Copy, Clone, PartialEq, Debug)] | ||
pub struct Vec2<T>(pub T, pub T); | ||
|
||
#[repr(simd)] | ||
#[derive(Copy, Clone, PartialEq, Debug)] | ||
pub struct Vec4<T>(pub T, pub T, pub T, pub T); | ||
|
||
extern "platform-intrinsic" { | ||
fn simd_masked_store<M, P, T>(mask: M, pointer: P, values: T) -> (); | ||
} | ||
|
||
// CHECK-LABEL: @store_f32x2 | ||
#[no_mangle] | ||
pub unsafe fn store_f32x2(mask: Vec2<i32>, pointer: *mut f32, values: Vec2<f32>) { | ||
// CHECK: call void @llvm.masked.store.v2f32.p0(<2 x float> {{.*}}, ptr {{.*}}, i32 {{.*}}, <2 x i1> {{.*}}) | ||
simd_masked_store(mask, pointer, values) | ||
} | ||
|
||
// CHECK-LABEL: @store_pf32x4 | ||
#[no_mangle] | ||
pub unsafe fn store_pf32x4(mask: Vec4<i32>, pointer: *mut *const f32, values: Vec4<*const f32>) { | ||
// CHECK: call void @llvm.masked.store.v4p0.p0(<4 x ptr> {{.*}}, ptr {{.*}}, i32 {{.*}}, <4 x i1> {{.*}}) | ||
simd_masked_store(mask, pointer, values) | ||
} |
Oops, something went wrong.