summaryrefslogtreecommitdiffstats
path: root/js/src/jslibmath.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /js/src/jslibmath.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/jslibmath.h')
-rw-r--r--js/src/jslibmath.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/js/src/jslibmath.h b/js/src/jslibmath.h
new file mode 100644
index 000000000..52d21797d
--- /dev/null
+++ b/js/src/jslibmath.h
@@ -0,0 +1,76 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
+ * vim: set ts=8 sts=4 et sw=4 tw=99:
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef jslibmath_h
+#define jslibmath_h
+
+#include "mozilla/FloatingPoint.h"
+
+#include <math.h>
+
+#include "jsnum.h"
+
+/*
+ * Use system provided math routines.
+ */
+
+/* The right copysign function is not always named the same thing. */
+#ifdef __GNUC__
+#define js_copysign __builtin_copysign
+#elif defined _WIN32
+#define js_copysign _copysign
+#else
+#define js_copysign copysign
+#endif
+
+/* Consistency wrapper for platform deviations in fmod() */
+static inline double
+js_fmod(double d, double d2)
+{
+#ifdef XP_WIN
+ /*
+ * Workaround MS fmod bug where 42 % (1/0) => NaN, not 42.
+ * Workaround MS fmod bug where -0 % -N => 0, not -0.
+ */
+ if ((mozilla::IsFinite(d) && mozilla::IsInfinite(d2)) ||
+ (d == 0 && mozilla::IsFinite(d2))) {
+ return d;
+ }
+#endif
+ return fmod(d, d2);
+}
+
+namespace js {
+
+inline double
+NumberDiv(double a, double b)
+{
+ if (b == 0) {
+ if (a == 0 || mozilla::IsNaN(a)
+#ifdef XP_WIN
+ || mozilla::IsNaN(b) /* XXX MSVC miscompiles such that (NaN == 0) */
+#endif
+ )
+ return JS::GenericNaN();
+
+ if (mozilla::IsNegative(a) != mozilla::IsNegative(b))
+ return mozilla::NegativeInfinity<double>();
+ return mozilla::PositiveInfinity<double>();
+ }
+
+ return a / b;
+}
+
+inline double
+NumberMod(double a, double b) {
+ if (b == 0)
+ return JS::GenericNaN();
+ return js_fmod(a, b);
+}
+
+} // namespace js
+
+#endif /* jslibmath_h */