aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/isnormal.zig
blob: 88e186a3c90c547c15774bbf73a5f4058f894c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const std = @import("../std.zig");
const math = std.math;
const expect = std.testing.expect;
const maxInt = std.math.maxInt;

// Returns whether x has a normalized representation (i.e. integer part of mantissa is 1).
pub fn isNormal(x: anytype) bool {
    const T = @TypeOf(x);
    switch (T) {
        f16 => {
            const bits = @bitCast(u16, x);
            return (bits +% (1 << 10)) & (maxInt(u16) >> 1) >= (1 << 11);
        },
        f32 => {
            const bits = @bitCast(u32, x);
            return (bits +% (1 << 23)) & (maxInt(u32) >> 1) >= (1 << 24);
        },
        f64 => {
            const bits = @bitCast(u64, x);
            return (bits +% (1 << 52)) & (maxInt(u64) >> 1) >= (1 << 53);
        },
        f128 => {
            const bits = @bitCast(u128, x);
            return (bits +% (1 << 112)) & (maxInt(u128) >> 1) >= (1 << 113);
        },
        else => {
            @compileError("isNormal not implemented for " ++ @typeName(T));
        },
    }
}

test "math.isNormal" {
    try expect(!isNormal(math.nan(f16)));
    try expect(!isNormal(math.nan(f32)));
    try expect(!isNormal(math.nan(f64)));
    try expect(!isNormal(math.nan(f128)));
    try expect(!isNormal(-math.nan(f16)));
    try expect(!isNormal(-math.nan(f32)));
    try expect(!isNormal(-math.nan(f64)));
    try expect(!isNormal(-math.nan(f128)));
    try expect(!isNormal(math.inf(f16)));
    try expect(!isNormal(math.inf(f32)));
    try expect(!isNormal(math.inf(f64)));
    try expect(!isNormal(math.inf(f128)));
    try expect(!isNormal(-math.inf(f16)));
    try expect(!isNormal(-math.inf(f32)));
    try expect(!isNormal(-math.inf(f64)));
    try expect(!isNormal(-math.inf(f128)));
    try expect(!isNormal(@as(f16, 0)));
    try expect(!isNormal(@as(f32, 0)));
    try expect(!isNormal(@as(f64, 0)));
    try expect(!isNormal(@as(f128, 0)));
    try expect(isNormal(@as(f16, 1.0)));
    try expect(isNormal(@as(f32, 1.0)));
    try expect(isNormal(@as(f64, 1.0)));
    try expect(isNormal(@as(f128, 1.0)));
}