| //===----- hlsl_detail.h - HLSL definitions for intrinsics ----------------===// |
| // |
| // 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 |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #ifndef _HLSL_HLSL_DETAILS_H_ |
| #define _HLSL_HLSL_DETAILS_H_ |
| |
| namespace hlsl { |
| |
| namespace __detail { |
| |
| template <typename T, typename U> struct is_same { |
| static const bool value = false; |
| }; |
| |
| template <typename T> struct is_same<T, T> { |
| static const bool value = true; |
| }; |
| |
| template <bool B, typename T> struct enable_if {}; |
| |
| template <typename T> struct enable_if<true, T> { |
| using Type = T; |
| }; |
| |
| template <bool B, class T = void> |
| using enable_if_t = typename enable_if<B, T>::Type; |
| |
| template <typename U, typename T, int N> |
| constexpr enable_if_t<sizeof(U) == sizeof(T), vector<U, N>> |
| bit_cast(vector<T, N> V) { |
| return __builtin_bit_cast(vector<U, N>, V); |
| } |
| |
| template <typename U, typename T> |
| constexpr enable_if_t<sizeof(U) == sizeof(T), U> bit_cast(T F) { |
| return __builtin_bit_cast(U, F); |
| } |
| |
| template <typename T> struct is_arithmetic { |
| static const bool Value = __is_arithmetic(T); |
| }; |
| |
| template <typename T, int N> |
| using HLSL_FIXED_VECTOR = |
| vector<__detail::enable_if_t<(N > 1 && N <= 4), T>, N>; |
| |
| } // namespace __detail |
| } // namespace hlsl |
| #endif //_HLSL_HLSL_DETAILS_H_ |