Add vcvtq_u32_f32 and vcvtq_s32_f32 (#902)

This commit is contained in:
Jeff Muizelaar 2020-09-13 16:11:32 -04:00 committed by GitHub
parent cf1adeba7a
commit 394940b950
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 99 additions and 0 deletions

View file

@ -285,6 +285,11 @@ extern "C" {
b3: int8x16_t,
c: uint8x16_t,
) -> int8x16_t;
#[link_name = "llvm.aarch64.neon.fcvtzu.v4i32.v4f32"]
fn vcvtq_u32_f32_(a: float32x4_t) -> uint32x4_t;
#[link_name = "llvm.aarch64.neon.fcvtzs.v4i32.v4f32"]
fn vcvtq_s32_f32_(a: float32x4_t) -> int32x4_t;
}
/// Absolute Value (wrapping).
@ -1838,6 +1843,21 @@ pub unsafe fn vld1q_u32(addr: *const u32) -> uint32x4_t {
))
}
#[inline]
#[target_feature(enable = "neon")]
#[cfg_attr(test, assert_instr(fcvtzs))]
pub unsafe fn vcvtq_s32_f32(a: float32x4_t) -> int32x4_t {
vcvtq_s32_f32_(a)
}
/// Floating-point Convert to Unsigned fixed-point, rounding toward Zero (vector)
#[inline]
#[target_feature(enable = "neon")]
#[cfg_attr(test, assert_instr(fcvtzu))]
pub unsafe fn vcvtq_u32_f32(a: float32x4_t) -> uint32x4_t {
vcvtq_u32_f32_(a)
}
#[cfg(test)]
mod tests {
use crate::core_arch::aarch64::test_support::*;
@ -1846,6 +1866,42 @@ mod tests {
use std::mem::transmute;
use stdarch_test::simd_test;
#[simd_test(enable = "neon")]
unsafe fn test_vcvtq_s32_f32() {
let f = f32x4::new(-1., 2., 3., 4.);
let e = i32x4::new(-1, 2, 3, 4);
let r: i32x4 = transmute(vcvtq_s32_f32(transmute(f)));
assert_eq!(r, e);
let f = f32x4::new(10e37, 2., 3., 4.);
let e = i32x4::new(0x7fffffff, 2, 3, 4);
let r: i32x4 = transmute(vcvtq_s32_f32(transmute(f)));
assert_eq!(r, e);
let f = f32x4::new(-10e37, 2., 3., 4.);
let e = i32x4::new(-0x80000000, 2, 3, 4);
let r: i32x4 = transmute(vcvtq_s32_f32(transmute(f)));
assert_eq!(r, e);
}
#[simd_test(enable = "neon")]
unsafe fn test_vcvtq_u32_f32() {
let f = f32x4::new(1., 2., 3., 4.);
let e = u32x4::new(1, 2, 3, 4);
let r: u32x4 = transmute(vcvtq_u32_f32(transmute(f)));
assert_eq!(r, e);
let f = f32x4::new(-1., 2., 3., 4.);
let e = u32x4::new(0, 2, 3, 4);
let r: u32x4 = transmute(vcvtq_u32_f32(transmute(f)));
assert_eq!(r, e);
let f = f32x4::new(10e37, 2., 3., 4.);
let e = u32x4::new(0xffffffff, 2, 3, 4);
let r: u32x4 = transmute(vcvtq_u32_f32(transmute(f)));
assert_eq!(r, e);
}
#[simd_test(enable = "neon")]
unsafe fn test_vld1q_f32() {
let e = f32x4::new(1., 2., 3., 4.);

View file

@ -1811,6 +1811,31 @@ pub unsafe fn vld1q_dup_f32(addr: *const f32) -> float32x4_t {
transmute(f32x4::new(v, v, v, v))
}
// These float-to-int implementations have undefined behaviour when `a` overflows
// the destination type. Clang has the same problem: https://llvm.org/PR47510
/// Floating-point Convert to Signed fixed-point, rounding toward Zero (vector)
#[inline]
#[cfg(target_arch = "arm")]
#[target_feature(enable = "neon")]
#[target_feature(enable = "v7")]
#[cfg_attr(test, assert_instr("vcvt.s32.f32"))]
pub unsafe fn vcvtq_s32_f32(a: float32x4_t) -> int32x4_t {
use crate::core_arch::simd::{f32x4, i32x4};
transmute(simd_cast::<_, i32x4>(transmute::<_, f32x4>(a)))
}
/// Floating-point Convert to Unsigned fixed-point, rounding toward Zero (vector)
#[inline]
#[cfg(target_arch = "arm")]
#[target_feature(enable = "neon")]
#[target_feature(enable = "v7")]
#[cfg_attr(test, assert_instr("vcvt.u32.f32"))]
pub unsafe fn vcvtq_u32_f32(a: float32x4_t) -> uint32x4_t {
use crate::core_arch::simd::{f32x4, u32x4};
transmute(simd_cast::<_, u32x4>(transmute::<_, f32x4>(a)))
}
#[cfg(test)]
mod tests {
use super::*;
@ -1876,6 +1901,24 @@ mod tests {
assert_eq!(r, e);
}
#[cfg(target_arch = "arm")]
#[simd_test(enable = "neon")]
unsafe fn test_vcvtq_s32_f32() {
let f = f32x4::new(-1., 2., 3., 4.);
let e = i32x4::new(-1, 2, 3, 4);
let r: i32x4 = transmute(vcvtq_s32_f32(transmute(f)));
assert_eq!(r, e);
}
#[cfg(target_arch = "arm")]
#[simd_test(enable = "neon")]
unsafe fn test_vcvtq_u32_f32() {
let f = f32x4::new(1., 2., 3., 4.);
let e = u32x4::new(1, 2, 3, 4);
let r: u32x4 = transmute(vcvtq_u32_f32(transmute(f)));
assert_eq!(r, e);
}
#[simd_test(enable = "neon")]
unsafe fn test_vget_lane_u8() {
let v = i8x8::new(1, 2, 3, 4, 5, 6, 7, 8);