llvm/compiler-rt/lib/builtins/int_math.h

//===-- int_math.h - internal math inlines --------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// This file is not part of the interface of this library.
//
// This file defines substitutes for the libm functions used in some of the
// compiler-rt implementations, defined in such a way that there is not a direct
// dependency on libm or math.h. Instead, we use the compiler builtin versions
// where available. This reduces our dependencies on the system SDK by foisting
// the responsibility onto the compiler.
//
//===----------------------------------------------------------------------===//

#ifndef INT_MATH_H
#define INT_MATH_H

#ifndef __has_builtin
#define __has_builtin
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#include <math.h>
#include <stdlib.h>
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#define CRT_INFINITY
#else
#define CRT_INFINITY
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#define crt_isfinite
#define crt_isinf
#define crt_isnan
#else
// Define crt_isfinite in terms of the builtin if available, otherwise provide
// an alternate version in terms of our other functions. This supports some
// versions of GCC which didn't have __builtin_isfinite.
#if __has_builtin(__builtin_isfinite)
#define crt_isfinite(x)
#elif defined(__GNUC__)
#define crt_isfinite
#else
#error "Do not know how to check for infinity"
#endif // __has_builtin(__builtin_isfinite)
#define crt_isinf(x)
#define crt_isnan(x)
#endif // _MSC_VER

#if defined(_MSC_VER) && !defined(__clang__)
#define crt_copysign
#define crt_copysignf
#define crt_copysignl
#else
#define crt_copysign(x, y)
#define crt_copysignf(x, y)
#define crt_copysignl(x, y)
// We define __has_builtin to always return 0 for GCC versions below 10,
// but __builtin_copysignf128 is available since version 7.
#if __has_builtin(__builtin_copysignf128) ||                                   \
    (defined(__GNUC__) && __GNUC__ >= 7)
#define crt_copysignf128(x, y)
#elif __has_builtin(__builtin_copysignq)
#define crt_copysignf128
#endif
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#define crt_fabs
#define crt_fabsf
#define crt_fabsl
#else
#define crt_fabs(x)
#define crt_fabsf(x)
#define crt_fabsl(x)
// We define __has_builtin to always return 0 for GCC versions below 10,
// but __builtin_fabsf128 is available since version 7.
#if __has_builtin(__builtin_fabsf128) || (defined(__GNUC__) && __GNUC__ >= 7)
#define crt_fabsf128(x)
#elif __has_builtin(__builtin_fabsq)
#define crt_fabsf128
#endif
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#define crt_fmaxl
#else
#define crt_fmaxl(x, y)
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#define crt_logbl
#else
#define crt_logbl(x)
#endif

#if defined(_MSC_VER) && !defined(__clang__)
#define crt_scalbnl
#else
#define crt_scalbnl(x, y)
#endif

#endif // INT_MATH_H