/* Copyright (c) 2015 - present Advanced Micro Devices, Inc. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include "concepts.hpp" #include // For std::conditional, std::decay, std::enable_if, // std::false_type, std result_of and std::true_type. #include // For std::declval. namespace std { // TODO: these should be removed as soon as possible. #if (__cplusplus < 201406L) #if (__cplusplus < 201402L) template using enable_if_t = typename enable_if::type; template using conditional_t = typename conditional::type; template using decay_t = typename decay::type; template using result_of_t = typename result_of::type; template using remove_reference_t = typename remove_reference::type; #endif #endif } // namespace std namespace hip_impl { template using void_t_ = void; #if (__cplusplus < 201402L) template struct is_callable_impl : is_callable_impl {}; // Pointer to member function, call through non-pointer. template struct is_callable_impl< F(C, Ts...), 0u, void_t_().*std::declval())(std::declval()...))> > : std::true_type {}; // Pointer to member function, call through pointer. template struct is_callable_impl< F(C, Ts...), 1u, void_t_()).*std::declval())(std::declval()...))> > : std::true_type {}; // Pointer to member data, call through non-pointer, no args. template struct is_callable_impl().*std::declval())> > : std::true_type {}; // Pointer to member data, call through pointer, no args. template struct is_callable_impl().*std::declval())> > : std::true_type {}; // General call, n args. template struct is_callable_impl()(std::declval()...))> > : std::true_type {}; // Not callable. template struct is_callable_impl : std::false_type {}; #elif (__cplusplus < 201703L) template struct is_callable_impl : std::false_type {}; template struct is_callable_impl > > : std::true_type {}; #else // C++17 template struct is_callable_impl : std::false_type {}; template struct is_callable_impl > > : std::true_type {}; #endif template struct is_callable : is_callable_impl {}; #define count_macro_args_impl_hip_(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, \ _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, \ _26, _27, _28, _29, _30, _31, _n, ...) \ _n #define count_macro_args_hip_(...) \ count_macro_args_impl_hip_(, ##__VA_ARGS__, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, \ 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, \ 0) #define overloaded_macro_expand_hip_(macro, arg_cnt) macro##arg_cnt #define overload_macro_impl_hip_(macro, arg_cnt) overloaded_macro_expand_hip_(macro, arg_cnt) #define overload_macro_hip_(macro, ...) \ overload_macro_impl_hip_(macro, count_macro_args_hip_(__VA_ARGS__))(__VA_ARGS__) } // namespace hip_impl