mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
stdlib: Add single-threaded fast path to rand()
Improve performance of rand() and __random() by adding a single-threaded fast path. Bench-random-lock shows about 5x speedup on Neoverse V1. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
parent
4734d0f8ad
commit
be0cfd848d
@ -51,6 +51,7 @@
|
||||
SUCH DAMAGE.*/
|
||||
|
||||
#include <libc-lock.h>
|
||||
#include <sys/single_threaded.h>
|
||||
#include <limits.h>
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
@ -288,6 +289,12 @@ __random (void)
|
||||
{
|
||||
int32_t retval;
|
||||
|
||||
if (SINGLE_THREAD_P)
|
||||
{
|
||||
(void) __random_r (&unsafe_state, &retval);
|
||||
return retval;
|
||||
}
|
||||
|
||||
__libc_lock_lock (lock);
|
||||
|
||||
(void) __random_r (&unsafe_state, &retval);
|
||||
|
Loading…
x
Reference in New Issue
Block a user