gcc/libstdc++-v3/libsupc++
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
..
array_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
atexit_arm.cc Update copyright years. 2020-01-01 12:51:42 +01:00
atexit_thread.cc Update copyright years. 2020-01-01 12:51:42 +01:00
atomic_lockfree_defines.h Update copyright years. 2020-01-01 12:51:42 +01:00
bad_alloc.cc Update copyright years. 2020-01-01 12:51:42 +01:00
bad_array_length.cc Update copyright years. 2020-01-01 12:51:42 +01:00
bad_array_new.cc Update copyright years. 2020-01-01 12:51:42 +01:00
bad_cast.cc Update copyright years. 2020-01-01 12:51:42 +01:00
bad_typeid.cc Update copyright years. 2020-01-01 12:51:42 +01:00
class_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
compare libstdc++: Update __cpp_lib_three_way_comparison macro 2020-04-20 17:50:10 +01:00
cxxabi_forced.h Update copyright years. 2020-01-01 12:51:42 +01:00
cxxabi_init_exception.h Update copyright years. 2020-01-01 12:51:42 +01:00
cxxabi.h libstdc++: Fix the return type of __cxa_finalize 2020-05-04 23:07:19 +01:00
del_op.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opa.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opant.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opnt.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_ops.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opsa.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opv.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opva.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opvant.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opvnt.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opvs.cc Update copyright years. 2020-01-01 12:51:42 +01:00
del_opvsa.cc Update copyright years. 2020-01-01 12:51:42 +01:00
dyncast.cc libstdc++: Avoid negating a size_t [pr 94747] 2020-05-04 10:08:13 -07:00
eh_alloc.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_arm.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_atomics.h Update copyright years. 2020-01-01 12:51:42 +01:00
eh_aux_runtime.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_call.cc libstdc++-v3/libsupc++/eh_call.cc: Avoid "set but not used" warning 2020-09-11 13:00:29 +00:00
eh_catch.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_exception.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_globals.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_personality.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_ptr.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_term_handler.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_term_handler.h Update copyright years. 2020-01-01 12:51:42 +01:00
eh_terminate.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_throw.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_tm.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_type.cc Update copyright years. 2020-01-01 12:51:42 +01:00
eh_unex_handler.cc Update copyright years. 2020-01-01 12:51:42 +01:00
enum_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
exception Update copyright years. 2020-01-01 12:51:42 +01:00
exception_defines.h Update copyright years. 2020-01-01 12:51:42 +01:00
exception_ptr.h Update copyright years. 2020-01-01 12:51:42 +01:00
exception.h Update copyright years. 2020-01-01 12:51:42 +01:00
function_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
fundamental_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
guard_error.cc Update copyright years. 2020-01-01 12:51:42 +01:00
guard.cc libstdc++: Use __libc_single_threaded to optimise atomics [PR 96817] 2020-09-26 20:32:36 +01:00
hash_bytes.cc Update copyright years. 2020-01-01 12:51:42 +01:00
hash_bytes.h Update copyright years. 2020-01-01 12:51:42 +01:00
initializer_list Update copyright years. 2020-01-01 12:51:42 +01:00
Makefile.am libstdc++: Remove redundant -std=gnu++1z flags from makefile 2020-09-25 12:50:17 +01:00
Makefile.in libstdc++: Remove redundant -std=gnu++1z flags from makefile 2020-09-25 12:50:17 +01:00
nested_exception.cc Update copyright years. 2020-01-01 12:51:42 +01:00
nested_exception.h Update copyright years. 2020-01-01 12:51:42 +01:00
new libstdc++: Break header cycle between <new> and <exception> 2020-09-02 13:56:32 +01:00
new_handler.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_op.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_opa.cc libstdc++ P1956R1 On the names of low-level bit manipulation functions 2020-02-17 17:09:18 +00:00
new_opant.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_opnt.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_opv.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_opva.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_opvant.cc Update copyright years. 2020-01-01 12:51:42 +01:00
new_opvnt.cc libstdc++: Break header cycle between <new> and <exception> 2020-09-02 13:56:32 +01:00
pbase_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
pmem_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
pointer_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
pure.cc Update copyright years. 2020-01-01 12:51:42 +01:00
si_class_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
tinfo2.cc Update copyright years. 2020-01-01 12:51:42 +01:00
tinfo.cc Update copyright years. 2020-01-01 12:51:42 +01:00
tinfo.h Update copyright years. 2020-01-01 12:51:42 +01:00
typeinfo libstdc++: Remove std::type_info::operator!= for C++20 2020-02-20 11:30:19 +00:00
unwind-cxx.h Update copyright years. 2020-01-01 12:51:42 +01:00
vec.cc Update copyright years. 2020-01-01 12:51:42 +01:00
vmi_class_type_info.cc Update copyright years. 2020-01-01 12:51:42 +01:00
vterminate.cc Update copyright years. 2020-01-01 12:51:42 +01:00
vtv_stubs.cc Update copyright years. 2020-01-01 12:51:42 +01:00