diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-09-26 01:54:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-26 01:54:45 -0400 |
| commit | 68bb3945708c43109c48bda3664176307d45b62c (patch) | |
| tree | afb9731e10cef9d192560b52cd9ae2cf179775c4 /lib/std/math/expo2.zig | |
| parent | 6128bc728d1e1024a178c16c2149f5b1a167a013 (diff) | |
| parent | 4637e8f9699af9c3c6cf4df50ef5bb67c7a318a4 (diff) | |
| download | zig-68bb3945708c43109c48bda3664176307d45b62c.tar.gz zig-68bb3945708c43109c48bda3664176307d45b62c.zip | |
Merge pull request #3315 from ziglang/mv-std-lib
Move std/ to lib/std/
Diffstat (limited to 'lib/std/math/expo2.zig')
| -rw-r--r-- | lib/std/math/expo2.zig | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/std/math/expo2.zig b/lib/std/math/expo2.zig new file mode 100644 index 0000000000..c00098a5a7 --- /dev/null +++ b/lib/std/math/expo2.zig @@ -0,0 +1,35 @@ +// 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: var) @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 math.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, u64(u) << 32); + return math.exp(x - kln2) * scale * scale; +} |
