gcc/libstdc++-v3/testsuite/18_support
Jonathan Wakely e6923541fa libstdc++: Use __libc_single_threaded to optimise atomics [PR 96817]
Glibc 2.32 adds a global variable that says whether the process is
single-threaded. We can use this to decide whether to elide atomic
operations, as a more precise and reliable indicator than
__gthread_active_p.

This means that guard variables for statics and reference counting in
shared_ptr can use less expensive, non-atomic ops even in processes that
are linked to libpthread, as long as no threads have been created yet.
It also means that we switch to using atomics if libpthread gets loaded
later via dlopen (this still isn't supported in general, for other
reasons).

We can't use __libc_single_threaded to replace __gthread_active_p
everywhere. If we replaced the uses of __gthread_active_p in std::mutex
then we would elide the pthread_mutex_lock in the code below, but not
the pthread_mutex_unlock:

  std::mutex m;
  m.lock();            // pthread_mutex_lock
  std::thread t([]{}); // __libc_single_threaded = false
  t.join();
  m.unlock();          // pthread_mutex_unlock

We need the lock and unlock to use the same "is threading enabled"
predicate, and similarly for init/destroy pairs for mutexes and
condition variables, so that we don't try to release resources that were
never acquired.

There are other places that could use __libc_single_threaded, such as
_Sp_locker in src/c++11/shared_ptr.cc and locale init functions, but
they can be changed later.

libstdc++-v3/ChangeLog:

	PR libstdc++/96817
	* include/ext/atomicity.h (__gnu_cxx::__is_single_threaded()):
	New function wrapping __libc_single_threaded if available.
	(__exchange_and_add_dispatch, __atomic_add_dispatch): Use it.
	* libsupc++/guard.cc (__cxa_guard_acquire, __cxa_guard_abort)
	(__cxa_guard_release): Likewise.
	* testsuite/18_support/96817.cc: New test.
2020-09-26 20:32:36 +01:00
..
aligned_alloc Update copyright years. 2020-01-01 12:51:42 +01:00
bad_alloc Update copyright years. 2020-01-01 12:51:42 +01:00
bad_cast Update copyright years. 2020-01-01 12:51:42 +01:00
bad_exception Update copyright years. 2020-01-01 12:51:42 +01:00
bad_typeid Update copyright years. 2020-01-01 12:51:42 +01:00
byte Update copyright years. 2020-01-01 12:51:42 +01:00
comparisons libstdc++: Replace some VERIFY tests with static_assert 2020-08-07 17:45:42 +01:00
exception Update copyright years. 2020-01-01 12:51:42 +01:00
exception_ptr Update copyright years. 2020-01-01 12:51:42 +01:00
headers libstdc++: Require c++98_only effective target for some tests 2020-07-02 21:27:12 +01:00
initializer_list Update copyright years. 2020-01-01 12:51:42 +01:00
launder Update copyright years. 2020-01-01 12:51:42 +01:00
max_align_t/requirements libstdc++: Fix testsuite failures and warnings due to is_pod deprecation 2020-01-09 21:31:50 +00:00
nested_exception Update copyright years. 2020-01-01 12:51:42 +01:00
numeric_limits Update copyright years. 2020-01-01 12:51:42 +01:00
quick_exit Update copyright years. 2020-01-01 12:51:42 +01:00
type_info Update copyright years. 2020-01-01 12:51:42 +01:00
uncaught_exception Update copyright years. 2020-01-01 12:51:42 +01:00
uncaught_exceptions libstdc++: Ensure c++NN effective target present in all C++17 tests 2020-07-31 19:58:02 +01:00
50594.cc Update copyright years. 2020-01-01 12:51:42 +01:00
51333.cc Update copyright years. 2020-01-01 12:51:42 +01:00
96817.cc libstdc++: Use __libc_single_threaded to optimise atomics [PR 96817] 2020-09-26 20:32:36 +01:00
cxa_vec.cc Update copyright years. 2020-01-01 12:51:42 +01:00
destroying_delete.cc libstdc++: Break header cycle between <new> and <exception> 2020-09-02 13:56:32 +01:00
free_eh_pool.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_aligned.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_delete_placement.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_handler.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_nothrow.cc Update copyright years. 2020-01-01 12:51:42 +01:00
pthread_guard.cc Update copyright years. 2020-01-01 12:51:42 +01:00
set_terminate.cc libstdc++: Ensure c++NN effective-target present in more tests 2020-07-31 19:58:03 +01:00
set_unexpected.cc Update copyright years. 2020-01-01 12:51:42 +01:00
terminate_handler.cc Update copyright years. 2020-01-01 12:51:42 +01:00
unexpected_handler.cc Update copyright years. 2020-01-01 12:51:42 +01:00