mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 00:26:57 +00:00
255 lines
7.9 KiB
Zig
255 lines
7.9 KiB
Zig
const std = @import("std");
|
|
const math = std.math;
|
|
const builtin = @import("builtin");
|
|
const __extendhfsf2 = @import("extendhfsf2.zig").__extendhfsf2;
|
|
const __extendhftf2 = @import("extendhftf2.zig").__extendhftf2;
|
|
const __extendsftf2 = @import("extendsftf2.zig").__extendsftf2;
|
|
const __extenddftf2 = @import("extenddftf2.zig").__extenddftf2;
|
|
const __extenddfxf2 = @import("extenddfxf2.zig").__extenddfxf2;
|
|
const F16T = @import("./common.zig").F16T;
|
|
|
|
fn test__extenddfxf2(a: f64, expected: u80) !void {
|
|
const x = __extenddfxf2(a);
|
|
|
|
const rep: u80 = @bitCast(x);
|
|
if (rep == expected)
|
|
return;
|
|
|
|
// test other possible NaN representation(signal NaN)
|
|
if (math.isNan(@as(f80, @bitCast(expected))) and math.isNan(x))
|
|
return;
|
|
|
|
@panic("__extenddfxf2 test failure");
|
|
}
|
|
|
|
fn test__extenddftf2(a: f64, expected_hi: u64, expected_lo: u64) !void {
|
|
const x = __extenddftf2(a);
|
|
|
|
const rep: u128 = @bitCast(x);
|
|
const hi: u64 = @intCast(rep >> 64);
|
|
const lo: u64 = @truncate(rep);
|
|
|
|
if (hi == expected_hi and lo == expected_lo)
|
|
return;
|
|
|
|
// test other possible NaN representation(signal NaN)
|
|
if (expected_hi == 0x7fff800000000000 and expected_lo == 0x0) {
|
|
if ((hi & 0x7fff000000000000) == 0x7fff000000000000 and
|
|
((hi & 0xffffffffffff) > 0 or lo > 0))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
@panic("__extenddftf2 test failure");
|
|
}
|
|
|
|
fn test__extendhfsf2(a: u16, expected: u32) !void {
|
|
const x = __extendhfsf2(@as(F16T(f32), @bitCast(a)));
|
|
const rep: u32 = @bitCast(x);
|
|
|
|
if (rep == expected) {
|
|
if (rep & 0x7fffffff > 0x7f800000) {
|
|
return; // NaN is always unequal.
|
|
}
|
|
if (x == @as(f32, @bitCast(expected))) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
return error.TestFailure;
|
|
}
|
|
|
|
fn test__extendsftf2(a: f32, expected_hi: u64, expected_lo: u64) !void {
|
|
const x = __extendsftf2(a);
|
|
|
|
const rep: u128 = @bitCast(x);
|
|
const hi: u64 = @intCast(rep >> 64);
|
|
const lo: u64 = @truncate(rep);
|
|
|
|
if (hi == expected_hi and lo == expected_lo)
|
|
return;
|
|
|
|
// test other possible NaN representation(signal NaN)
|
|
if (expected_hi == 0x7fff800000000000 and expected_lo == 0x0) {
|
|
if ((hi & 0x7fff000000000000) == 0x7fff000000000000 and
|
|
((hi & 0xffffffffffff) > 0 or lo > 0))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
return error.TestFailure;
|
|
}
|
|
|
|
test "extenddfxf2" {
|
|
// qNaN
|
|
try test__extenddfxf2(makeQNaN64(), 0x7fffc000000000000000);
|
|
|
|
// NaN
|
|
try test__extenddfxf2(makeNaN64(0x7100000000000), 0x7fffe080000000000000);
|
|
// This is bad?
|
|
|
|
// inf
|
|
try test__extenddfxf2(makeInf64(), 0x7fff8000000000000000);
|
|
|
|
// zero
|
|
try test__extenddfxf2(0.0, 0x0);
|
|
|
|
try test__extenddfxf2(0x0.a3456789abcdefp+6, 0x4004a3456789abcdf000);
|
|
|
|
try test__extenddfxf2(0x0.edcba987654321fp-8, 0x3ff6edcba98765432000);
|
|
|
|
try test__extenddfxf2(0x0.a3456789abcdefp+46, 0x402ca3456789abcdf000);
|
|
|
|
try test__extenddfxf2(0x0.edcba987654321fp-44, 0x3fd2edcba98765432000);
|
|
|
|
// subnormal
|
|
try test__extenddfxf2(0x1.8000000000001p-1022, 0x3c01c000000000000800);
|
|
try test__extenddfxf2(0x1.8000000000002p-1023, 0x3c00c000000000001000);
|
|
}
|
|
|
|
test "extenddftf2" {
|
|
// qNaN
|
|
try test__extenddftf2(makeQNaN64(), 0x7fff800000000000, 0x0);
|
|
|
|
// NaN
|
|
try test__extenddftf2(makeNaN64(0x7100000000000), 0x7fff710000000000, 0x0);
|
|
|
|
// inf
|
|
try test__extenddftf2(makeInf64(), 0x7fff000000000000, 0x0);
|
|
|
|
// zero
|
|
try test__extenddftf2(0.0, 0x0, 0x0);
|
|
|
|
try test__extenddftf2(0x1.23456789abcdefp+5, 0x400423456789abcd, 0xf000000000000000);
|
|
|
|
try test__extenddftf2(0x1.edcba987654321fp-9, 0x3ff6edcba9876543, 0x2000000000000000);
|
|
|
|
try test__extenddftf2(0x1.23456789abcdefp+45, 0x402c23456789abcd, 0xf000000000000000);
|
|
|
|
try test__extenddftf2(0x1.edcba987654321fp-45, 0x3fd2edcba9876543, 0x2000000000000000);
|
|
|
|
// subnormal
|
|
try test__extenddftf2(0x1.8p-1022, 0x3c01800000000000, 0x0);
|
|
try test__extenddftf2(0x1.8p-1023, 0x3c00800000000000, 0x0);
|
|
}
|
|
|
|
test "extendhfsf2" {
|
|
try test__extendhfsf2(0x7e00, 0x7fc00000); // qNaN
|
|
try test__extendhfsf2(0x7f00, 0x7fe00000); // sNaN
|
|
// On x86 the NaN becomes quiet because the return is pushed on the x87
|
|
// stack due to ABI requirements
|
|
if (builtin.target.cpu.arch != .x86 and builtin.target.os.tag == .windows)
|
|
try test__extendhfsf2(0x7c01, 0x7f802000); // sNaN
|
|
|
|
try test__extendhfsf2(0, 0); // 0
|
|
try test__extendhfsf2(0x8000, 0x80000000); // -0
|
|
|
|
try test__extendhfsf2(0x7c00, 0x7f800000); // inf
|
|
try test__extendhfsf2(0xfc00, 0xff800000); // -inf
|
|
|
|
try test__extendhfsf2(0x0001, 0x33800000); // denormal (min), 2**-24
|
|
try test__extendhfsf2(0x8001, 0xb3800000); // denormal (min), -2**-24
|
|
|
|
try test__extendhfsf2(0x03ff, 0x387fc000); // denormal (max), 2**-14 - 2**-24
|
|
try test__extendhfsf2(0x83ff, 0xb87fc000); // denormal (max), -2**-14 + 2**-24
|
|
|
|
try test__extendhfsf2(0x0400, 0x38800000); // normal (min), 2**-14
|
|
try test__extendhfsf2(0x8400, 0xb8800000); // normal (min), -2**-14
|
|
|
|
try test__extendhfsf2(0x7bff, 0x477fe000); // normal (max), 65504
|
|
try test__extendhfsf2(0xfbff, 0xc77fe000); // normal (max), -65504
|
|
|
|
try test__extendhfsf2(0x3c01, 0x3f802000); // normal, 1 + 2**-10
|
|
try test__extendhfsf2(0xbc01, 0xbf802000); // normal, -1 - 2**-10
|
|
|
|
try test__extendhfsf2(0x3555, 0x3eaaa000); // normal, approx. 1/3
|
|
try test__extendhfsf2(0xb555, 0xbeaaa000); // normal, approx. -1/3
|
|
}
|
|
|
|
test "extendsftf2" {
|
|
// qNaN
|
|
try test__extendsftf2(makeQNaN32(), 0x7fff800000000000, 0x0);
|
|
// NaN
|
|
try test__extendsftf2(makeNaN32(0x410000), 0x7fff820000000000, 0x0);
|
|
// inf
|
|
try test__extendsftf2(makeInf32(), 0x7fff000000000000, 0x0);
|
|
// zero
|
|
try test__extendsftf2(0.0, 0x0, 0x0);
|
|
try test__extendsftf2(0x1.23456p+5, 0x4004234560000000, 0x0);
|
|
try test__extendsftf2(0x1.edcbap-9, 0x3ff6edcba0000000, 0x0);
|
|
try test__extendsftf2(0x1.23456p+45, 0x402c234560000000, 0x0);
|
|
try test__extendsftf2(0x1.edcbap-45, 0x3fd2edcba0000000, 0x0);
|
|
}
|
|
|
|
fn makeQNaN64() f64 {
|
|
return @bitCast(@as(u64, 0x7ff8000000000000));
|
|
}
|
|
|
|
fn makeInf64() f64 {
|
|
return @bitCast(@as(u64, 0x7ff0000000000000));
|
|
}
|
|
|
|
fn makeNaN64(rand: u64) f64 {
|
|
return @bitCast(0x7ff0000000000000 | (rand & 0xfffffffffffff));
|
|
}
|
|
|
|
fn makeQNaN32() f32 {
|
|
return @bitCast(@as(u32, 0x7fc00000));
|
|
}
|
|
|
|
fn makeNaN32(rand: u32) f32 {
|
|
return @bitCast(0x7f800000 | (rand & 0x7fffff));
|
|
}
|
|
|
|
fn makeInf32() f32 {
|
|
return @bitCast(@as(u32, 0x7f800000));
|
|
}
|
|
|
|
fn test__extendhftf2(a: u16, expected_hi: u64, expected_lo: u64) !void {
|
|
const x = __extendhftf2(@as(F16T(f128), @bitCast(a)));
|
|
|
|
const rep: u128 = @bitCast(x);
|
|
const hi: u64 = @intCast(rep >> 64);
|
|
const lo: u64 = @truncate(rep);
|
|
|
|
if (hi == expected_hi and lo == expected_lo)
|
|
return;
|
|
|
|
// test other possible NaN representation(signal NaN)
|
|
if (expected_hi == 0x7fff800000000000 and expected_lo == 0x0) {
|
|
if ((hi & 0x7fff000000000000) == 0x7fff000000000000 and
|
|
((hi & 0xffffffffffff) > 0 or lo > 0))
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
return error.TestFailure;
|
|
}
|
|
|
|
test "extendhftf2" {
|
|
// qNaN
|
|
try test__extendhftf2(0x7e00, 0x7fff800000000000, 0x0);
|
|
// NaN
|
|
try test__extendhftf2(0x7d00, 0x7fff400000000000, 0x0);
|
|
// inf
|
|
try test__extendhftf2(0x7c00, 0x7fff000000000000, 0x0);
|
|
try test__extendhftf2(0xfc00, 0xffff000000000000, 0x0);
|
|
// zero
|
|
try test__extendhftf2(0x0000, 0x0000000000000000, 0x0);
|
|
try test__extendhftf2(0x8000, 0x8000000000000000, 0x0);
|
|
// denormal
|
|
try test__extendhftf2(0x0010, 0x3feb000000000000, 0x0);
|
|
try test__extendhftf2(0x0001, 0x3fe7000000000000, 0x0);
|
|
try test__extendhftf2(0x8001, 0xbfe7000000000000, 0x0);
|
|
|
|
// pi
|
|
try test__extendhftf2(0x4248, 0x4000920000000000, 0x0);
|
|
try test__extendhftf2(0xc248, 0xc000920000000000, 0x0);
|
|
|
|
try test__extendhftf2(0x508c, 0x4004230000000000, 0x0);
|
|
try test__extendhftf2(0x1bb7, 0x3ff6edc000000000, 0x0);
|
|
}
|