Преглед на файлове

math: fix expm1l on x86_64 (avoid underflow for large negative x)

copy the fix from i386: return -1 instead of exp2l(x)-1 when x <= -65
Szabolcs Nagy преди 11 години
родител
ревизия
0234394621
променени са 3 файла, в които са добавени 13 реда и са изтрити 3 реда
  1. 1 1
      src/math/x86_64/ceill.s
  2. 11 1
      src/math/x86_64/exp2l.s
  3. 1 1
      src/math/x86_64/truncl.s

+ 1 - 1
src/math/x86_64/ceill.s

@@ -1 +1 @@
-# see floor.s
+# see floorl.s

+ 11 - 1
src/math/x86_64/exp2l.s

@@ -4,8 +4,18 @@ expm1l:
 	fldt 8(%rsp)
 	fldl2e
 	fmulp
+	movl $0xc2820000,-4(%rsp)
+	flds -4(%rsp)
+	fucomp %st(1)
+	fnstsw %ax
+	sahf
 	fld1
-	fld %st(1)
+	jb 1f
+		# x*log2e <= -65, return -1 without underflow
+	fstp %st(1)
+	fchs
+	ret
+1:	fld %st(1)
 	fabs
 	fucom %st(1)
 	fnstsw %ax

+ 1 - 1
src/math/x86_64/truncl.s

@@ -1 +1 @@
-# see floor.s
+# see floorl.s