Skip to content

Commit cf81683

Browse files
authored
Optimize fmin, fmax, etc. (WebAssembly#120)
Use wasm's builtin min and max operators to implement libc `fmin`, `fmax, `fminf`, and `fmaxf`, by handling the NaN cases explicitly. Credit to emscripten-core/emscripten#9689 for spotting this opportunity!
1 parent deb8eae commit cf81683

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@ LIBC_TOP_HALF_MUSL_SOURCES = \
153153
%/nearbyintf.c %/nearbyint.c \
154154
%/sqrtf.c %/sqrt.c \
155155
%/fabsf.c %/fabs.c \
156-
%/copysignf.c %/copysign.c, \
156+
%/copysignf.c %/copysign.c \
157+
%/fminf.c %/fmaxf.c \
158+
%/fmin.c %/fmax.c, \
157159
$(wildcard $(LIBC_TOP_HALF_MUSL_SRC_DIR)/math/*.c)) \
158160
$(filter-out %/crealf.c %/creal.c \
159161
%/cimagf.c %/cimag.c, \

basics/sources/fmin-fmax.c

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Wasm's `min` and `max` operators implement the IEEE 754-2019
2+
// `minimum` and `maximum` operations, meaning that given a choice
3+
// between NaN and a number, they return NaN. This differs from
4+
// the C standard library's `fmin` and `fmax` functions, which
5+
// return the number. However, we can still use wasm's builtins
6+
// by handling the NaN cases explicitly, and it still turns out
7+
// to be faster than doing the whole operation in
8+
// target-independent C. And, it's smaller.
9+
10+
#include <math.h>
11+
12+
float fminf(float x, float y) {
13+
if (isnan(x)) return y;
14+
if (isnan(y)) return x;
15+
return __builtin_wasm_min_f32(x, y);
16+
}
17+
18+
float fmaxf(float x, float y) {
19+
if (isnan(x)) return y;
20+
if (isnan(y)) return x;
21+
return __builtin_wasm_max_f32(x, y);
22+
}
23+
24+
double fmin(double x, double y) {
25+
if (isnan(x)) return y;
26+
if (isnan(y)) return x;
27+
return __builtin_wasm_min_f64(x, y);
28+
}
29+
30+
double fmax(double x, double y) {
31+
if (isnan(x)) return y;
32+
if (isnan(y)) return x;
33+
return __builtin_wasm_max_f64(x, y);
34+
}

0 commit comments

Comments
 (0)