2024-02-22 12:10:29 +00:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
2025-02-24 16:26:56 +00:00
|
|
|
#![feature(repr_simd, core_intrinsics)]
|
2018-05-04 18:07:35 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2025-02-24 16:26:56 +00:00
|
|
|
use std::intrinsics::simd::simd_fabs;
|
|
|
|
|
2018-05-04 18:07:35 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f32x2(pub [f32; 2]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f32x4(pub [f32; 4]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f32x8(pub [f32; 8]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f32x16(pub [f32; 16]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_32x2
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_32x2(a: f32x2) -> f32x2 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <2 x float> @llvm.fabs.v2f32
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_32x4
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_32x4(a: f32x4) -> f32x4 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <4 x float> @llvm.fabs.v4f32
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_32x8
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_32x8(a: f32x8) -> f32x8 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <8 x float> @llvm.fabs.v8f32
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_32x16
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_32x16(a: f32x16) -> f32x16 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <16 x float> @llvm.fabs.v16f32
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f64x2(pub [f64; 2]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f64x4(pub [f64; 4]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
2024-08-22 08:28:20 +00:00
|
|
|
pub struct f64x8(pub [f64; 8]);
|
2018-05-04 18:07:35 +00:00
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_64x4
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_64x4(a: f64x4) -> f64x4 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <4 x double> @llvm.fabs.v4f64
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_64x2
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_64x2(a: f64x2) -> f64x2 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <2 x double> @llvm.fabs.v2f64
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @fabs_64x8
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn fabs_64x8(a: f64x8) -> f64x8 {
|
2021-04-17 17:40:59 +00:00
|
|
|
// CHECK: call <8 x double> @llvm.fabs.v8f64
|
2018-05-04 18:07:35 +00:00
|
|
|
simd_fabs(a)
|
|
|
|
}
|