temp_value.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //===----------------------------------------------------------------------===//
  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 _LIBCPP___MEMORY_TEMP_VALUE_H
  9. #define _LIBCPP___MEMORY_TEMP_VALUE_H
  10. #include <__config>
  11. #include <__memory/addressof.h>
  12. #include <__memory/allocator_traits.h>
  13. #include <__type_traits/aligned_storage.h>
  14. #include <__utility/forward.h>
  15. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  16. # pragma GCC system_header
  17. #endif
  18. _LIBCPP_BEGIN_NAMESPACE_STD
  19. template <class _Tp, class _Alloc>
  20. struct __temp_value {
  21. typedef allocator_traits<_Alloc> _Traits;
  22. #ifdef _LIBCPP_CXX03_LANG
  23. typename aligned_storage<sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)>::type __v;
  24. #else
  25. union {
  26. _Tp __v;
  27. };
  28. #endif
  29. _Alloc& __a;
  30. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* __addr() {
  31. #ifdef _LIBCPP_CXX03_LANG
  32. return reinterpret_cast<_Tp*>(std::addressof(__v));
  33. #else
  34. return std::addressof(__v);
  35. #endif
  36. }
  37. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp& get() { return *__addr(); }
  38. template <class... _Args>
  39. _LIBCPP_HIDE_FROM_ABI _LIBCPP_NO_CFI _LIBCPP_CONSTEXPR_SINCE_CXX20 __temp_value(_Alloc& __alloc, _Args&&... __args)
  40. : __a(__alloc) {
  41. _Traits::construct(__a, __addr(), std::forward<_Args>(__args)...);
  42. }
  43. _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 ~__temp_value() { _Traits::destroy(__a, __addr()); }
  44. };
  45. _LIBCPP_END_NAMESPACE_STD
  46. #endif // _LIBCPP___MEMORY_TEMP_VALUE_H