[libc-commits] [libc] [libc][math] Implement double precision expm1 function correctly rounded for all rounding modes. (PR #67048)

via libc-commits libc-commits at lists.llvm.org
Mon Sep 25 10:16:17 PDT 2023


================
@@ -0,0 +1,493 @@
+//===-- Double-precision e^x - 1 function ---------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/math/expm1.h"
+#include "common_constants.h" // Lookup tables EXP_M1 and EXP_M2.
+#include "explogxf.h"         // ziv_test_denorm.
+#include "src/__support/CPP/bit.h"
+#include "src/__support/CPP/optional.h"
+#include "src/__support/FPUtil/FEnvImpl.h"
+#include "src/__support/FPUtil/FPBits.h"
+#include "src/__support/FPUtil/PolyEval.h"
+#include "src/__support/FPUtil/double_double.h"
+#include "src/__support/FPUtil/dyadic_float.h"
+#include "src/__support/FPUtil/except_value_utils.h"
+#include "src/__support/FPUtil/multiply_add.h"
+#include "src/__support/FPUtil/nearest_integer.h"
+#include "src/__support/FPUtil/rounding_mode.h"
+#include "src/__support/FPUtil/triple_double.h"
+#include "src/__support/common.h"
+#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
+
+#include <errno.h>
+
+// #define DEBUGDEBUG
----------------
michaelrj-google wrote:

SGTM

https://github.com/llvm/llvm-project/pull/67048


More information about the libc-commits mailing list