public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-2696] libstdc++: Avoid using std::unique_ptr in <locale>
@ 2021-08-03 14:11 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2021-08-03 14:11 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:a1a2654cdc90e9aa561a0e853b4b1372892afb70

commit r12-2696-ga1a2654cdc90e9aa561a0e853b4b1372892afb70
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Aug 2 17:12:52 2021 +0100

    libstdc++: Avoid using std::unique_ptr in <locale>
    
    std::wstring_convert and std::wbuffer_convert types are not copyable or
    movable, and store a plain pointer without a deleter. That means a much
    simpler type that just uses delete in its destructor can be used instead
    of std::unique_ptr.
    
    That avoids including and parsing all of <bits/unique_ptr.h> in every
    header that includes <locale>. It also avoids instantiating
    unique_ptr<C> and std::tuple<C*, default_delete<C>> when the conversion
    utilities are used.
    
    Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/locale_conv.h (__detail::_Scoped_ptr): Define new
            RAII class template.
            (wstring_convert, wbuffer_convert): Use __detail::_Scoped_ptr
            instead of unique_ptr.

Diff:
---
 libstdc++-v3/include/bits/locale_conv.h | 70 +++++++++++++++++++++------------
 1 file changed, 45 insertions(+), 25 deletions(-)

diff --git a/libstdc++-v3/include/bits/locale_conv.h b/libstdc++-v3/include/bits/locale_conv.h
index 0e409da9876..6af8a5bdc8f 100644
--- a/libstdc++-v3/include/bits/locale_conv.h
+++ b/libstdc++-v3/include/bits/locale_conv.h
@@ -38,7 +38,6 @@
 #include <bits/stringfwd.h>
 #include <bits/allocator.h>
 #include <bits/codecvt.h>
-#include <bits/unique_ptr.h>
 
 namespace std _GLIBCXX_VISIBILITY(default)
 {
@@ -221,6 +220,39 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
 #endif  // _GLIBCXX_USE_CHAR8_T
 
+  namespace __detail
+  {
+    template<typename _Tp>
+      struct _Scoped_ptr
+      {
+	__attribute__((__nonnull__(2)))
+	explicit
+	_Scoped_ptr(_Tp* __ptr) noexcept
+	: _M_ptr(__ptr)
+	{ }
+
+	_Scoped_ptr(_Tp* __ptr, const char* __msg)
+	: _M_ptr(__ptr)
+	{
+	  if (!__ptr)
+	    __throw_logic_error(__msg);
+	}
+
+	~_Scoped_ptr() { delete _M_ptr; }
+
+	_Scoped_ptr(const _Scoped_ptr&) = delete;
+	_Scoped_ptr& operator=(const _Scoped_ptr&) = delete;
+
+	__attribute__((__returns_nonnull__))
+	_Tp* operator->() const noexcept { return _M_ptr; }
+
+	_Tp& operator*() const noexcept { return *_M_ptr; }
+
+      private:
+	_Tp* _M_ptr;
+      };
+  }
+
 #ifdef _GLIBCXX_USE_WCHAR_T
 
 _GLIBCXX_BEGIN_NAMESPACE_CXX11
@@ -247,11 +279,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        * Takes ownership of @p __pcvt and will delete it in the destructor.
        */
       explicit
-      wstring_convert(_Codecvt* __pcvt) : _M_cvt(__pcvt)
-      {
-	if (!_M_cvt)
-	  __throw_logic_error("wstring_convert");
-      }
+      wstring_convert(_Codecvt* __pcvt) : _M_cvt(__pcvt, "wstring_convert")
+      { }
 
       /** Construct with an initial converstion state.
        *
@@ -262,11 +291,9 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
        * The object's conversion state will persist between conversions.
        */
       wstring_convert(_Codecvt* __pcvt, state_type __state)
-      : _M_cvt(__pcvt), _M_state(__state), _M_with_cvtstate(true)
-      {
-	if (!_M_cvt)
-	  __throw_logic_error("wstring_convert");
-      }
+      : _M_cvt(__pcvt, "wstring_convert"),
+	_M_state(__state), _M_with_cvtstate(true)
+      { }
 
       /** Construct with error strings.
        *
@@ -279,10 +306,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
       : _M_cvt(new _Codecvt),
 	_M_byte_err_string(__byte_err), _M_wide_err_string(__wide_err),
 	_M_with_strings(true)
-      {
-	if (!_M_cvt)
-	  __throw_logic_error("wstring_convert");
-      }
+      { }
 
       ~wstring_convert() = default;
 
@@ -370,7 +394,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
       state_type state() const { return _M_state; }
 
     private:
-      unique_ptr<_Codecvt>	_M_cvt;
+      __detail::_Scoped_ptr<_Codecvt>	_M_cvt;
       byte_string		_M_byte_err_string;
       wide_string		_M_wide_err_string;
       state_type		_M_state = state_type();
@@ -405,13 +429,9 @@ _GLIBCXX_END_NAMESPACE_CXX11
       explicit
       wbuffer_convert(streambuf* __bytebuf, _Codecvt* __pcvt = new _Codecvt,
 		      state_type __state = state_type())
-      : _M_buf(__bytebuf), _M_cvt(__pcvt), _M_state(__state)
+      : _M_buf(__bytebuf), _M_cvt(__pcvt, "wbuffer_convert"),
+	_M_state(__state), _M_always_noconv(_M_cvt->always_noconv())
       {
-	if (!_M_cvt)
-	  __throw_logic_error("wbuffer_convert");
-
-	_M_always_noconv = _M_cvt->always_noconv();
-
 	if (_M_buf)
 	  {
 	    this->setp(_M_put_area, _M_put_area + _S_buffer_length);
@@ -593,9 +613,9 @@ _GLIBCXX_END_NAMESPACE_CXX11
 	return __next != __first;
       }
 
-      streambuf*		_M_buf;
-      unique_ptr<_Codecvt>	_M_cvt;
-      state_type		_M_state;
+      streambuf*			_M_buf;
+      __detail::_Scoped_ptr<_Codecvt>	_M_cvt;
+      state_type			_M_state;
 
       static const streamsize	_S_buffer_length = 32;
       static const streamsize	_S_putback_length = 3;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-03 14:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-03 14:11 [gcc r12-2696] libstdc++: Avoid using std::unique_ptr in <locale> Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).