aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface/src/decode
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-11-05 11:18:05 +0100
committerLukas Larsson <[email protected]>2014-11-24 16:35:22 +0100
commite3f4cd83939f28e17addac889208985196d22f22 (patch)
treee431db43b653ca2fc04e6f2f561c21cc019f49e3 /lib/erl_interface/src/decode
parent509163307c31bf4f98a638b47ee03a5b99eb2c73 (diff)
downloadotp-e3f4cd83939f28e17addac889208985196d22f22.tar.gz
otp-e3f4cd83939f28e17addac889208985196d22f22.tar.bz2
otp-e3f4cd83939f28e17addac889208985196d22f22.zip
erts: Use finite instead of isfinite with gcc
Turns out that isfinite emits a function call and not an instruction in gcc, this makes estone float arith about 50-75% slower. finite emits the instruction so we use that instead.
Diffstat (limited to 'lib/erl_interface/src/decode')
-rw-r--r--lib/erl_interface/src/decode/decode_big.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/erl_interface/src/decode/decode_big.c b/lib/erl_interface/src/decode/decode_big.c
index b87d97d634..477880b331 100644
--- a/lib/erl_interface/src/decode/decode_big.c
+++ b/lib/erl_interface/src/decode/decode_big.c
@@ -153,6 +153,17 @@ int ei_big_comp(erlang_big *x, erlang_big *y)
#ifdef USE_ISINF_ISNAN /* simulate finite() */
# define isfinite(f) (!isinf(f) && !isnan(f))
# define HAVE_ISFINITE
+#elif defined(__GNUC__) && defined(HAVE_FINITE)
+/* We use finite in gcc as it emits assembler instead of
+ the function call that isfinite emits. The assembler is
+ significantly faster. */
+# ifdef isfinite
+# undef isfinite
+# endif
+# define isfinite finite
+# ifndef HAVE_ISFINITE
+# define HAVE_ISFINITE
+# endif
#elif defined(isfinite) && !defined(HAVE_ISFINITE)
# define HAVE_ISFINITE
#elif !defined(HAVE_ISFINITE) && defined(HAVE_FINITE)