1//===-- exp10_fuzz.cpp ----------------------------------------------------===//
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/// Fuzzing test for llvm-libc exp10 implementation.
10///
11//===----------------------------------------------------------------------===//
12
13#include "src/math/exp10.h"
14#include "utils/MPFRWrapper/mpfr_inc.h"
15#include <math.h>
16
17extern "C" int LLVMFuzzerTestOneInput(double x) {
18 // remove NaN and inf
19 if (isnan(x: x) || isinf(x: x))
20 return 0;
21 // signed zeros already tested in unit tests
22 if (signbit(x: x) && x == 0.0)
23 return 0;
24 mpfr_t input;
25 mpfr_init2(input, 53);
26 mpfr_set_d(input, x, MPFR_RNDN);
27 int output = mpfr_exp10(input, input, MPFR_RNDN);
28 mpfr_subnormalize(input, output, MPFR_RNDN);
29 double to_compare = mpfr_get_d(input, MPFR_RNDN);
30
31 double result = LIBC_NAMESPACE::exp10(x);
32
33 if (result != to_compare)
34 __builtin_trap();
35
36 mpfr_clear(input);
37 return 0;
38}
39

source code of libc/fuzzing/math/exp10_fuzz.cpp