mirror of
https://github.com/encounter/bdwgc.git
synced 2026-03-30 10:57:55 -07:00
Speedup calloc size overflow check by preventing division if small values
* malloc.c (GC_SQRT_SIZE_MAX): New macro. * malloc.c (calloc): Add fast initial size overflow check to avoid integer division for reasonably small values passed.
This commit is contained in:
committed by
Ivan Maidanski
parent
6a93f8e5bc
commit
83231d0ab5
@@ -381,9 +381,12 @@ void * malloc(size_t lb)
|
||||
# define GC_SIZE_MAX (~(size_t)0)
|
||||
#endif
|
||||
|
||||
#define GC_SQRT_SIZE_MAX ((1U << (WORDSZ / 2)) - 1)
|
||||
|
||||
void * calloc(size_t n, size_t lb)
|
||||
{
|
||||
if (lb && n > GC_SIZE_MAX / lb)
|
||||
if ((lb | n) > GC_SQRT_SIZE_MAX /* fast initial test */
|
||||
&& lb && n > GC_SIZE_MAX / lb)
|
||||
return NULL;
|
||||
# if defined(GC_LINUX_THREADS) /* && !defined(USE_PROC_FOR_LIBRARIES) */
|
||||
/* libpthread allocated some memory that is only pointed to by */
|
||||
|
||||
Reference in New Issue
Block a user