summaryrefslogtreecommitdiff
path: root/src/math/s390x/ceill.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2017-06-23 15:28:10 -0400
committerRich Felker <dalias@aerifal.cx>2017-06-23 15:28:10 -0400
commitce385fcfb2db74b109067083db4a26ca810eaa14 (patch)
treef759439c9cf1c25ea52f1488d6441dcb30b1b28d /src/math/s390x/ceill.c
parente6def544358afd5648a428d2e02c147a1f901048 (diff)
downloadmusl-ce385fcfb2db74b109067083db4a26ca810eaa14.tar.gz
s390x: add single-instruction math functions
these were introduced in z196 and not available in the baseline (z900) ISA level. use __HTM__ as an alternate indicator for ISA level, since gcc did not define __ARCH__ until 7.x. patch by David Edelsohn.
Diffstat (limited to 'src/math/s390x/ceill.c')
-rw-r--r--src/math/s390x/ceill.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/s390x/ceill.c b/src/math/s390x/ceill.c
new file mode 100644
index 00000000..b838dc13
--- /dev/null
+++ b/src/math/s390x/ceill.c
@@ -0,0 +1,15 @@
+#include <math.h>
+
+#if defined(__HTM__) || __ARCH__ >= 9
+
+long double ceill(long double x)
+{
+ __asm__ ("fixbra %0, 6, %1, 4" : "=f"(x) : "f"(x));
+ return x;
+}
+
+#else
+
+#include "../ceill.c"
+
+#endif