1 //===-- Unittests for logf-----------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "src/__support/FPUtil/FPBits.h" 10 #include "src/math/logf.h" 11 #include "utils/MPFRWrapper/MPFRUtils.h" 12 #include "utils/UnitTest/FPMatcher.h" 13 #include "utils/UnitTest/Test.h" 14 #include <math.h> 15 16 #include <errno.h> 17 #include <stdint.h> 18 19 namespace mpfr = __llvm_libc::testing::mpfr; 20 21 DECLARE_SPECIAL_CONSTANTS(float) 22 23 TEST(LlvmLibcLogfTest, SpecialNumbers) { 24 EXPECT_FP_EQ(aNaN, __llvm_libc::logf(aNaN)); 25 EXPECT_FP_EQ(inf, __llvm_libc::logf(inf)); 26 EXPECT_TRUE(FPBits((__llvm_libc::logf(neg_inf))).is_nan()); 27 EXPECT_FP_EQ(neg_inf, __llvm_libc::logf(0.0f)); 28 EXPECT_FP_EQ(neg_inf, __llvm_libc::logf(-0.0f)); 29 EXPECT_TRUE(FPBits(__llvm_libc::logf(-1.0f)).is_nan()); 30 EXPECT_FP_EQ(zero, __llvm_libc::logf(1.0f)); 31 } 32 33 TEST(LlvmLibcLogfTest, TrickyInputs) { 34 constexpr int N = 28; 35 constexpr uint32_t INPUTS[N] = { 36 0x3509dcf6U, /*0x1.13b9ecp-21f*/ 37 0x3bf86ef0U, /*0x1.f0ddep-8f*/ 38 0x3ca1c99fU, /*0x1.43933ep-6f*/ 39 0x3d13e105U, /*0x1.27c20ap-5f*/ 40 0x3f7ff1f2U, /*0x1.ffe3e4p-1f*/ 41 0x3f7fffffU, /*0x1.fffffep-1f*/ 42 0x3f800001U, /*0x1.000002p+0f*/ 43 0x3f800006U, /*0x1.00000cp+0f*/ 44 0x3f800014U, /*0x1.000028p+0f*/ 45 0x3f80001cU, /*0x1.000038p+0f*/ 46 0x3f80c777U, /*0x1.018eeep+0f*/ 47 0x3f80ce72U, /*0x1.019ce4p+0f*/ 48 0x3f80d19fU, /*0x1.01a33ep+0f*/ 49 0x3f80f7bfU, /*0x1.01ef7ep+0f*/ 50 0x3f80fcfeU, /*0x1.01f9fcp+0f*/ 51 0x3f81feb4U, /*0x1.03fd68p+0f*/ 52 0x3f83d731U, /*0x1.07ae62p+0f*/ 53 0x3f90cb1dU, /*0x1.21963ap+0f*/ 54 0x3fc55379U, /*0x1.8aa6f2p+0f*/ 55 0x3fd364d7U, /*0x1.a6c9aep+0f*/ 56 0x41178febU, /*0x1.2f1fd6p+3f*/ 57 0x4c5d65a5U, /*0x1.bacb4ap+25f*/ 58 0x4e85f412U, /*0x1.0be824p+30f*/ 59 0x500ffb03U, /*0x1.1ff606p+33f*/ 60 0x5cd69e88U, /*0x1.ad3d1p+58f*/ 61 0x65d890d3U, /*0x1.b121a6p+76f*/ 62 0x6f31a8ecU, /*0x1.6351d8p+95f*/ 63 0x7a17f30aU, /*0x1.2fe614p+117f*/ 64 }; 65 for (int i = 0; i < N; ++i) { 66 float x = float(FPBits(INPUTS[i])); 67 EXPECT_MPFR_MATCH(mpfr::Operation::Log, x, __llvm_libc::logf(x), 0.5); 68 } 69 } 70 71 TEST(LlvmLibcLogfTest, InFloatRange) { 72 constexpr uint32_t COUNT = 1000000; 73 constexpr uint32_t STEP = UINT32_MAX / COUNT; 74 for (uint32_t i = 0, v = 0; i <= COUNT; ++i, v += STEP) { 75 float x = float(FPBits(v)); 76 if (isnan(x) || isinf(x)) 77 continue; 78 errno = 0; 79 float result = __llvm_libc::logf(x); 80 // If the computation resulted in an error or did not produce valid result 81 // in the single-precision floating point range, then ignore comparing with 82 // MPFR result as MPFR can still produce valid results because of its 83 // wider precision. 84 if (isnan(result) || isinf(result) || errno != 0) 85 continue; 86 ASSERT_MPFR_MATCH(mpfr::Operation::Log, x, __llvm_libc::logf(x), 0.5); 87 } 88 } 89