Go to file
Andi Kleen 1cdbe57948 Add the low level infrastructure for pthreads lock elision with TSX
Lock elision using TSX is a technique to optimize lock scaling
It allows to run locks in parallel using hardware support for
a transactional execution mode in 4th generation Intel Core CPUs.
See http://www.intel.com/software/tsx for more Information.

This patch implements a simple adaptive lock elision algorithm based
on RTM. It enables elision for the pthread mutexes and rwlocks.
The algorithm keeps track whether a mutex successfully elides or not,
and stops eliding for some time when it is not.

When the CPU supports RTM the elision path is automatically tried,
otherwise any elision is disabled.

The adaptation algorithm and its tuning is currently preliminary.

The code adds some checks to the lock fast paths. Micro-benchmarks
show little to no difference without RTM.

This patch implements the low level "lll_" code for lock elision.
Followon patches hook this into the pthread implementation

Changes with the RTM mutexes:
-----------------------------
Lock elision in pthreads is generally compatible with existing programs.
There are some obscure exceptions, which are expected to be uncommon.
See the manual for more details.

- A broken program that unlocks a free lock will crash.
  There are ways around this with some tradeoffs (more code in hot paths)
  I'm still undecided on what approach to take here; have to wait for testing reports.
- pthread_mutex_destroy of a lock mutex will not return EBUSY but 0.
- There's also a similar situation with trylock outside the mutex,
  "knowing" that the mutex must be held due to some other condition.
  In this case an assert failure cannot be recovered. This situation is
  usually an existing bug in the program.
- Same applies to the rwlocks. Some of the return values changes
  (for example there is no EDEADLK for an elided lock, unless it aborts.
   However when elided it will also never deadlock of course)
- Timing changes, so broken programs that make assumptions about specific timing
  may expose already existing latent problems.  Note that these broken programs will
  break in other situations too (loaded system, new faster hardware, compiler
  optimizations etc.)
- Programs with non recursive mutexes that take them recursively in a thread and
  which would always deadlock without elision may not always see a deadlock.
  The deadlock will only happen on an early or delayed abort (which typically
  happens at some point)
  This only happens for mutexes not explicitely set to PTHREAD_MUTEX_NORMAL
  or PTHREAD_MUTEX_ADAPTIVE_NP.  PTHREAD_MUTEX_NORMAL mutexes do not elide.

The elision default can be set at configure time.

This patch implements the basic infrastructure for elision.
2013-07-02 08:46:54 -07:00
argp BZ#14812: Add missing translation marker on some argp option argument names in utilities. 2013-03-18 14:59:47 -07:00
assert Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
benchtests Fix loop construction to functions calls 2013-06-20 19:42:05 -05:00
bits Avoid use of "register" as optimization hint. 2013-06-07 22:24:35 +00:00
catgets Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
conf
conform Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
crypt Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
csu Declare __ehdr_start with hidden visibility. 2013-04-25 16:14:49 +01:00
ctype Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
debug Port remaining string benchmarks 2013-06-11 20:51:55 +05:30
dirent Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
dlfcn Add a dlopen/getpagesize static executable test. 2013-06-28 17:43:07 +01:00
elf Add GLRO(dl_hwcap2) for new AT_HWCAP2 auxv_t a_type. 2013-06-28 16:50:48 -05:00
gmon Avoid use of "register" as optimization hint. 2013-06-07 22:24:35 +00:00
gnulib Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
grp Add --enable-hardcoded-path-in-tests configure option 2013-01-11 07:14:18 -08:00
gshadow Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
hesiod Link extra-libs consistently with libc and ld.so. 2013-05-31 16:16:33 +00:00
hurd Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
iconv Add #include <stdint.h> for uint[32|64]_t usage (except installed headers). 2013-05-16 11:32:54 -05:00
iconvdata Update BIG5-HKSCS charmap to HKSCS-2008 2013-06-11 17:02:59 +02:00
include libc-internal.h: add ALIGN helper macros 2013-06-24 20:25:15 -04:00
inet Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
intl Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
io Avoid use of "register" as optimization hint. 2013-06-07 22:24:35 +00:00
libidn Fix-trailing-whitespaces-in-libidn. 2013-06-11 08:54:35 +02:00
libio Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
locale Fix missing libc-internal.h include. 2013-06-25 11:21:20 -07:00
localedata Fix formatting of comment 2013-06-13 09:52:49 +02:00
login Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
mach Remove trailing whitespace from mach/*.sub. 2013-06-10 22:47:08 +00:00
malloc Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
manual Require GCC 4.4 or later to build glibc. 2013-06-26 23:10:48 +00:00
math Allow fesetround failures in math/test-misc.c if ROUNDING_TESTS fails. 2013-06-20 19:11:34 +00:00
misc Add GLRO(dl_hwcap2) for new AT_HWCAP2 auxv_t a_type. 2013-06-28 16:50:48 -05:00
nis Avoid use of "register" as optimization hint. 2013-06-07 22:24:35 +00:00
nptl Add the low level infrastructure for pthreads lock elision with TSX 2013-07-02 08:46:54 -07:00
nptl_db Link extra-libs consistently with libc and ld.so. 2013-05-31 16:16:33 +00:00
nscd Fix typo in comment 2013-06-24 18:07:37 +05:30
nss Fix leading whitespaces. 2013-06-06 20:36:07 +02:00
po Update Interlingua translation from translation project 2013-06-12 10:12:19 +02:00
ports Implement fma in soft-fp. 2013-07-02 14:55:32 +00:00
posix Fix raciness in waitid test. 2013-06-13 15:09:29 -07:00
pwd Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
resolv Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
resource Fix stub setrlimit implementation. 2013-05-06 14:58:00 -07:00
rt Fix symbol definitions for __clock_* functions 2013-06-11 11:11:11 +05:30
scripts Sort sysd-rules-patterns by descending pattern length. 2013-06-17 09:55:49 -07:00
setjmp Remove trailing whitespace. 2013-06-05 20:44:03 +00:00
shadow Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
signal Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
socket Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
soft-fp Implement fma in soft-fp. 2013-07-02 14:55:32 +00:00
stdio-common Avoid use of "register" as optimization hint. 2013-06-07 22:24:35 +00:00
stdlib Make tst-strtod-round use ROUNDING_TESTS. 2013-06-14 17:58:41 +00:00
streams Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
string Add a test for BZ #15674 2013-06-26 15:23:08 -07:00
sunrpc Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
sysdeps Enable static 32-bit SSE4.2 strcasecmp/strncasecmp 2013-07-02 08:06:04 -07:00
sysvipc Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
termios Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
time Use (void) in no-arguments function definitions. 2013-06-08 00:22:23 +00:00
timezone Update zic from tzcode 2013b. 2013-03-13 01:54:00 +00:00
wcsmbs Avoid use of "register" as optimization hint. 2013-06-07 22:24:35 +00:00
wctype Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
.gitattributes exempt timezone files from the no-bad-whitespace policy 2009-06-15 18:15:54 +02:00
.gitignore drop ports ignore 2012-07-03 15:54:35 -04:00
abi-tags * abi-tags (*-.*-syllable.*): New match, with ABI value 5. 2006-01-04 17:14:58 +00:00
aclocal.m4 i386: Fail at configure time for i386 builds. 2013-04-06 12:00:35 -04:00
BUGS [BZ #5222] 2007-10-28 08:24:07 +00:00
CANCEL-FCT-WAIVE Update. 2004-03-08 07:58:18 +00:00
CANCEL-FILE-WAIVE Update. 2004-03-08 07:58:18 +00:00
ChangeLog Enable static 32-bit SSE4.2 strcasecmp/strncasecmp 2013-07-02 08:06:04 -07:00
ChangeLog.1
ChangeLog.2
ChangeLog.3
ChangeLog.4
ChangeLog.5 * sysdeps/posix/getaddrinfo.c: Implement configuration file 2006-05-04 06:38:07 +00:00
ChangeLog.6
ChangeLog.7
ChangeLog.8
ChangeLog.9
ChangeLog.10
ChangeLog.11 2.5-18.1 2007-07-12 18:26:36 +00:00
ChangeLog.12 2.5-18.1 2007-07-12 18:26:36 +00:00
ChangeLog.13
ChangeLog.14 Update. 2004-04-20 04:28:00 +00:00
ChangeLog.15 Split out ChangeLog.15 at 2.3 branch point 2005-02-16 07:34:17 +00:00
ChangeLog.16 Fix typo in name 2012-06-21 16:45:27 +02:00
ChangeLog.17 Revert "Sun agreed to a change of the license for the RPC code to a BSD-like license." 2010-06-27 19:34:03 -07:00
config.h.in Fix loop construction to functions calls 2013-06-20 19:42:05 -05:00
config.make.in Move system-specific settings out of toplevel configure.in and config.make.in. 2013-03-20 22:37:06 +00:00
configure Require GCC 4.4 or later to build glibc. 2013-06-26 23:10:48 +00:00
configure.in Require GCC 4.4 or later to build glibc. 2013-06-26 23:10:48 +00:00
CONFORMANCE Move __STDC_* predefined macros from features.h to stdc-predef.h. 2012-02-22 12:53:04 +00:00
COPYING
COPYING.LIB
cppflags-iterator.mk 2004-03-11 Jeroen Dekkers <jeroen@dekkers.cx> 2004-03-14 19:13:17 +00:00
extra-lib.mk Don't build .os objects of static-only-routines for extra libs 2013-03-13 12:12:45 +01:00
extra-modules.mk Update. 2004-03-08 21:31:23 +00:00
INSTALL Require GCC 4.4 or later to build glibc. 2013-06-26 23:10:48 +00:00
libc-abis A few more archs have IFUNC support. 2010-03-17 02:43:12 -07:00
LICENSES Expand LICENSES file. 2012-12-05 21:56:15 +00:00
Makeconfig Don't use run-via-rtld-prefix for anything other than tests 2013-04-11 09:37:50 +05:30
Makefile Link extra-libs consistently with libc and ld.so. 2013-05-31 16:16:33 +00:00
Makefile.in Add target bench-clean 2013-04-16 14:07:21 +05:30
Makerules Rewrite sysd-rules generation using an awk script. 2013-06-17 09:55:21 -07:00
NAMESPACE
NEWS Add more NEWS items for 2.18. 2013-06-28 22:53:57 +00:00
o-iterator.mk
PROJECTS Update. 2004-10-12 06:19:23 +00:00
README i386: Fail at configure time for i386 builds. 2013-04-06 12:00:35 -04:00
Rules Move bench target to benchtests 2013-04-12 15:01:44 +05:30
shlib-versions Convert WORDSIZE[32|64]/ld entries to abi-variants 2012-05-30 08:33:26 -07:00
test-skeleton.c Update copyright notices with scripts/update-copyrights. 2013-01-02 19:05:09 +00:00
version.h Open development for 2.18. 2012-12-25 01:23:43 -08:00
Versions.def New API to set default thread attributes 2013-06-15 12:24:15 +05:30
WUR-REPORT * posix/unistd.h (setuid, setreuid, seteuid, setresuid): 2012-08-01 18:12:58 +02:00

This directory contains the sources of the GNU C Library.
See the file "version.h" for what release version you have.

The GNU C Library is the standard system C library for all GNU systems,
and is an important part of what makes up a GNU system.  It provides the
system API for all programs written in C and C-compatible languages such
as C++ and Objective C; the runtime facilities of other programming
languages use the C library to access the underlying operating system.

In GNU/Linux systems, the C library works with the Linux kernel to
implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.

The GNU C Library implements much of the POSIX.1 functionality in the
GNU/Hurd system, using configurations i[4567]86-*-gnu.  The current
GNU/Hurd support requires out-of-tree patches that will eventually be
incorporated into an official GNU C Library release.

When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 2.6.16 or later.

Also note that the shared version of the libgcc_s library must be
installed for the pthread library to work correctly.

The GNU C Library supports these configurations for using Linux kernels:

	i[4567]86-*-linux-gnu
	x86_64-*-linux-gnu	Can build either x86_64 or x32
	powerpc-*-linux-gnu	Hardware floating point required
	powerpc64-*-linux-gnu
	s390-*-linux-gnu
	s390x-*-linux-gnu
	sh[34]-*-linux-gnu
	sparc*-*-linux-gnu
	sparc64*-*-linux-gnu

The code for other CPU configurations supported by volunteers outside of
the core glibc maintenance effort is contained in the `ports' add-on,
located in the `ports' subdirectory of the source tree.

	aarch64*-*-linux-gnu
	alpha*-*-linux-gnu
	am33*-*-linux-gnu	Not currently functional
	arm-*-linux-gnueabi
	hppa-*-linux-gnu	Not currently functional without patches.
	ia64-*-linux-gnu
	m68k-*-linux-gnu
	mips-*-linux-gnu
	mips64-*-linux-gnu
	powerpc-*-linux-gnu	Software floating point (--without-fp)
	tilegx-*-linux-gnu
	tilepro-*-linux-gnu

If you are interested in doing a port, please contact the glibc
maintainers; see http://www.gnu.org/software/libc/ for more
information.

See the file INSTALL to find out how to configure, build, and install
the GNU C Library.  You might also consider reading the WWW pages for
the C library at http://www.gnu.org/software/libc/.

The GNU C Library is (almost) completely documented by the Texinfo manual
found in the `manual/' subdirectory.  The manual is still being updated
and contains some known errors and omissions; we regret that we do not
have the resources to work on the manual as much as we would like.  For
corrections to the manual, please file a bug in the `manual' component,
following the bug-reporting instructions below.  Please be sure to check
the manual in the current development sources to see if your problem has
already been corrected.

Please see http://www.gnu.org/software/libc/bugs.html for bug reporting
information.  We are now using the Bugzilla system to track all bug reports.
This web page gives detailed information on how to report bugs properly.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.  License copyright years may be
listed using range notation, e.g., 2000-2013, indicating that every year in
the range, inclusive, is a copyrightable year that would otherwise be listed
individually.