Bundle the musl math library
The goal is to use the bundling mechanism to share the musl math library code between msvcrt and ntdll, and also with a future FPU emulation library. It should also make it easier to sync with upstream changes.
Merge request reports
Activity
requested review from @piotr
The patches are looking good for me but I wonder what's the plan for functions that are implemented differently in msvcrt and musl? I guess the plan is to leave separate implementation if it's completely different. What about functions that only differ in how errno is set or math_error is called?
There's much more math functions in C-runtime.
Sure, but if the point of this patch series is to share code with ntdll, then "delegate what we can to ntdll and leave everything else in msvcrt" seems like it'd avoid any duplication.
In some functions there are differences regarding error handling.
But then we can't share the function implementation anyway, can we?
Also, all of the functions this patch series touches don't seem to have any error handling. Maybe that's just oversight, though?
We also had some bugs when functions were forwarded to ntdll.
Are those bugs specific to forwards? E.g. could -import be used instead? Or explicitly importing in the code, which might allow more flexibility in error handling as well.
Sure, but if the point of this patch series is to share code with ntdll, then "delegate what we can to ntdll and leave everything else in msvcrt" seems like it'd avoid any duplication.
No, there are some helpers/coefficients that will need to be duplicated (I didn't check if it's true, maybe all of them will end only in one place). Anyway, this will basically split musl math library into 2 places which may cause some code duplication.
But then we can't share the function implementation anyway, can we?
We can export errno / some other helper from musl. We don't want to do it from ntdll. Especially taking into account that errno is not shared between different msvcrt versions. It may also need to be stored in thread data.
Also, all of the functions this patch series touches don't seem to have any error handling. Maybe that's just oversight, though?
No, in case of this functions it's probably correct (e.g. sin() is exported from ntdll and uses math_error/errno).
Are those bugs specific to forwards? E.g. could -import be used instead? Or explicitly importing in the code, which might allow more flexibility in error handling as well.
The bugs were specific to forwards. We didn't have -import at that point but I guess it might work.
I like having musl in separate, easily updatable place. I hope we will not loose this ability by adding to many changes.
What about functions that only differ in how errno is set or math_error is called?
The plan is to make the corresponding change in the bundled musl code. We don't need it to be identical to upstream, only close enough to make merges possible.
Ideally the changes would be upstreamed at some point, at least the ones setting errno.
added 34 commits
-
a73cea02...35f9091b - 23 commits from branch
wine:master
- 438553e9 - 1 earlier commit
- b7228259 - msvcrt: Use the fabs()/fabsf() implementation from the bundled musl library.
- be147a80 - msvcrt: Use the frexp()/frexpf() implementation from the bundled musl library.
- e5808e20 - msvcrt: Use the modf()/modff() implementation from the bundled musl library.
- 406c583c - msvcrt: Use the cbrt()/cbrtf() implementation from the bundled musl library.
- 15b50e98 - msvcrt: Use the hypot()/hypotf() implementation from the bundled musl library.
- 09006678 - msvcrt: Use the trunc()/truncf() implementation from the bundled musl library.
- 4a9258ee - msvcrt: Use the fmax()/fmaxf() implementation from the bundled musl library.
- 5564512b - msvcrt: Use the fmin()/fminf() implementation from the bundled musl library.
- 233eea6c - msvcrt: Use the fdim()/fdimf() implementation from the bundled musl library.
- b5ba4baa - msvcrt: Use the copysign()/copysignf() implementation from the bundled musl library.
Toggle commit list-
a73cea02...35f9091b - 23 commits from branch