|
| 1 | +//===-- is_fixed_point type_traits ------------------------------*- C++ -*-===// |
| 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 | +#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_IS_FIXED_POINT_H |
| 9 | +#define LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_IS_FIXED_POINT_H |
| 10 | + |
| 11 | +#include "src/__support/CPP/type_traits/is_same.h" |
| 12 | +#include "src/__support/CPP/type_traits/remove_cv.h" |
| 13 | +#include "src/__support/macros/attributes.h" |
| 14 | + |
| 15 | +#include "include/llvm-libc-macros/stdfix-macros.h" |
| 16 | + |
| 17 | +namespace LIBC_NAMESPACE::cpp { |
| 18 | + |
| 19 | +// is_fixed_point |
| 20 | +#ifdef LIBC_COMPILER_HAS_FIXED_POINT |
| 21 | +template <typename T> struct is_fixed_point { |
| 22 | +private: |
| 23 | + template <typename Head, typename... Args> |
| 24 | + LIBC_INLINE_VAR static constexpr bool __is_unqualified_any_of() { |
| 25 | + return (... || is_same_v<remove_cv_t<Head>, Args>); |
| 26 | + } |
| 27 | + |
| 28 | +public: |
| 29 | + LIBC_INLINE_VAR static constexpr bool value = __is_unqualified_any_of< |
| 30 | + T, short fract, fract, long fract, unsigned short fract, unsigned fract, |
| 31 | + unsigned long fract, short accum, accum, long accum, unsigned short accum, |
| 32 | + unsigned accum, unsigned long accum>(); |
| 33 | +}; |
| 34 | +#else |
| 35 | +template <typename T> struct is_fixed_point : false_type {}; |
| 36 | +#endif // LIBC_COMPILER_HAS_FIXED_POINT |
| 37 | + |
| 38 | +template <typename T> |
| 39 | +LIBC_INLINE_VAR constexpr bool is_fixed_point_v = is_fixed_point<T>::value; |
| 40 | + |
| 41 | +} // namespace LIBC_NAMESPACE::cpp |
| 42 | + |
| 43 | +#endif // LLVM_LIBC_SRC___SUPPORT_CPP_TYPE_TRAITS_IS_INTEGRAL_H |
0 commit comments