Skip to content

Commit

Permalink
Merge #654
Browse files Browse the repository at this point in the history
654: Provide math.h from hermit-builtins r=stlankes a=mkroening

Related:
* hermit-os/hermit-rs#406
* rust-lang/rust#107970

Co-authored-by: Martin Kröning <mkroening@posteo.net>
  • Loading branch information
bors[bot] and mkroening authored Feb 14, 2023
2 parents 9ee582f + 7e8bce3 commit ff52547
Show file tree
Hide file tree
Showing 6 changed files with 300 additions and 1 deletion.
9 changes: 9 additions & 0 deletions hermit-builtins/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions hermit-builtins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ name = "hermit-builtins"
version = "0.1.0"
edition = "2021"

[dependencies]
libm = "0.2"

[lib]
crate-type = ["staticlib"]
119 changes: 119 additions & 0 deletions hermit-builtins/exports
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
memcmp
memcpy
memmove
memset
strlen
acos
acosf
acosh
acoshf
asin
asinf
asinh
asinhf
atan
atan2
atan2f
atanf
atanh
atanhf
cbrt
cbrtf
ceil
ceilf
copysign
copysignf
cos
cosf
cosh
coshf
erf
erfc
erfcf
erff
exp
exp10
exp10f
exp2
exp2f
expf
expm1
expm1f
fabs
fabsf
fdim
fdimf
floor
floorf
fma
fmaf
fmax
fmaxf
fmin
fminf
fmod
fmodf
frexp
frexpf
hypot
hypotf
ilogb
ilogbf
j0
j0f
j1
j1f
jn
jnf
ldexp
ldexpf
lgamma
lgamma_r
lgammaf
lgammaf_r
log
log10
log10f
log1p
log1pf
log2
log2f
logf
modf
modff
nextafter
nextafterf
pow
powf
remainder
remainderf
remquo
remquof
rint
rintf
round
roundf
scalbn
scalbnf
sin
sincos
sincosf
sinf
sinh
sinhf
sqrt
sqrtf
tan
tanf
tanh
tanhf
tgamma
tgammaf
trunc
truncf
y0
y0f
y1
y1f
yn
ynf
2 changes: 2 additions & 0 deletions hermit-builtins/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#![no_std]

pub mod math;

#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
Expand Down
165 changes: 165 additions & 0 deletions hermit-builtins/src/math.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
//! C-compatible math functions ([`math.h`]).
//!
//! [`math.h`]: https://en.cppreference.com/w/c/numeric/math
macro_rules! export {
($(fn $fn:ident($($arg:ident: $argty:ty),+) -> $retty:ty;)+) => {
$(
#[no_mangle]
pub extern "C" fn $fn($($arg: $argty),+) -> $retty {
::libm::$fn($($arg),+)
}
)+
};
}

export! {
fn acos(x: f64) -> f64;
fn acosf(x: f32) -> f32;
fn acosh(x: f64) -> f64;
fn acoshf(x: f32) -> f32;
fn asin(x: f64) -> f64;
fn asinf(x: f32) -> f32;
fn asinh(x: f64) -> f64;
fn asinhf(x: f32) -> f32;
fn atan(x: f64) -> f64;
fn atan2(y: f64, x: f64) -> f64;
fn atan2f(y: f32, x: f32) -> f32;
fn atanf(x: f32) -> f32;
fn atanh(x: f64) -> f64;
fn atanhf(x: f32) -> f32;
fn cbrt(x: f64) -> f64;
fn cbrtf(x: f32) -> f32;
fn ceil(x: f64) -> f64;
fn ceilf(x: f32) -> f32;
fn copysign(x: f64, y: f64) -> f64;
fn copysignf(x: f32, y: f32) -> f32;
fn cos(x: f64) -> f64;
fn cosf(x: f32) -> f32;
fn cosh(x: f64) -> f64;
fn coshf(x: f32) -> f32;
fn erf(x: f64) -> f64;
fn erfc(x: f64) -> f64;
fn erfcf(x: f32) -> f32;
fn erff(x: f32) -> f32;
fn exp(x: f64) -> f64;
fn exp10(x: f64) -> f64;
fn exp10f(x: f32) -> f32;
fn exp2(x: f64) -> f64;
fn exp2f(x: f32) -> f32;
fn expf(x: f32) -> f32;
fn expm1(x: f64) -> f64;
fn expm1f(x: f32) -> f32;
fn fabs(n: f64) -> f64;
fn fabsf(n: f32) -> f32;
fn fdim(x: f64, y: f64) -> f64;
fn fdimf(x: f32, y: f32) -> f32;
fn floor(x: f64) -> f64;
fn floorf(x: f32) -> f32;
fn fma(x: f64, y: f64, z: f64) -> f64;
fn fmaf(x: f32, y: f32, z: f32) -> f32;
fn fmax(x: f64, y: f64) -> f64;
fn fmaxf(x: f32, y: f32) -> f32;
fn fmin(x: f64, y: f64) -> f64;
fn fminf(x: f32, y: f32) -> f32;
fn fmod(x: f64, y: f64) -> f64;
fn fmodf(x: f32, y: f32) -> f32;
// fn frexp(x: f64, n: &mut i32) -> f64;
// fn frexpf(x: f32, n: &mut i32) -> f32;
fn hypot(x: f64, y: f64) -> f64;
fn hypotf(x: f32, y: f32) -> f32;
fn ilogb(x: f64) -> i32;
fn ilogbf(x: f32) -> i32;
fn j0(x: f64) -> f64;
fn j0f(x: f32) -> f32;
fn j1(x: f64) -> f64;
fn j1f(x: f32) -> f32;
fn jn(n: i32, x: f64) -> f64;
fn jnf(n: i32, x: f32) -> f32;
fn ldexp(x: f64, n: i32) -> f64;
fn ldexpf(x: f32, n: i32) -> f32;
fn lgamma(x: f64) -> f64;
// fn lgamma_r(x: f64, n: &mut i32) -> f64;
fn lgammaf(x: f32) -> f32;
// fn lgammaf_r(x: f32, n: &mut i32) -> f32;
fn log(x: f64) -> f64;
fn log10(x: f64) -> f64;
fn log10f(x: f32) -> f32;
fn log1p(x: f64) -> f64;
fn log1pf(x: f32) -> f32;
fn log2(x: f64) -> f64;
fn log2f(x: f32) -> f32;
fn logf(x: f32) -> f32;
// fn modf(x: f64, y: &mut f64) -> f64;
// fn modff(x: f32, y: &mut f32) -> f32;
fn nextafter(x: f64, y: f64) -> f64;
fn nextafterf(x: f32, y: f32) -> f32;
fn pow(x: f64, y: f64) -> f64;
fn powf(x: f32, y: f32) -> f32;
fn remainder(x: f64, y: f64) -> f64;
fn remainderf(x: f32, y: f32) -> f32;
// fn remquo(x: f64, y: f64, n: &mut i32) -> f64;
// fn remquof(x: f32, y: f32, n: &mut i32) -> f32;
fn rint(x: f64) -> f64;
fn rintf(x: f32) -> f32;
fn round(x: f64) -> f64;
fn roundf(x: f32) -> f32;
fn scalbn(x: f64, n: i32) -> f64;
fn scalbnf(x: f32, n: i32) -> f32;
fn sin(x: f64) -> f64;
// fn sincos(x: f64, s: &mut f64, c: &mut f64);
// fn sincosf(x: f32, s: &mut f32, c: &mut f32);
fn sinf(x: f32) -> f32;
fn sinh(x: f64) -> f64;
fn sinhf(x: f32) -> f32;
fn sqrt(x: f64) -> f64;
fn sqrtf(x: f32) -> f32;
fn tan(x: f64) -> f64;
fn tanf(x: f32) -> f32;
fn tanh(x: f64) -> f64;
fn tanhf(x: f32) -> f32;
fn tgamma(x: f64) -> f64;
fn tgammaf(x: f32) -> f32;
fn trunc(n: f64) -> f64;
fn truncf(n: f32) -> f32;
fn y0(x: f64) -> f64;
fn y0f(n: f32) -> f32;
fn y1(n: f64) -> f64;
fn y1f(n: f32) -> f32;
fn yn(n: i32, x: f64) -> f64;
fn ynf(n: i32, x: f32) -> f32;
}

macro_rules! export_out_param {
($(fn $fn:ident($($arg:ident: $argty:ty),+; $out:ident: $outty:ty) -> $retty:ty;)+) => {
$(
#[no_mangle]
pub extern "C" fn $fn($($arg: $argty),+, $out: $outty) -> $retty {
let (ret, out) = ::libm::$fn($($arg),+);
*$out = out;
ret
}
)+
};
}

export_out_param! {
fn frexp(x: f64; n: &mut i32) -> f64;
fn frexpf(x: f32; n: &mut i32) -> f32;
fn lgamma_r(x: f64; n: &mut i32) -> f64;
fn lgammaf_r(x: f32; n: &mut i32) -> f32;
fn modf(x: f64; y: &mut f64) -> f64;
fn modff(x: f32; y: &mut f32) -> f32;
fn remquo(x: f64, y: f64; n: &mut i32) -> f64;
fn remquof(x: f32, y: f32; n: &mut i32) -> f32;
}

#[no_mangle]
pub extern "C" fn sincos(x: f64, s: &mut f64, c: &mut f64) {
(*s, *c) = libm::sincos(x);
}

#[no_mangle]
pub extern "C" fn sincosf(x: f32, s: &mut f32, c: &mut f32) {
(*s, *c) = libm::sincosf(x);
}
3 changes: 2 additions & 1 deletion xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ impl flags::Build {

eprintln!("Exporting hermit-builtins symbols");
let builtins = self.builtins_archive();
builtins.retain_symbols(["memcmp", "memcpy", "memmove", "memset", "strlen"].into_iter())?;
let builtin_symbols = sh.read_file("hermit-builtins/exports")?;
builtins.retain_symbols(builtin_symbols.lines())?;

dist_archive.append(&builtins)?;

Expand Down

0 comments on commit ff52547

Please sign in to comment.