Add x86 implementation of fcvt_from_sint

This commit is contained in:
Andrew Brown
2020-03-06 19:10:00 -08:00
parent ec90509387
commit 444d021ede
4 changed files with 33 additions and 0 deletions

View File

@@ -1568,6 +1568,7 @@ fn define_simd(
let copy_nop = shared.by_name("copy_nop");
let fadd = shared.by_name("fadd");
let fcmp = shared.by_name("fcmp");
let fcvt_from_sint = shared.by_name("fcvt_from_sint");
let fdiv = shared.by_name("fdiv");
let fill = shared.by_name("fill");
let fill_nop = shared.by_name("fill_nop");
@@ -1790,6 +1791,14 @@ fn define_simd(
}
}
// SIMD conversions
{
let fcvt_from_sint_32 = fcvt_from_sint
.bind(vector(F32, sse_vector_size))
.bind(vector(I32, sse_vector_size));
e.enc_both(fcvt_from_sint_32, rec_furm.opcodes(&CVTDQ2PS));
}
// SIMD vconst for special cases (all zeroes, all ones)
// this must be encoded prior to the MOVUPS implementation (below) so the compiler sees this
// encoding first

View File

@@ -77,6 +77,10 @@ pub static CMPPD: [u8; 3] = [0x66, 0x0f, 0xc2];
/// imm8 as comparison predicate (SSE).
pub static CMPPS: [u8; 2] = [0x0f, 0xc2];
/// Convert four packed signed doubleword integers from xmm2/mem to four packed single-precision
/// floating-point values in xmm1 (SSE2).
pub static CVTDQ2PS: [u8; 2] = [0x0f, 0x5b];
/// Convert scalar double-precision floating-point value to scalar single-precision
/// floating-point value.
pub static CVTSD2SS: [u8; 3] = [0xf2, 0x0f, 0x5a];

View File

@@ -9,3 +9,9 @@ block0:
[-, %xmm2] v2 = raw_bitcast.i32x4 v1 ; bin:
return
}
function %fcvt_32(i32x4) {
block0(v0: i32x4 [%xmm6]):
[-, %xmm2] v1 = fcvt_from_sint.f32x4 v0 ; bin: 40 0f 5b d6
return
}

View File

@@ -0,0 +1,14 @@
test run
set enable_simd
function %fcvt_from_sint() -> b1 {
block0:
v0 = vconst.i32x4 [-1 0 1 123456789]
v1 = fcvt_from_sint.f32x4 v0
v2 = vconst.f32x4 [-0x1.0 0.0 0x1.0 0x75bcd18.0] ; 123456789 rounds to 123456792.0, an error of 3
v3 = fcmp eq v1, v2
v4 = vall_true v3
return v4
}
; run