2017-12-23 19:08:53 -08:00
|
|
|
const std = @import("../index.zig");
|
|
|
|
const math = std.math;
|
|
|
|
const assert = std.debug.assert;
|
2017-06-16 01:26:10 -07:00
|
|
|
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn isNan(x: var) bool {
|
2017-06-16 01:26:10 -07:00
|
|
|
const T = @typeOf(x);
|
|
|
|
switch (T) {
|
2018-06-29 16:44:54 -07:00
|
|
|
f16 => {
|
|
|
|
const bits = @bitCast(u16, x);
|
|
|
|
return (bits & 0x7fff) > 0x7c00;
|
|
|
|
},
|
2017-06-16 01:26:10 -07:00
|
|
|
f32 => {
|
|
|
|
const bits = @bitCast(u32, x);
|
2017-12-21 21:50:30 -08:00
|
|
|
return bits & 0x7FFFFFFF > 0x7F800000;
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
f64 => {
|
|
|
|
const bits = @bitCast(u64, x);
|
2017-12-21 21:50:30 -08:00
|
|
|
return (bits & (@maxValue(u64) >> 1)) > (u64(0x7FF) << 52);
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
else => {
|
|
|
|
@compileError("isNan not implemented for " ++ @typeName(T));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-20 04:01:04 -07:00
|
|
|
// Note: A signalling nan is identical to a standard right now by may have a different bit
|
|
|
|
// representation in the future when required.
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn isSignalNan(x: var) bool {
|
2017-12-21 21:50:30 -08:00
|
|
|
return isNan(x);
|
2017-06-20 04:01:04 -07:00
|
|
|
}
|
|
|
|
|
2017-06-19 11:36:33 -07:00
|
|
|
test "math.isNan" {
|
2018-06-29 16:44:54 -07:00
|
|
|
assert(isNan(math.nan(f16)));
|
2017-06-16 01:26:10 -07:00
|
|
|
assert(isNan(math.nan(f32)));
|
|
|
|
assert(isNan(math.nan(f64)));
|
2018-06-29 16:44:54 -07:00
|
|
|
assert(!isNan(f16(1.0)));
|
2017-06-16 01:26:10 -07:00
|
|
|
assert(!isNan(f32(1.0)));
|
|
|
|
assert(!isNan(f64(1.0)));
|
|
|
|
}
|