File size: 5,928 Bytes
501e3f2 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | /*
//@HEADER
// ************************************************************************
//
// Kokkos v. 2.0
// Copyright (2019) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Christian R. Trott (crtrott@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#ifndef _LIBCUDACXX__LIBCUDACXX_NO_UNIQUE_ADDRESS_HPP
#define _LIBCUDACXX__LIBCUDACXX_NO_UNIQUE_ADDRESS_HPP
#ifndef __cuda_std__
#include <__config>
#endif // __cuda_std__
#include "../__mdspan/macros.h"
#include "../__type_traits/enable_if.h"
#include "../__type_traits/is_empty.h"
#include "../__type_traits/is_trivially_destructible.h"
#include "../__utility/move.h"
#if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC)
# pragma GCC system_header
#elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG)
# pragma clang system_header
#elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC)
# pragma system_header
#endif // no system header
_LIBCUDACXX_BEGIN_NAMESPACE_STD
#if _LIBCUDACXX_STD_VER > 11
namespace __detail {
//==============================================================================
template <class _Tp, size_t _Disambiguator = 0, class _Enable = void>
struct __no_unique_address_emulation {
using __stored_type = _Tp;
_Tp __v;
__MDSPAN_FORCE_INLINE_FUNCTION constexpr _Tp const &__ref() const noexcept {
return __v;
}
__MDSPAN_FORCE_INLINE_FUNCTION constexpr _Tp &__ref() noexcept {
return __v;
}
};
// Empty case
// This doesn't work if _Tp is final, of course, but we're not using anything
// like that currently. That kind of thing could be added pretty easily though
template <class _Tp, size_t _Disambiguator>
struct __no_unique_address_emulation<
_Tp, _Disambiguator,
_CUDA_VSTD::enable_if_t<_LIBCUDACXX_TRAIT(_CUDA_VSTD::is_empty, _Tp) &&
// If the type isn't trivially destructible, its destructor
// won't be called at the right time, so don't use this
// specialization
_LIBCUDACXX_TRAIT(_CUDA_VSTD::is_trivially_destructible, _Tp)>> :
#ifdef __MDSPAN_COMPILER_MSVC
// MSVC doesn't allow you to access public static member functions of a type
// when you *happen* to privately inherit from that type.
protected
#else
// But we still want this to be private if possible so that we don't accidentally
// access members of _Tp directly rather than calling __ref() first, which wouldn't
// work if _Tp happens to be stateful and thus we're using the unspecialized definition
// of __no_unique_address_emulation above.
private
#endif
_Tp {
using __stored_type = _Tp;
__MDSPAN_FORCE_INLINE_FUNCTION constexpr _Tp const &__ref() const noexcept {
return *static_cast<_Tp const *>(this);
}
__MDSPAN_FORCE_INLINE_FUNCTION constexpr _Tp &__ref() noexcept {
return *static_cast<_Tp *>(this);
}
__MDSPAN_INLINE_FUNCTION_DEFAULTED
constexpr __no_unique_address_emulation() noexcept = default;
__MDSPAN_INLINE_FUNCTION_DEFAULTED
constexpr __no_unique_address_emulation(
__no_unique_address_emulation const &) noexcept = default;
__MDSPAN_INLINE_FUNCTION_DEFAULTED
constexpr __no_unique_address_emulation(
__no_unique_address_emulation &&) noexcept = default;
__MDSPAN_INLINE_FUNCTION_DEFAULTED
__MDSPAN_CONSTEXPR_14_DEFAULTED __no_unique_address_emulation &
operator=(__no_unique_address_emulation const &) noexcept = default;
__MDSPAN_INLINE_FUNCTION_DEFAULTED
__MDSPAN_CONSTEXPR_14_DEFAULTED __no_unique_address_emulation &
operator=(__no_unique_address_emulation &&) noexcept = default;
__MDSPAN_INLINE_FUNCTION_DEFAULTED
~__no_unique_address_emulation() noexcept = default;
// Explicitly make this not a reference so that the copy or move
// constructor still gets called.
__MDSPAN_INLINE_FUNCTION
explicit constexpr __no_unique_address_emulation(_Tp const& __v) noexcept : _Tp(__v) {}
__MDSPAN_INLINE_FUNCTION
explicit constexpr __no_unique_address_emulation(_Tp&& __v) noexcept : _Tp(_CUDA_VSTD::move(__v)) {}
};
//==============================================================================
} // end namespace __detail
#endif // _LIBCUDACXX_STD_VER > 11
_LIBCUDACXX_END_NAMESPACE_STD
#endif // _LIBCUDACXX__LIBCUDACXX_NO_UNIQUE_ADDRESS_HPP
|