mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
* unify the logic for exporting math functions from compiler-rt,
with the appropriate suffixes and prefixes.
- add all missing f128 and f80 exports. Functions with missing
implementations call other functions and have TODO comments.
- also add f16 functions
* move math functions from freestanding libc to compiler-rt (#7265)
* enable all the f128 and f80 code in the stage2 compiler and behavior
tests (#11161).
* update std lib to use builtins rather than `std.math`.
36 lines
985 B
Zig
36 lines
985 B
Zig
// Ported from musl, which is licensed under the MIT license:
|
|
// https://git.musl-libc.org/cgit/musl/tree/COPYRIGHT
|
|
//
|
|
// https://git.musl-libc.org/cgit/musl/tree/src/math/__expo2f.c
|
|
// https://git.musl-libc.org/cgit/musl/tree/src/math/__expo2.c
|
|
|
|
const math = @import("../math.zig");
|
|
|
|
/// Returns exp(x) / 2 for x >= log(maxFloat(T)).
|
|
pub fn expo2(x: anytype) @TypeOf(x) {
|
|
const T = @TypeOf(x);
|
|
return switch (T) {
|
|
f32 => expo2f(x),
|
|
f64 => expo2d(x),
|
|
else => @compileError("expo2 not implemented for " ++ @typeName(T)),
|
|
};
|
|
}
|
|
|
|
fn expo2f(x: f32) f32 {
|
|
const k: u32 = 235;
|
|
const kln2 = 0x1.45C778p+7;
|
|
|
|
const u = (0x7F + k / 2) << 23;
|
|
const scale = @bitCast(f32, u);
|
|
return @exp(x - kln2) * scale * scale;
|
|
}
|
|
|
|
fn expo2d(x: f64) f64 {
|
|
const k: u32 = 2043;
|
|
const kln2 = 0x1.62066151ADD8BP+10;
|
|
|
|
const u = (0x3FF + k / 2) << 20;
|
|
const scale = @bitCast(f64, @as(u64, u) << 32);
|
|
return @exp(x - kln2) * scale * scale;
|
|
}
|